/* =========================================
   ESTILOS GENERALES DE LA PÁGINA
   ========================================= */

/* =========================================
   VARIABLES GLOBALES
   ========================================= */
:root {
  /* Paleta de colores */
  --paleta-de-colores-neutral-bg: #FFFFFF;
  --paleta-de-colores-azul-marino: #0A192F;
  --paleta-de-colores-accent: #2DD4BF;
  --paleta-de-colores-azul-normal: #204F95;
  --paleta-de-colores-azul-electrico: #2563EB;
  --paleta-de-colores-azul-cobalto: #1D4ED8;
  --color-texto: #D1D5DB;

  /* Tipografía en REM (Base 16px) */
  --text-sizes-titulo-principal: 4.10625rem;
  /* 65.7px */
  --text-sizes-h2: 3.43125rem;
  /* 54.9px */
  --text-sizes-heading-3: 2.7rem;
  /* 43.2px */
  --text-sizes-text-large: 1.25rem;
  /* 20px */
  --text-sizes-text-medium: 1.125rem;
  /* 18px */
  --text-sizes-text-regular: 1rem;
  /* 16px */
  --text-sizes-text-small: 0.875rem;
  /* 14px */
  --text-sizes-text-tiny: 0.75rem;
  /* 12px */

  /* Espaciados */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;

  /* Sombras de botón */
  --sombra-boton: 0px 5px 5px rgba(10, 25, 47, 0.25);

  /* Degradados */
  --degradado-azul-turquesa: linear-gradient(to right, #2DD4BF 30%, rgba(1, 120, 255, 0.5) 100%);
  --degradado-blanco-azul-normal: linear-gradient(to bottom, #FFFFFF 70%, #193E74 100%);
  --degradado-blanco-azul-turquesa: linear-gradient(to right, #FFFFFF 0%, #2DD4BF 100%);
  --degradado-blanco-turquesa-abajo: linear-gradient(to bottom, #FFFFFF 20%, #2DD4BF 100%);
  --degradado-blanco-y-azul: linear-gradient(to right, #FFFFFF 50%, #204F95 100%);

  /* FAQ */
  --degradado-fondo-faq: radial-gradient(circle, rgba(32, 79, 149, 1) 0%, rgba(10, 25, 47, 1) 86%);

  /* Tipografía responsive para móvil (se activa con media query) */
}

/* Tablets y móviles */
@media (max-width: 764px) {
  :root {
    --text-sizes-titulo-principal: 3rem;
    /* 40px */
    --text-sizes-h2: 2rem;
    /* 32px */
    --text-sizes-heading-3: 1.5rem;
    /* 24px */
    --text-sizes-text-large: 1.125rem;
    /* 18px */
    --text-sizes-text-medium: 1rem;
    /* 16px */
    --text-sizes-text-regular: 0.7rem;
    /* 15px */
    --text-sizes-text-small: 0.8125rem;
    /* 13px */
    --text-sizes-text-tiny: 0.6875rem;
    /* 11px */
  }
}

/* Móviles pequeños */
@media (max-width: 320px) {
  :root {
    --text-sizes-titulo-principal: 2rem;
    /* 28px */
    --text-sizes-h2: 1.5rem;
    /* 24px */
    --text-sizes-heading-3: 1.25rem;
    /* 20px */
    --text-sizes-text-large: 1rem;
    /* 16px */
    --text-sizes-text-medium: 0.875rem;
    /* 14px */
    --text-sizes-text-regular: 0.8125rem;
    /* 13px */
    --text-sizes-text-small: 0.75rem;
    /* 12px */
    --text-sizes-text-tiny: 0.625rem;
    /* 10px */
  }
}


/* =========================================
   RESET Y BASE
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sizes-text-regular);
  line-height: 1.6;
  color: var(--color-texto);
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Seleccion del texto */
::selection {
  background-color: rgba(45, 212, 191, 0.5)
}

/* =========================================
   CONTENEDOR DE CONTENIDO
   ========================================= */
.contenedor {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* =========================================
   FONDO ANIMADO - GRID AZUL
   ========================================= */

/* Degradado azul de fondo global */
body {
  background: linear-gradient(160deg, #0A192F 0%, #193E74 100%);
  min-height: 100vh;
  background-attachment: fixed;
  position: relative;
}

/* Grid de cuadrados celestes animado */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='29' height='29' fill='none' stroke='%232DD4BF' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 30px 30px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: -1;
  animation: grid-scroll-down 5s linear infinite;
}

/* Animación sutil del grid hacia abajo */
@keyframes grid-scroll-down {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 30px;
  }
}

/* =========================================
   TIPOGRAFÍA
   ========================================= */
h1 {
  font-family: 'Anton', sans-serif;
  font-size: var(--text-sizes-titulo-principal);
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-family: 'Anton', sans-serif;
  font-size: var(--text-sizes-h2);
  text-transform: uppercase;
  max-width: 90%;
  letter-spacing: 1.2px;
  line-height: 90%;
  color: var(--paleta-de-colores-neutral-bg);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

h3 {
  font-family: 'Anton', sans-serif;
  font-size: var(--text-sizes-heading-3);
  text-transform: uppercase;
}

/* Texto destacado con gradiente */
.destacado {
  background: #2DD4BF;
  background: linear-gradient(90deg, rgba(45, 212, 191, 1) 28%, rgba(255, 255, 255, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.destacado--turquesa {
  background: var(--degradado-azul-turquesa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================
   BOTONES
   ========================================= */
.boton {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-sizes-text-regular);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: 20px;
  box-shadow: var(--sombra-boton);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  width: fit-content;
}

.boton:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 15px rgba(10, 25, 47, 1);
  scale: 1.03;
}

/* Botón blanco */
.boton--blanco {
  background: var(--paleta-de-colores-neutral-bg);
  color: var(--paleta-de-colores-azul-marino);
}

.boton--blanco:hover {
  background: #FFFFFF;
  color: var(--paleta-de-colores-azul-marino);
}

/* Botón turquesa */
.boton--turquesa {
  background: var(--paleta-de-colores-accent);
  color: var(--paleta-de-colores-azul-marino);
}

/* Botón azul marino (inverso del blanco) */
.boton--azul-marino {
  background: var(--paleta-de-colores-azul-marino);
  color: var(--paleta-de-colores-neutral-bg);
}

.boton--azul-marino:hover {
  background: #0d2b4f;
}

/* Botón blanco con borde azul marino */
.boton--blanco-borde {
  background: #FFFFFF;
  background: linear-gradient(130deg, rgba(255, 255, 255, 1) 22%, rgba(204, 245, 240, 0.95) 41%, rgba(45, 212, 191, 0.89) 100%);
  color: var(--paleta-de-colores-azul-marino);
  box-shadow: 0px 5px 15px rgba(10, 25, 47, 0.2);
}

.boton--blanco-borde:hover {
  box-shadow: 0px 8px 20px rgba(10, 25, 47, 0.3);
}

/* =========================================
   CLASES GENERALES
   ========================================= */

/* Clase para secciones con padding estándar y ancho máximo */
.contenido-seccion {
  padding: 65px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* =========================================
   FAQ (ACORDEÓN COMPARTIDO)
   ========================================= */

/* Contenedor del acordeón */
.faq-contenedor {
  text-align: center;
}

/* Título de la sección FAQ */
.faq-titulo {
  font-family: 'Anton', sans-serif;
  margin: 0 auto var(--spacing-md);
  font-size: var(--text-sizes-h2);
  color: var(--paleta-de-colores-neutral-bg);
  max-width: 75%;
}

/* Introducción del FAQ */
.faq-intro {
  font-size: var(--text-sizes-text-small);
  line-height: 1.6;
  color: var(--color-texto);
  margin: 0 auto var(--spacing-xl);
  max-width: 60%;
}

/* Lista de preguntas */
.faq-lista {
  display: flex;
  max-width: 65%;
  margin: 0 auto;
  flex-direction: column;
  gap: var(--spacing-md);
  text-align: left;
}

/* Artículo individual del acordeón */
.faq-item {
  background: var(--degradado-fondo-faq);
  border-radius: 16px;
  padding: var(--spacing-lg);
  cursor: pointer;
}

/* Fila superior: pregunta + icono */
.faq-fila-superior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-sm);
}

/* Texto de la pregunta */
.faq-pregunta {
  font-family: 'Anton', sans-serif;
  font-size: var(--text-sizes-text-large);
  color: var(--paleta-de-colores-neutral-bg);
  line-height: 1.2;
  letter-spacing: 1px;
  margin: 0;
}

/* Icono de expansión */
.faq-icono {
  font-size: var(--text-sizes-text-large);
  color: var(--paleta-de-colores-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Icono rotado cuando el acordeón está abierto */
.faq-item.active .faq-icono {
  transform: rotate(45deg);
}

/* Línea divisoria */
.faq-divisor {
  width: 90%;
  height: 1px;
  background: rgba(209, 213, 219, 0.2);
  margin: var(--spacing-sm) auto;
}

/* Contenido de la respuesta (colapsado por defecto) */
.faq-respuesta {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}

/* Respuesta expandida cuando el acordeón está abierto */
.faq-item.active .faq-respuesta {
  max-height: 500px;
  opacity: 1;
}

/* Texto de la respuesta */
.faq-respuesta p {
  font-size: var(--text-sizes-text-regular);
  line-height: 1.6;
  color: var(--color-texto);
  padding-top: var(--spacing-xs);
}

/* =========================================
   FOOTER (COMPARTIDO)
   ========================================= */

/* Sección del footer */
.footer {
  background: linear-gradient(180deg, var(--paleta-de-colores-azul-marino) 0%, #040A13 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 96px 40px;
  color: var(--color-texto);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Contenedor principal del footer */
.footer-contenedor {
  max-width: 1400px;
  margin: 0 auto;
}

/* Grid superior: logo + columnas */
.footer-superior {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-2xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid rgba(209, 213, 219, 0.15);
}

/* Columna individual del footer */
.footer-columna {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

/* Logo del footer */
.footer-logo {
  width: 70px;
  height: auto;
}

/* Texto descriptivo del footer */
.footer-descripcion {
  font-size: var(--text-sizes-text-small);
  line-height: 1.6;
  max-width: 300px;
}

/* Título de columna */
.footer-columna-titulo {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sizes-text-large);
  font-weight: 700;
  color: var(--paleta-de-colores-neutral-bg);
  text-transform: uppercase;
  margin-bottom: var(--spacing-xs);
}

/* Lista de enlaces */
.footer-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

/* Enlaces del footer */
.footer-lista a {
  color: var(--color-texto);
  text-decoration: none;
  font-size: var(--text-sizes-text-small);
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* Hover de enlaces */
.footer-lista a:hover {
  color: var(--paleta-de-colores-accent);
}

/* Fila inferior: marca + copyright */
.footer-inferior {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding-top: var(--spacing-lg);
  text-align: center;
}

/* Marca de agua gigante */
.footer-marca {
  font-family: 'Anton', sans-serif;
  font-size: 13rem;
  line-height: 1;
  color: var(--paleta-de-colores-neutral-bg);
  letter-spacing: 4px;
}

/* Copyright */
.footer-copyright {
  font-size: var(--text-sizes-text-tiny);
  color: var(--color-texto);
  opacity: 0.7;
}

/* =========================================
   BOTONES FLOTANTES (COMPARTIDOS)
   ========================================= */

/* Contenedor de botones flotantes */
.botones-flotantes {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

/* Estilo base de cada botón flotante */
.boton-flotante {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--paleta-de-colores-neutral-bg);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
}

.boton-flotante:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Botón de WhatsApp — fondo verde */
.boton-whatsapp {
  background: #25D366;
}

.boton-whatsapp:hover {
  background: #20bd5a;
}

/* Botón de scroll-to-top — fondo azul marino */
.boton-scroll-top {
  background: var(--paleta-de-colores-azul-marino);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Visible cuando se ha hecho scroll */
.boton-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* =========================================
   NAVEGACIÓN
   ========================================= */

/* Barra de navegación principal */
.navegacion {
  background: rgba(10, 25, 47, 0.5);
  /* Glassmorphism fondo */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--paleta-de-colores-accent);
  border-radius: 20px;
  padding: 0 40px;
  position: fixed;
  /* Menú flotante */
  top: 20px;
  left: 20px;
  right: 20px;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1000;
}

/* Contenedor interno del menú */
.navegacion-contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-xs) 0;
  position: relative;
}

/* Logo de la marca */
.navegacion-logo {
  flex-shrink: 0;
}

.navegacion-logo img {
  width: 60px;
  height: 60px;
}

/* Lista de enlaces de navegación */
.navegacion-enlaces {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

/* Enlaces individuales del menú */
.navegacion-enlaces a {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sizes-text-regular);
  color: var(--paleta-de-colores-neutral-bg);
  transition: all 0.3s ease;
  position: relative;
}

/* subrayado para el hover de los enlaces del menu */
.navegacion-enlaces>li>a:not(.boton)::before {
  position: absolute;
  content: "";
  width: 0%;
  top: 20px;
  left: 0;
  height: 2px;
  background-color: var(--paleta-de-colores-accent);
  border-radius: 20px;
  transition: all 0.3s ease;
}


.navegacion-enlaces a:hover {
  color: var(--paleta-de-colores-accent);
}

.navegacion-enlaces>li>a:hover:not(.boton)::before {
  width: 100%;
}

/* Botón CTA dentro del menú */
.navegacion-enlaces-boton {
  display: flex;
  align-items: center;
}

.navegacion-enlaces-boton .boton {
  padding: 12px 24px;
  font-size: var(--text-sizes-text-small);
  color: var(--paleta-de-colores-azul-marino);
}

.navegacion-enlaces-boton .boton:hover {
  color: var(--paleta-de-colores-azul-marino);
}

/* Dropdown de navegación */
.navegacion-dropdown {
  position: relative;
}

/* Botón que abre el submenú Servicios */
.navegacion-dropdown-toggle {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sizes-text-regular);
  color: var(--paleta-de-colores-neutral-bg);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navegacion-dropdown-toggle:hover {
  color: var(--paleta-de-colores-accent);
}

.navegacion-dropdown-toggle i {
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.navegacion-dropdown:hover .navegacion-dropdown-toggle i {
  transform: rotate(180deg);
}

/* Submenú desplegable de Servicios */
.navegacion-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paleta-de-colores-azul-marino);
  min-width: 200px;
  padding: var(--spacing-sm) 0;
  border-radius: 8px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

/* Submenú visible al hacer hover (solo desktop) */
@media (min-width: 765px) {
  .navegacion-dropdown:hover .navegacion-dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
}

/* Enlaces dentro del submenú */
.navegacion-dropdown-menu li a {
  display: block;
  padding: 8px 24px;
  color: var(--paleta-de-colores-neutral-bg);
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  border-radius: 20px;
}

.navegacion-dropdown-menu li a:hover {
  background: rgba(45, 212, 191, 0.1);
  color: var(--paleta-de-colores-accent);
  border-radius: 20px;
}

/* Móviles y tablets — padding reducido en secciones */
@media (max-width: 764px) {
  .contenido-seccion {
    padding: 96px 20px;
  }

  /* menu */
  .navegacion {
    padding: 0 20px;
  }

  .navegacion-contenedor {
    position: relative;
  }

  .navegacion-enlaces {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    right: 0;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--paleta-de-colores-accent);
    flex-direction: column;
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
    border-radius: 20px;
    z-index: 1000;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);

    /* Animación slide-down */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
  }

  .navegacion-abierto .navegacion-enlaces {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0s;
  }

  .navegacion-enlaces li {
    width: 100%;
  }

  .navegacion-enlaces a,
  .navegacion-dropdown-toggle {
    font-size: var(--text-sizes-text-large);
    padding: var(--spacing-xs) 0;
  }

  .navegacion-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .navegacion-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    padding: var(--spacing-xs) 0 var(--spacing-xs) var(--spacing-md);
    display: none;
    background: transparent;
    transition: none;
  }

  .navegacion-dropdown-abierto .navegacion-dropdown-menu {
    display: block;
  }

  .navegacion-dropdown-menu li a {
    padding-left: var(--spacing-lg);
  }

  .navegacion-enlaces-boton {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(209, 213, 219, 0.15);
    width: 100%;
    display: block;
  }

  .navegacion-enlaces-boton .boton {
    width: 100%;
    text-align: center;
    color: var(--paleta-de-colores-azul-marino);
  }

  .navegacion-enlaces>li>a:hover:not(.boton)::before {
    width: 0%;
  }

  .navegacion-enlaces>li>a:hover {
    color: inherit;
  }

  .navegacion-hamburguesa {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }

  /* Líneas del icono hamburguesa */
  .hamburguesa-linea {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--paleta-de-colores-neutral-bg);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Estado abierto: línea superior más corta, línea central se funde */
  .navegacion-abierto .hamburguesa-linea:nth-child(1) {
    width: 20px;
    /* ~70% de 28px → 30% más corta */
  }

  .navegacion-abierto .hamburguesa-linea:nth-child(2) {
    opacity: 0;
    display: none;

  }

  .navegacion-abierto .hamburguesa-linea:nth-child(3) {
    width: 28px;
  }

  /* FAQ responsive */
  .faq-titulo {
    max-width: 100%;
  }

  .faq-intro {
    max-width: 75%;
  }

  .faq-lista {
    max-width: 95%;
  }

  /* Botones flotantes */
  .botones-flotantes {
    bottom: 16px;
    right: 16px;
  }

  .boton-flotante {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  /* Footer responsive */
  .footer-marca {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .footer {
    padding: 64px 20px;
  }

  .footer-superior {
    grid-template-columns: 1fr;
  }
}

/* ---- 320px: Ajustes para móviles muy pequeños ---- */
@media (max-width: 320px) {
  :root {
    --text-sizes-titulo-principal: 2rem;
    /* 28px */
    --text-sizes-h2: 1.5rem;
    /* 24px */
    --text-sizes-heading-3: 1.25rem;
    /* 20px */
    --text-sizes-text-large: 1rem;
    /* 16px */
    --text-sizes-text-medium: 0.875rem;
    /* 14px */
    --text-sizes-text-regular: 0.8125rem;
    /* 13px */
    --text-sizes-text-small: 0.75rem;
    /* 12px */
    --text-sizes-text-tiny: 0.625rem;
    /* 10px */
  }

  .navegacion {
    padding: 0 12px;
  }

  .navegacion-logo img {
    width: 45px;
    height: 45px;
  }
}

/* ---- Hamburguesa oculta en desktop ---- */
@media (min-width: 765px) {
  .navegacion-hamburguesa {
    display: none;
  }
}