:root {
    --primary-color: #e74c3c;
    --secondary-color: #3986BB;
    --background-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .logo-img {
    padding-top: 5px;
    height: 35px; /* altura real dentro del header */
    width: auto;
    object-fit: contain;
    transform: scale(3.5); /* agranda visualmente */
    transform-origin: left center;
  }

  .logo-text {
  /*  font-family: 'Segoe UI', sans-serif;*/
    font-size: 1rem;
    color: #3986BB;
    font-weight: 400;
    line-height: 1.2;
    margin-left: 6px;
  }
  
  .logo-text .linea-1 {
    color:#005FA3; /* azul ideal para "but" */   
    font-weight: 600;           /* semibold */
    letter-spacing: 0.3px;      /* un poquito más de aire */
    font-size: 1.05rem;
  }
  
  .logo-text .linea-2 {
    color: #4a4a4a;
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.8;
    letter-spacing: 0.2px;
  }
  
  
  
  
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}


/* Update the nav styles */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    margin-right: 2rem;
}



/* Adjust dropdown position */
.dropdown-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* Otros estilos que ya tengas: */
    display: flex;
    justify-content: center;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    margin-top: 0.5rem;
}

/* For the wider tools menu */
.tools-menu {
    left: auto;
    right: 0;
}

@media (max-width: 768px) {
    nav {
        padding: 0.5rem;
    }
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo .heart {
    color: var(--primary-color);
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex: 1; /* Ocupa el espacio disponible pero permite que header-actions tenga su espacio */
    justify-content: center; /* Centra los elementos de navegación */
}




.hero {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tool-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.tool-card p {
    color: #666;
}
/* Add these styles to your existing CSS */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;  /* Only this display property */
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px;
    z-index: 1000;
    min-width: 200px;
    gap: 20px;
}

/* Remove this block entirely as we're using JavaScript for toggle */
/* .dropdown:hover .dropdown-menu {
    display: flex;
} */
.dropdown-column {
    min-width: 200px;
}

.dropdown-column h4 {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.dropdown-column a {
    all: unset; /* borra absolutamente todos los estilos */
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #00468B;
    line-height: 1.5;
  }
  
  .dropdown-column a:hover {
    background: none;
    color: #002f5f;
  }

.dropdown-column img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tools-menu {
    width: max-content;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        flex-direction: column;
        width: 100%;
    }
    
    .dropdown-column {
        width: 100%;
    }
}
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
    }
}


