:root {
  --oxford-blue: #031C45;
  --bright-pink: #FB5369;
  --floral-white: #FFFCF5;
  --full-white:  #FFFFFF;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--floral-white);
  color: var(--oxford-blue);
  scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  background-color: var(--oxford-blue); /* fondo cambiado */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 100px;
}


header img {
  width: 200px;
}

nav {
  display: flex; 
  gap: 40px; 
  align-items: center;
}
nav a {
  margin-left: 30px;
  text-decoration: none;
  color: white; /* antes: var(--oxford-blue) */
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--bright-pink);
}


.logo-wrapper {
  position: relative;
  width: 250px;
  height: auto;
}

.logo {
  position: absolute;
  margin-top: -30px;
  top: 0;
  left: 0;
  width: 250px;
  height: auto;
  opacity: 0;
  transform: scaleX(0);
  transition: transform 1s ease, opacity 1s ease;
}

.logo.visible {
  opacity: 1;
  transform: scaleX(1);
}






.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1 1 400px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: var(--oxford-blue);
  margin-bottom: 20px;

}

.hero-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 30px;
}

.highlight-box {
  border: 2px solid var(--oxford-blue);
  padding: 20px;
  border-radius: 8px;
  font-weight: bold;
  color: var(--oxford-blue);
  background-color: white;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  animation: float 6s ease-in-out infinite;
  display: block;
  margin: 0 auto;
  border: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


.hero-extra {
  text-align: center;
  padding: 0 150px;
  margin-top: -50px;
  margin-bottom: 80px;
}

.hero-extra p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-extra .highlight-box {
  display: inline-block;
  max-width: 700px;
  margin: 0 auto;
}





@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }

  .logo{
    margin-top: 10px;
  }
  .hero {
    flex-direction: column-reverse;
    padding: 40px 20px;
  }

  .hero-image {
    flex: 1 1 100px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

.hero-text {
  flex: 1 1 0px;
  padding: 20px;
}
  .hero-extra {
    padding: 0 30px;
    margin-top: 20px;
    font-size: : 0.70rem;
  }

  .hero-extra .highlight-box {
    width: 100%;
    font-size: 0.75rem;
  }

}


/* SECCION COMPROMISO */

.section-compromiso {
  background-color: #FFFCF5; /*#F9F9F9 casi blanco */; 
  padding: 10px 20px;
}

.container-compromiso {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.compromiso-texto {
  flex: 1 1 400px;
  padding: 20px 40px;
}

.compromiso-texto p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #222;
  text-align: justify;
}

.compromiso-texto h3 {
  font-size: 1.6rem;
  line-height: 1.9;
  color: --oxford-blue;
  text-align: justify;
}

.compromiso-media {
  flex: 1 1 400px;
  text-align: center;
  padding: 10px;
}

.compromiso-media img {
  max-width: 50%;
  
  margin-top: -20px;
}

.compromiso-media h2 {
  margin-top:  -5px;
  font-size: 1.8rem;
  color: var(--oxford-blue);
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .container-compromiso {
    flex-direction: column;
    padding: 20px;
  }

  .compromiso-texto,
  .compromiso-media {
    padding: 10px;
  }

  .compromiso-texto p {
    margin-top:  -50px;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #222;
    text-align: center;
  }

  .compromiso-texto {
    order: 2;
  }

  .compromiso-media {
    order: 1;
  }


  .compromiso-texto h3 {
    font-size: 1.3rem;
    line-height: 1.7;
    color: --oxford-blue;
    text-align: center;
  }

  .compromiso-media h2 {
    margin-top:  5px;
    text-align: center;
    font-size: 1.4rem;
    color: var(--oxford-blue);
    font-weight: 500;
    line-height: 1.2;
  }

  .compromiso-media img {
    margin-top: 0;

  }

}

/* SECCION ICONOS */
.section-iconos {
  background-color: #FFFCF5;
  padding: 40px 20px;
}

.iconos-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0;
}

.icono-burbuja {
  position: relative;
  width: 100px;
  text-align: center;
  cursor: pointer;
}

.icono-burbuja img {
  width: 130px;
  transition: transform 0.3s ease;
}

.icono-burbuja:hover img {
  transform: scale(1.1) rotate(5deg);
}

.burbuja {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background-color: white;
  color: var(--oxford-blue);
  border-radius: 12px;
  padding: 15px 20px;
  margin-top: 12px;
  width: 400px;
  font-size: 0.80rem;
  line-height: 1.4;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  transition: all 0.4s ease;
}

.icono-burbuja:hover .burbuja,
.icono-burbuja:focus .burbuja {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-25%) scale(1);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.toque-indicador {
  text-align: center;
  font-size: 0.95rem;
  color: var(--oxford-blue);
  margin-bottom: 20px;
  display: none;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

@media (max-width: 768px) {
  .iconos-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px; /* puedes ajustar a tu gusto */
  }

  .icono-burbuja {
    margin-bottom: 30px;
    width: 100%;
    position: relative;
  }

  .burbuja {
    position: absolute;
    top: 105%;
    left: 33%;
    transform: translateX(-50%) scale(0.9);
    opacity: 0;
    visibility: hidden;
    max-width: 360px;
    margin-top: 12px;
    z-index: 5;
    transition: all 0.3s ease;
  }

  .burbuja.activa {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-35%) translateY(-50%) scale(1) !important;
    z-index: 10;
  }

  .icono-burbuja.animated-icon img {
    animation: pulse 1.6s infinite;
  }

  .toque-indicador {
    display: block;
  }

}


