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

body {
  font-family: "Montserrat", sans-serif;
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
  font-size: 16px;
}

/* BANNER */
.banner {
  background: #009688;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-size: 0.95rem;
  font-weight: 500;
}

/* === HEADER PRINCIPAL === */
.header {
  background: #006d6d;
  color: white;
  padding: 15px 20px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo img {
  height: 50px;
  display: block;
}

/* === MENÚ === */
.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #a7f1e1;
}

/* === BOTÓN MENÚ MÓVIL === */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #006d6d;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    text-align: center;
    z-index: 10;
  }

  .nav.active {
    transform: translateY(0);
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }
}

/* === HERO SECTION === */
.hero {
  text-align: center;
  padding: 80px 20px 50px;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  color: #444;
  margin-bottom: 14px;
  line-height: 1.6;
}

.hero p strong {
  font-size: 1.5rem;
  color: #000;
  display: inline-block;
  margin-top: 8px;
}

.hero .nota {
  font-size: 1rem;
  color: #666;
  margin-top: 15px;
  display: block;
}

/* HERO - Responsive en móvil */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero p strong {
    font-size: 1.2rem;
  }

  .hero .nota {
    font-size: 0.9rem;
  }
}

/* === SECCIÓN PRODUCTOS / SERVICIOS === */
.productos {
  padding: 60px 20px;
  background: #fff;
}

.productos h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  color: #111;
}

.productos .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.producto {
  background: #fff;
  padding: 10px 10px 15px;
  border: 2px solid #000;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.producto:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.producto h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
}

.producto img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
}

/* === FOOTER === */
footer {
  background: #006d6d;
  color: white;
  text-align: center;
  padding: 25px 20px;
  margin-top: 40px;
}

footer h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

footer p {
  margin: 5px 0;
  font-size: 0.95rem;
  font-weight: 500;
}

footer a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s;
}

footer a:hover {
  color: #a7f1e1;
}

/* === AJUSTES EXTRA === */
@media (min-width: 992px) {
  .hero {
    padding: 100px 20px 70px;
  }

  .productos .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* === SECCIÓN SERVICIO BORDADO === */
.servicio-bordado {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.servicio-bordado .contenido {
  flex: 1;
}

.servicio-bordado h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}

.servicio-bordado h2 span {
  color: #006d6d;
}

.servicio-bordado p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 25px;
  max-width: 500px;
}