/* Sección de servicio PDF genérica */
.pdf-service-section {
    background-color: #ffffff;
    padding: 40px 20px;

    text-align: center;
  
    margin-bottom: 40px;

        /*  border-radius: 12px; 
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);*/
  }


  .pdf-service-section h1 {
    font-size: 3.5rem;
    color: #2e2e2e;
    margin-bottom: 15px;
  }
  
  .pdf-service-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 25px;
  }
  
  .pdf-service-section .btn-upload {
    background-color: #00468B;
    color: white;
    padding: 15px 25px;
    font-size: 1.3rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
  }
  
  .pdf-service-section .btn-upload:hover {
    background-color: #00468B;
  }
  
  .boton-servicio {
    background-color: #00468B;         /* Azul marino */
    color: white;
    font-size: 1.5rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .boton-servicio:hover {
    background-color: #005fa3;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  }
  
  .subir-pdf-btn {
    display: inline-block;
    margin-bottom: 10px;
    text-align: center;
  }
  .grupo-rangos {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra horizontalmente */
    gap: 10px;
    margin-top: 20px;
  }
  
  .grupo-rango {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  
  .input-rango {
    width: 100px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
  }
  
  .boton-agregar-rango {
    background-color: #004080;
    color: white;
    padding: 10px 18px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .boton-agregar-rango:hover {
    background-color: #0059b3;
  }
  

  .boton-eliminar-rango {
    background-color: #A21738;
    color: white;
    padding: 10px 18px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .boton-eliminar-rango:hover {
    background-color:#c0003df7;
  }
  

  .menu-item {
    position: relative;
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
    color: #2c3e50;
    text-decoration: none;
  /*  font-family: 'Segoe UI', sans-serif; */
  }

  .badge-ia {
    position: absolute;
    top: -25px;
    right: -50px; /* ← mueve más a la derecha */
    background-color: goldenrod;
    color: white;
    padding: 6px 14px; /* ← más grande */
    font-size: 12px;   /* ← más grande */
    font-weight: bold;
/*    font-family: 'Georgia', serif; */ 
    transform: rotate(45deg);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    z-index: 10;
    animation: flotar 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .badge-ia:hover {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  }

  @keyframes flotar {
    0%, 100% {
      transform: rotate(45deg) translateY(0px);
    }
    50% {
      transform: rotate(45deg) translateY(-3px);
    }
  }

  #contenido-servicio:empty {
    pointer-events: none;
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  

  
  .menu-item.with-badge {
    position: relative;
    display: inline-block;
  }
  
  .menu-wrapper {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    cursor: pointer;
  }
  
  .menu-wrapper a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
  }
    
  
 .contenedor-titulo {
  position: relative;
  display: inline-block;
}


.h1-con-badge {
    position: relative;
    display: inline-block;
  }
  
  .badge-ia {
    position: absolute;
    top: -25px;
    right: -50px; /* ← mueve más a la derecha */
    background-color: goldenrod;
    color: white;
    padding: 6px 14px; /* ← más grande */
    font-size: 12px;   /* ← más grande */
    font-weight: bold;
    transform: rotate(45deg);
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
    animation: flotar 3s ease-in-out infinite;
  }
  
  
  .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center; /* opcional: centra horizontalmente */
  }
  
  .nav-button {
    display: inline-block;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 13px;
    color: #00468B;
    background-color: transparent;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    box-shadow: none;
  }
  
  
  .nav-button:hover {
    background-color: rgba(0, 70, 139, 0.08);
    box-shadow: 0 1px 4px rgba(0, 70, 139, 0.15);
    color: #005fa3;
  }
  

  .tool-icon {
    font-size: 2.2rem;       /* agranda el emoji */
    margin-bottom: 1rem;
    text-align: center;
  }

  .main-footer {
    background-color: #f5f7fa;
    padding: 20px 40px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #34495e;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }
  
  .footer-language label {
    font-weight: bold;
    margin-right: 8px;
  }
  
  .footer-language select {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .footer-contact a {
    color: #00468B;
    text-decoration: none;
    font-weight: bold;
  }
  
  .footer-contact a:hover {
    text-decoration: underline;
  }

  
  /* ✅ Oculta flechas en inputs de tipo number */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield;      /* Estándar */
}

.boton-volver {
  background: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  animation: girarVolver 2.5s ease-in-out infinite;
  display: inline-block;
  margin-top: 30px;
  color: #00468B;
  transition: transform 0.3s ease;
}

.boton-volver:hover {
  transform: scale(1.2);
}

@keyframes girarVolver {
  0%, 100% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(-10deg) translateY(-3px);
  }
}


.filepond--file-action-button {
  background-color: #e63946 !important;
  border-radius: 50% !important;
  transition: transform 0.3s ease;
}

.filepond--file-action-button:hover {
  transform: scale(1.2);
  background-color: #c9184a !important;
}

.filepond--label-action {
  color: #0070C0;
  font-weight: 500;



}

#barra-progreso {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 20px; /* Espacio respecto al botón */
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
  transform: scale(1);
  margin-bottom: 40px; 
}

#barra-progreso.ocultar {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

.progress-container {
  width: 100%;
  max-width: 500px;
  height: 64px;
  background: #e5e5e5;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid #d0d0d0;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.progress-bar {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #156AAD, #1C8ED9);
  animation: progressAnimation 2.8s ease-in-out infinite alternate;
  transform-origin: left;
  border-radius: inherit;
}

@keyframes progressAnimation {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 600;
  color: white;
  z-index: 10;
}


/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(80, 80, 80, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.overlay.hidden {
  display: none;
}

.overlay.visible {
  opacity: 1;
  pointer-events: auto;
}


/* Animación de entrada/salida del cuadro */
.overlay-content {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: left;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
  transform: translateY(-40px);
   transition: opacity 0.3s ease;
  
}

.overlay.visible .overlay-content {
  transform: translateY(0);
}
.overlay-content h2 {
  margin-top: 0;
  color: #0070C0;
}

.overlay-content ul {
  padding-left: 20px;
}

.cerrar-btn {
  margin-top: 20px;
  background: #0070C0;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cerrar-btn:hover {
  background: #004f91;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.condiciones-btn {
  position: relative;
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background-color: #0070C0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 112, 192, 0.3);
  border: none;
  overflow: hidden;
  margin-left: auto; /* asegura alineación a la derecha si hay espacio */
}

.condiciones-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: brillo-infinito 2.5s infinite;
}

@keyframes brillo-infinito {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

.condiciones-btn:hover {
  background-color: #005fa3;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 112, 192, 0.4);
  transform: translateY(-1px);
}

.nav-link .espaciado-derecha {
  margin-left: auto;
}

/*
SECCION DE COMPARACIÓN
*/

.comparacion-section {
  padding: 3rem 1rem;
  background: #f9f9f9;
  border-top: 1px solid #e0e0e0;
}

.comparacion-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.comparacion-video {
  flex: 1 1 300px;
  min-width: 300px;
  max-width: 600px;
}

.comparacion-video iframe {
  width: 100%;
  height: 340px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.comparacion-texto {
  flex: 1 1 300px;
}

.comparacion-texto h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.comparacion-texto p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.comparacion-texto a.condiciones-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #0070C0;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.comparacion-texto a.condiciones-btn:hover {
  background-color: #005ca0;
}


/*DONACIONES*/
/* Estilos base */
.donacion-linea {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.donacion-linea span {
  font-weight: 600;
  color: #333;
}

/* Reutiliza los estilos del tooltip */
.btn-icono img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-icono {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/*TOOL TIP PARA OTRA PARTE DEL CÓDIGO*/

.tooltip-burbuja {
  position: relative;
  display: inline-block;
}

.tooltip-burbuja::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  left: calc(100% + 14px);
  transform: translateY(-50%);
  background: #333;
  color: white;
  border-radius: 10px;
  font-weight: bold;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding: 0 20px;              /* solo horizontal */
  
  /* 🟢 Clave para altura uniforme */
  height: 42px;                 /* igual que el ícono */
  line-height: 42px;            /* centra verticalmente texto */
  display: inline-block;
  white-space: nowrap;
}

.tooltip-burbuja::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 4px); /* más separación respecto al ícono */
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #333; /* 👉 FLECHA HACIA DERECHA */
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 998;
}

.tooltip-burbuja:hover::after,
.tooltip-burbuja:hover::before {
  opacity: 1;
}


/*YAPE MODAL*/

.qr-donacion {
  text-align: center;
  padding: 1.5rem;
}

.qr-donacion img {
  width: 220px;
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
}

.qr-donacion p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 500;
}

#contenidoCondicionesCuerpo {
  transition: opacity 0.4s ease;
}


.pantalla-oculta {
  display: none;
}
.pantalla-activa {
  display: block;
}

/* === ESTILOS PARA HEADER ACTIONS (BOTONES ACCEDER/REGISTRO Y MENÚ 9 PUNTOS) === */

/* Contenedor principal de las acciones del header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0; /* No se encoge */
}