/* SECCION TESTIMONIOS */
.testimonios-section {
  padding: 60px 20px;
  background-color: #FFFCF5;
  text-align: center;
}

.swiper.testimonios-swiper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 30px;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100% !important; /* 👈 OBLIGATORIO para evitar que salgan dos slides */
  display: flex;
  justify-content: center;
}

.testimonio-burbuja {
  background: #f4dbab;
  border-radius: 30px 5px 30px 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 600px;
  height: 560px; /* cambia a auto si hay contenido variable auto;*/
  position: relative;
  
  display: flex;
  flex-direction: column;
  
  text-align: left;
}


.logo-cliente {
  max-width: 200px;
}

.burbuja-mensaje {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  margin-bottom: 20px;
  margin-top: 20px;
}


.cliente-datos {
  text-align: right;
  font-size: 0.85rem;
  color: var(--oxford-blue);
}


@media (max-width: 768px) {
  .logo-cliente {
    max-width: 100px;
  }

  .burbuja-mensaje {
    font-size: 0.70rem;
  }


  .cliente-datos {
    text-align: center;
    font-size: 0.65rem;
  }

}


/* FOOTER */
.footer-myd {
  background-color: var(--oxford-blue);
  color: white;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #fff;
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col p {
  margin-bottom: 10px;
  color: #ddd;
  line-height: 1.5;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: var(--bright-pink);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  font-size: 0.85rem;
}

.footer-wave {
  margin-top: 80px;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 25px;
    margin-bottom: 30px;
  }

  .social-icons a {
    margin: 0 10px;
  }

  .footer-wave svg {
    height: 30px;
  }

}


/* SECCION QUIENES SOMOS */
.section-nosotros {
  background-color: #FFFCF5;
  padding: 60px 20px;
}

.container-nosotros {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.nosotros-texto {
  flex: 1 1 500px;
  padding: 20px;
}

.nosotros-texto h2 {
  font-size: 2.2rem;
  color: var(--oxford-blue);
  margin-bottom: 20px;
}

.nosotros-texto p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.nosotros-imagen {
  flex: 1 1 400px;
  text-align: center;
}

.nosotros-imagen img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  animation: fadeInUp 1.5s ease both;
}

@media (max-width: 768px) {
  .container-nosotros {
    flex-direction: column;
    padding: 20px;
  }

  .nosotros-texto h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .nosotros-texto p {
    font-size: 0.95rem;
    text-align: center;
  }

  .nosotros-imagen img {
    margin-top: 20px;
  }
}


/* NOS DEDICAMOS */
.section-nosdedicamos {
  background-color: #FFFCF5;
  padding: 60px 20px;
}

.container-nosdedicamos {
  max-width: 1200px;
  margin: 0 auto;
}

.titulo-seccion {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: var(--oxford-blue);
}

.grid-dedicacion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding-top: 2rem;
}

.card-dedicacion {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.card-dedicacion:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-dedicacion .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
}

.card-dedicacion img {
  width: 100px;
  max-height: 100px;
  object-fit: cover;
}

.img-container .icono {
  width: 100px;
  height: 60px;
  stroke-width: 2.5;        /* Más grueso */
  color: #031c45;           /* Azul fuerte, puedes cambiar por otro color */
  stroke: currentColor;     /* Usa el color actual del texto */
  transition: transform 0.3s ease;
}

.img-container .icono:hover {
  transform: scale(1.1);    /* Efecto suave al pasar el cursor */
  color: #ff5369;           /* Un tono más oscuro al hacer hover */
}

.contenido-card {
  padding: 1rem;
}

.contenido-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.contenido-card p {
  font-size: 0.95rem;
  color: #555;
}

/* CTA final */
.container-nosdedicamos-cta {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;  /* Centra horizontalmente */
  align-items: center;      /* Si quieres centrar también verticalmente */
}

.dedicacion-cta {
  display: inline-block;         /* Ajusta el ancho al contenido */
  background-color: #fff;
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
  margin: 40px auto 0 auto;      /* Centrar horizontalmente */
  max-width: 600px;              /* Limitar ancho para que no se estire demasiado */
}

.dedicacion-cta p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-cta {
  background-color: var(--oxford-blue);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: var(--bright-pink);
}
@media (max-width: 768px) {
  .dedicacion-cta p {
    font-size: 1rem;
  }
}


/* SECCION CONTACTO */

.section-contacto {
  display: flex;
  flex-wrap: wrap;
  background: white;
  padding: 40px 20px;
}