.btn-hablemos {
  display: inline-block;
  background: linear-gradient(90deg, #00897a, #00c4a0);
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.btn-hablemos:hover {
  transform: translateY(-3px);
}

.servicio-bordado .imagen {
  flex: 1;
  display: flex;
  justify-content: center;
}

.servicio-bordado .imagen img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* === RESPONSIVE PARA SECCIÓN SERVICIO BORDADO === */
@media (max-width: 768px) {

  .servicio-bordado {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  /* --- ORDEN: primero la imagen --- */
  .servicio-bordado .imagen {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* --- TAMAÑO DE LA IMAGEN --- */
.servicio-bordado .imagen img {
    width: 100%;
    max-width: 500px;
    height: 320px;             /* Tamaño fijo del recuadro */
    object-fit: cover;         /* Hace zoom y elimina líneas blancas */
    object-position: center 75%;  /* Sube la imagen para ver más el bordado */
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}



  /* --- TEXTO --- */
  .servicio-bordado h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    text-align: left;
  }

  .servicio-bordado p {
    font-size: 1rem;
    text-align: left;
  }

  /* --- BOTÓN --- */
  .btn-hablemos {
    font-size: 1rem;
    padding: 10px 22px;
  }
}


/* === SECCIÓN CATEGORÍAS === */
.categorias {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.categorias h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  font-weight: 400;
  color: #111;
}

.categorias h2 span {
  font-weight: 700;
}

.categorias h2 strong {
  font-weight: 800;
}

/* GRID */
.grid-categorias {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CADA TARJETA */
.grid-categorias .item {
  display: block;
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 14px;
  overflow: hidden;

  background: none;           /* SIN fondo gris */
  border: 3px solid #007b7b;  /* Marco elegante */
  padding: 0;                 /* Sin espacio interior */

  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* EFECTO HOVER EN EL CONTENEDOR */
.grid-categorias .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* IMAGEN */
.grid-categorias .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* La imagen llena el cuadro sin espacio */
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

/* EFECTO HOVER SOLO EN LA IMAGEN */
.grid-categorias .item:hover img {
  transform: scale(1.05);
}

/* === RESPONSIVE === */

/* Tablet - 2 columnas */
@media (max-width: 992px) {
  .grid-categorias {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Móvil - 1 columna */
/* === MODO MÓVIL: SOLO IMAGEN === */
@media (max-width: 600px) {

  /* Ocultar títulos */
  .grid-categorias .item h3,
  .grid-categorias .item .titulo {
    display: none !important;
  }

  /* Ocultar el botón VER si lo tienes */
  .grid-categorias .item .btn,
  .grid-categorias .item button,
  .grid-categorias .item a.ver {
    display: none !important;
  }

  /* Eliminar marco */
  .grid-categorias .item {
    border: none !important;
    height: auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  /* Imagen bien grande ocupando el ancho */
  .grid-categorias .item img {
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: block;
    transform: none !important;
  }
}

/* === SECCIÓN EXPERTOS === */
.seccion-expertos {
  padding: 60px 20px;
  background: #f9f9f9;
}

.expertos-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* IMAGEN */
.expertos-imagen {
  flex: 1;
}

.expertos-imagen img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

/* TEXTO */
.expertos-texto {
  flex: 1.2;
}

.expertos-texto h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #222;
}

.expertos-texto h2 strong {
  color: #006d6d;
}

.expertos-texto h2 span {
  color: #333;
  font-weight: 800;
}

.expertos-texto p {
  margin-bottom: 15px;
  color: #444;
  font-size: 1.05rem;
}

.expertos-texto ul {
  list-style: none;
  padding-left: 0;
}

.expertos-texto li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #333;
}

.expertos-texto li::before {
  content: "• ";
  color: #006d6d;
  font-weight: bold;
}

/* === RESPONSIVE (MÓVIL) === */
@media (max-width: 768px) {
  .expertos-contenedor {
    flex-direction: column;
    text-align: left;
  }

  .expertos-imagen img {
    width: 100%;
    max-width: 460px;
    height: 300px;        /* tamaño fijo bonito */
    object-fit: cover;    /* sin bordes blancos */
    object-position: center 20%;  /* sube la imagen ligeramente */
    margin: 0 auto 20px;
    border-radius: 14px;
  }

  .expertos-texto h2 {
    font-size: 1.8rem;
  }

  .expertos-texto p,
  .expertos-texto li {
    font-size: 1rem;
  }
}

/* ====================== */
/*   SECCIÓN BLOG         */
/* ====================== */

.blog-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-mini {
  color: #00a290;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.blog-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0a1f2a;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.blog-card {
  display: flex;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  overflow: hidden;
}

.blog-img {
  width: 45%;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d2230;
  margin-bottom: 12px;
}

.blog-info p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.blog-read {
  color: #00a290;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.3s;
}

.blog-read:hover {
  color: #007c6e;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    flex-direction: column;
  }

  .blog-img {
    width: 100%;
    height: 220px;
  }
}



/* =============================== */
/*   SECCIÓN SOBRE NOSOTROS        */
/* =============================== */

.sobre-contenedor {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.sobre-mini {
  color: #006d6d;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.sobre-texto h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.3;
}

.sobre-texto p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 15px;
  max-width: 600px;
}

.sobre-datos {
  margin: 25px 0;
}

.sobre-datos .dato {
  margin-bottom: 20px;
}

.sobre-datos h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #006d6d;
}

.sobre-datos p {
  margin-top: 5px;
  font-size: 1rem;
  color: #333;
}

.sobre-imagen {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sobre-imagen img {
  width: 380px !important;     /* Aumentamos el tamaño */
  height: 380px !important;    /* Tamaño uniforme */
  border-radius: 50%;          /* Se mantiene circular */
  object-fit: cover;           /* Rellena bien el círculo */
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* =============================== */
/*   RESPONSIVE SOBRE NOSOTROS     */
/* =============================== */

@media (max-width: 768px) {
  .sobre-contenedor {
    flex-direction: column;
    text-align: left;
  }

  .sobre-imagen img {
     width: 300px !important;
    height: 300px !important;
    object-fit: cover;
    border-radius: 50%;
  }

  .sobre-texto h2 {
    font-size: 1.8rem;
  }

  .sobre-texto p {
    font-size: 1rem;
  }

  .sobre-datos h3 {
    font-size: 1.5rem;
  }
}


/* =============================== */
/*   SECCIÓN QUIÉNES SOMOS         */
/* =============================== */

.quienes {
  background: #0a1f2a;
  padding: 70px 20px;
  margin-top: 40px;
  color: white;
}

.quienes-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* --- IZQUIERDA: BARRAS --- */

.quienes-izquierda {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  color: #0a1f2a;
}

.barra {
  margin-bottom: 25px;
  position: relative;
}

.barra p {
  font-weight: 600;
  margin-bottom: 5px;
}

.barra .linea {
  width: 100%;
  height: 6px;
  background: #dcdcdc;
  border-radius: 5px;
  overflow: hidden;
}

.barra .linea div {
  height: 100%;
  background: #00a290;
  border-radius: 5px;
}

.barra span {
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #006d6d;
}

/* --- DERECHA: TEXTO Y CÍRCULOS --- */

.quienes-derecha {
  flex: 1;
}

.quienes-derecha h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.quienes-derecha p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.circulos {
  display: flex;
  gap: 40px;
}

.circulo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid #00a290;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

.circulo span {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

/* RESPONSIVE QUIÉNES SOMOS */

@media (max-width: 768px) {
  .quienes-contenedor {
    flex-direction: column;
    text-align: left;
  }

  .circulos {
    justify-content: center;
  }
}


/* =============================== */
/*      ESTILOS PARA ARTÍCULOS     */
/* =============================== */

.blog-articulo {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  line-height: 1.7;
  font-family: "Montserrat", sans-serif;
  color: #222;
}

/* IMAGEN PRINCIPAL */
.blog-articulo-img {
  width: 100%;
  margin-bottom: 35px;
}

.blog-articulo-img img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* TITULO PRINCIPAL */
.blog-articulo-contenido h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0d2230;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* SUBTÍTULO */
.blog-articulo-contenido .subtitulo {
  font-size: 1.2rem;
  font-weight: 600;
  color: #009688;
  margin-bottom: 30px;
}

/* SUBTÍTULOS SECUNDARIOS */
.blog-articulo-contenido h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #0d2230;
}

/* PÁRRAFOS */
.blog-articulo-contenido p {
  margin-bottom: 15px;
  color: #444;
  font-size: 1.05rem;
}

/* LISTAS */
.blog-articulo-contenido ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-articulo-contenido ul li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .blog-articulo {
    margin: 20px auto;
    padding: 15px;
  }

  .blog-articulo-contenido h1 {
    font-size: 1.8rem;
  }

  .blog-articulo-contenido h2 {
    font-size: 1.35rem;
  }

  .blog-articulo-contenido .subtitulo {
    font-size: 1rem;
  }
}

/* ========================================= */
/*           SECCIONES DE SERVICIOS          */
/* ========================================= */

.servicio-detalle {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}

/* IMAGEN PRINCIPAL */
.servicio-detalle-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.servicio-detalle-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* TEXTO PRINCIPAL */
.servicio-detalle-texto {
  flex: 1.4;
}

.servicio-detalle-texto h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0d2230;
  margin-bottom: 20px;
  line-height: 1.2;
}

.servicio-detalle-texto h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #006d6d;
}

.servicio-detalle-texto p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.7;
}

.servicio-detalle-texto ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.servicio-detalle-texto ul li {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* BOTÓN */
.servicio-detalle-texto .btn-hablemos {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(90deg, #00897a, #00c4a0);
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.servicio-detalle-texto .btn-hablemos:hover {
  transform: translateY(-3px);
}


/* ========================================= */
/*                RESPONSIVE                 */
/* ========================================= */

@media (max-width: 900px) {
  .servicio-detalle {
    flex-direction: column;
    text-align: left;
    padding: 10px 15px;
    gap: 30px;
  }

  .servicio-detalle-img img {
    max-width: 100%;
    height: auto;
  }

  .servicio-detalle-texto h1 {
    font-size: 2rem;
  }

  .servicio-detalle-texto h2 {
    font-size: 1.4rem;
  }

  .servicio-detalle-texto p,
  .servicio-detalle-texto ul li {
    font-size: 1rem;
  }
}
/* ============================== */
/*     DROPDOWN - DESKTOP         */
/* ============================== */
/* ============================== */
/*     DROPDOWN - DESKTOP         */
/* ============================== */
/* ============================== */
/*     DROPDOWN ADAPTADO          */
/* ============================== */

.dropdown {
  position: relative;
  display: inline-block;
}

/* Botón del dropdown dentro del menú */
.dropbtn {
  background: none;
  color: white;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hover del botón */
.dropbtn:hover,
.dropbtn:focus {
  color: #a7f1e1; /* tono verde agua de tu web */
}

/* Flecha pequeña */
.flecha-dropdown {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

/* ==== MENÚ DESPLEGABLE (DESKTOP) ==== */
.dropdown-content {
  display: none;
  position: absolute;
  background: #006d6d;
  min-width: 180px;
  border-radius: 0 0 12px 12px;
  padding: 12px 18px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  z-index: 50;

  /* estructura vertical */
  flex-direction: column;
  gap: 10px;
}

/* Links dentro del dropdown */
.dropdown-content a {
  color: white;
  padding: 6px 4px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.dropdown-content a:hover {
  color: #a7f1e1;
}

/* Clase activada desde JS */
.dropdown-content.show {
  display: flex !important;
}

/* Flecha al abrir */
.dropdown-content.show ~ .flecha-dropdown,
.dropdown:hover .flecha-dropdown {
  transform: rotate(180deg);
}

/* ============================== */
/*     DROPDOWN EN MÓVIL          */
/* ============================== */

@media (max-width: 768px) {

  /* El botón del dropdown se ve igual que los enlaces del menú móvil */
  .dropbtn {
    width: 100%;
    justify-content: center;
    padding: 12px 0;
  }

  /* El contenedor ya no es flotante */
  .dropdown-content {
    position: relative;
    background: #005a5a;
    box-shadow: none;
    border-radius: 0;
    padding: 10px 15px;
    gap: 10px;
    display: none;
  }

  /* Se muestra solo cuando JS activa "show" dentro del menú móvil */
  .nav.active .dropdown-content.show {
    display: flex !important;
  }

  /* Hover no funciona en móvil, así que se desactiva */
  .dropdown:hover .dropdown-content {
    display: none !important;
  }
}


/* ALINEAR DROPDOWN */



/* Estilo base del contenedor <li> */
.nav ul li.dropdown {
  position: relative;
}

/* Dropdown link igual que los demás enlaces */
.nav ul li.dropdown .dropbtn {
  background: none;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hover igual que los demás <a> */
.nav ul li.dropdown .dropbtn:hover {
  color: #a7f1e1;
}

/* Menú flotante */
.dropdown-content {
  position: absolute;
  top: 30px;      /* Ajuste fino para bajar el menú */
  left: 0;
  background: #006d6d;
  min-width: 160px;
  border-radius: 0 0 12px 12px;
  display: none;
  flex-direction: column;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Mostrar */
.dropdown-content.show {
  display: block;
}

/* Enlaces dentro del dropdown */
.dropdown-content a {
  color: white;
  padding: 8px;
  display: block;
}

.dropdown-content a:hover {
  background: #007f7f;
}












/* ===== DROPDOWN MÓVIL → FONDO BLANCO + TEXTO VERDE ===== */
@media (max-width: 768px) {

  /* Contenedor del submenú */
  .dropdown-content {
    position: static !important;
    background: #ffffff !important;     /* Fondo blanco */
    box-shadow: none !important;
    border-radius: 0;
    padding: 0 !important;
    margin: 0;
    display: none;
  }

  /* Estilo de cada enlace */
  .dropdown-content a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #006d6d !important;          /* Verde corporativo */
    background: white;
    border-bottom: 1px solid #e5e5e5;   /* Línea gris suave */
    text-align: center;
  }

  .dropdown-content a:hover {
    background: #f2f2f2;                /* Gris muy suave */
    color: #004f4f;                     /* Verde más oscuro */
  }

  .dropdown-content.show {
    display: block !important;
  }
}