/* Contenedor de botones de autenticación */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Botón Acceder - estilo similar a nav-button */
.btn-acceder {
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 14px;
  color: #00468B;
  background-color: transparent;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  box-shadow: none;
}

.btn-acceder:hover {
  background-color: rgba(0, 70, 139, 0.08);
  box-shadow: 0 1px 4px rgba(0, 70, 139, 0.15);
  color: #005fa3;
}

/* Botón Registro - estilo destacado similar a la imagen */
.btn-registro {
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 14px;
  color: white;
  background-color: #dc3545; /* Rojo similar a la imagen */
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
}

.btn-registro:hover {
  background-color: #c82333;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(220, 53, 69, 0.3);
}

/* === ESTILOS PARA MENÚ DE 9 PUNTOS === */

/* Contenedor del menú de 9 puntos */
.menu-dots-container {
  position: relative;
  display: inline-block;
}

/* Botón de 9 puntos */
.menu-dots-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sin hover ni background para el botón de 9 puntos */

/* SVG de 9 puntos */
.dots-svg {
  color: #666;
  width: 20px;
  height: 20px;
}

/* Sin hover para el SVG - se mantiene siempre gris */

/* Dropdown del menú de 9 puntos */
.menu-dots-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1500;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 8px;
  border: 1px solid #e0e0e0;
}

.menu-dots-dropdown.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Contenido del dropdown */
.dots-dropdown-content {
  padding: 20px;
}

.dots-dropdown-content h3 {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: bold;
  color: #2c3e50;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

/* Grid de elementos del menú */
.dots-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* Elementos individuales del menú */
.dots-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #2c3e50;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.dots-menu-item:hover {
  background-color: rgba(0, 70, 139, 0.05);
  border-color: rgba(0, 70, 139, 0.1);
  color: #00468B;
  transform: translateY(-1px);
}

/* Iconos del menú */
.dots-menu-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Responsive para header actions */
@media (max-width: 768px) {
  .header-actions {
    gap: 5px;
  }
  
  .auth-buttons {
    gap: 3px;
  }
  
  .btn-acceder,
  .btn-registro {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .dots-menu-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-dots-dropdown {
    min-width: 200px;
  }
  
  .nav-links {
    gap: 1rem;
    justify-content: flex-start;
  }
}