.contacto-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* -------- Video a la izquierda -------- */
.contacto-video {
  flex: 1;
  padding: 0;
  min-width: 300px;
  background: black;
}
.contacto-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------- Formulario a la derecha -------- */
.contacto-form-columnar {
  flex: 1;
  padding: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Titulos */
.contacto-form-columnar h2 {
  font-size: 1.8rem;
  color: var(--oxford-blue);
  margin-bottom: 20px;
}

/* Grid de formulario en 2 columnas */
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.form-col {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
}

.form-col label {
  margin-top: 15px;
  font-weight: bold;
  color: var(--oxford-blue);
  font-size: 0.95rem;
}

.form-col input,
.form-col select {
  border: none;
  border-bottom: 2px solid var(--oxford-blue);
  background: transparent;
  padding: 8px 5px;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--oxford-blue);
}

.form-col select {
  appearance: none;
  cursor: pointer;
}

/* Botón siguiente */
.form-boton {
  width: 100%;
  margin-top: 30px;
}
.btn-next, .btn-enviar {
  background: var(--oxford-blue);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-next:hover, .btn-enviar:hover {
  background: #011e47;
}

#mensajeF1, #mensajeF2 {
  margin-top: 15px;
  color: var(--oxford-blue);
  font-size: 0.9rem;
}


/* -------- Textarea Parte 2 -------- */
#form-parte2 textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--oxford-blue);
  background: transparent;
  padding: 10px;
  font-size: 1rem;
  color: var(--oxford-blue);
  resize: vertical;
  margin-bottom: 20px;
}


/* -------- Modal de Código -------- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 9999;
}
.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}
.modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 320px;
  text-align: center;
  border-bottom: 4px solid var(--oxford-blue);
}
.modal-content h3 {
  margin-bottom: 10px;
  color: var(--oxford-blue);
}
.modal-content h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--oxford-blue);
}
.modal-content input {
  width: 80%;
  text-align: center;
  font-size: 2rem;
  border: none;
  border-bottom: 2px solid var(--oxford-blue);
  background: transparent;
  margin-bottom: 15px;
  color: var(--oxford-blue);
}
#contador {
  font-size: 1rem;
  font-weight: bold;
  color: var(--oxford-blue);
  margin-bottom: 10px;
}


/* -------- Responsive -------- */
@media (max-width: 768px) {
  .contacto-container {
    flex-direction: column;
  }

  .form-grid {
    flex-direction: column;
    gap: 0;
  }

  .contacto-form-columnar {
    padding: 20px;
  }

  .contacto-form-columnar h2 {
    text-align: center;
  }

  .modal-content {
    width: 90%;
  }
}


/* SECCION GRACIAS */
.section-gracias {
  display:flex; align-items:center; justify-content:center;
  min-height:400px; background:#fff; color:var(--oxford-blue);
}
.gracias-content {
  text-align:center; padding:40px;
}
.gracias-content h1 {
  font-size:2.5rem; margin-bottom:20px;
}


/* POP-UP de Inicio */
/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(3, 28, 69, 0.85); /* oxford-blue semi */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Contenido */
.popup-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px 40px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: fadeInScale 0.6s ease forwards;
}

.popup-title {
  color: var(--oxford-blue);
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.popup-img {
  width: 200px;
  margin: 15px auto;
  display: block;
}

.popup-subtitle {
  color: #444;
  font-size: 1rem;
  margin-bottom: 25px;
}

/* Botones */
.popup-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-popup {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-contacto {
  background: var(--oxford-blue);
  color: #fff;
}

.btn-contacto:hover {
  background: #021433;
}

.btn-ver {
  background: var(--bright-pink);
  color: #fff;
}

.btn-ver:hover {
  background: #e60073;
}

/* Animación entrada */
@keyframes fadeInScale {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Estado visible */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Botón de cierre (X) */
.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--oxford-blue);
  cursor: pointer;
  transition: color 0.3s ease;
}

.popup-close:hover {
  color: var(--bright-pink);
}


/* Estilos para Card-PSKLOUD */
/* Modal base */
.modal-pskloud {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 28, 69, 0.95);
  z-index: 9999;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}
.modal-content {
  background: #fff;
  margin: 50px auto;
  padding: 2rem;
  width: 80%;
  max-width: 1000px;
  border-radius: 12px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--oxford-blue);
}
.grid-sistemas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card-sistema {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.card-sistema img {
  max-width: 60px;
  margin-bottom: 0.8rem;
}
.card-sistema:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.card-sistema p {
  margin-bottom: 10px;
}
.pskloud-detalle {
  margin-top: 2rem;
}
.btn-volver {
  background: var(--oxford-blue);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 1rem;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* ACORDEON DE OPCIONES */
/* Grid de acordeón en 2 columnas (desktop) */
.acordeon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Cada burbuja */
.acordeon-item {
  background: white;
  color: var(--oxford-blue);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Botón de acordeón */
.acordeon-btn {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Flecha */
.acordeon-btn .arrow {
  transition: transform 0.3s ease;
}

/* Contenido desplegable */
.acordeon-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  background: #f9f9f9;
}

.acordeon-content ul {
  padding: 15px 0;
  margin: 0;
  list-style: none;
}

.acordeon-content li {
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
  font-size: 0.95rem;
}

.acordeon-content li:last-child {
  border-bottom: none;
}
