/* Paleta de colores y fuente global para Expert Inner Circle */
:root {
  --color-verde-neon: #00ff15;
  --color-verde-neon-hover: #04ac12;
  --color-negro-transparente: rgba(0, 0, 0, 0.5);
  --color-masnegro-transparente: rgba(0, 0, 0, 0.7);
  --color-blanco: #ffffff;
  --fuente-principal: 'Montserrat', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

body, html {
  height: 100%;
  font-family: var(--fuente-principal);
}

html{
  scroll-behavior: smooth;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--color-verde-neon);
  color: white;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #25D366;
  transform: scale(1.05);
}
.faq-section {
 
  padding: 2rem 10rem;
  font-family: 'Montserrat', sans-serif;
  background-color: #000000;
  color: #ffffff;
  
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff;
  font-size: 1.6rem;
}

.faq {
  background-color: #1e2b3e;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  padding: 1rem;
  border-top: 1px solid #2e3e56;
  font-size: 0.95rem;
  background-color: #1c2636;
}

/* Mostrar respuesta */
.faq.open .faq-answer {
  display: block;
}

/* Girar el + */
.faq.open .faq-question span {
  transform: rotate(45deg);
}

/* Responsivo: asegurarse que no estorbe en pantallas pequeñas */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}


.background {
  position: relative;
  background-image: url('/assets/images/expertinnerfondo.webp');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-negro-transparente);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  text-align: initial;
  color: var(--color-blanco);
  margin-right: 39%;
}

h1 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-verde-neon);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.header-logo-fecha {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-evento {
  max-width: 180px;
  height: auto;
}

.fecha {
  font-size: 1.1rem;
  color: #00ffc7; /* color neón sugerido */
  font-weight: bold;
}
h2 {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--color-blanco);
  margin-bottom: 20px;
   text-transform: uppercase;
}
h4 {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--color-blanco);
  margin-bottom: 20px;
   text-transform: uppercase;
   text-align: center;
   padding-top: 5%;
   padding-bottom: 5%;
}
span
{
    color:var(--color-verde-neon);
}

.fecha, .ubicacion, .descripcion, .tematica {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-blanco);
}
.tematica{
    color: var(--color-verde-neon);
}

.formulario {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario input {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
}

.boton {
  background-color: var(--color-verde-neon);
  color: #000;
  padding: 15px 25px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
}

.boton:hover {
 background-color: var(--color-verde-neon-hover);
 color: #ffffff;
}

.countdown-section {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.countdown-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.countdown div {
  font-size: 3rem;
  font-weight: bold;
}

.countdown p {
  font-size: 1rem;
  margin-top: 10px;
}

.video-section {
  background-color: #000;
  color: #00e600;
  padding: 3rem 1rem;
  text-align: center;
}

.video-section h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 1px;
 


  
  border: 4px solid #00e600;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .video-section h2 {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}



.aprendizaje-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.aprendizaje-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #000;
}

.lista-aprendizaje {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  text-align: left;
}

.lista-aprendizaje li {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  color: #111;
}

.lista-aprendizaje li span {
  font-weight: bold;
  font-size: 1.3rem;
  color: #00e600;
  margin-right: 12px;
  min-width: 30px;
}

.mensaje-final {
  font-size: 1.3rem;
  margin-top: 40px;
  font-weight: bold;
  color: #111;
}

.mensaje-final .resaltado {
  background-color: #00e600;
  color: #000;
  padding: 4px 8px;
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
}
.registro {
  text-align: center;
  padding: 60px 20px;
  background-color: black;
}

.registro-texto {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--color-blanco);
}

.registro-texto .destacado {
  color: var(--color-verde-neon);
  font-weight: bold;
}

.formulario-box {
  background-color: var(--color-blanco);
  padding: 40px 30px;
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.formulario-box h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
}

.formulario-registro {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario-registro input {
  padding: 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.formulario-registro button {
  padding: 15px;
  font-size: 1rem;
  font-weight: bold;
  background-color: var(--color-verde-neon);
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-registro button:hover {
  background-color: var(--color-verde-neon-hover);
}
.seccion-ubicacion {
  text-align: center;
  font-family: var(--fuente-principal);
  padding: 40px 20px;
  background-color: var(--color-blanco);
  color: #000;
}

.seccion-ubicacion h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.seccion-ubicacion .fecha {
  font-size: 2.5rem;
  color: var(--color-verde-neon);
  font-weight: bold;
}

.seccion-ubicacion .dia {
  color: #000;
}

.mapa-responsive {
  position: relative;
  overflow: hidden;
  width: 80%;               /* 👈 Reduce el ancho */
  max-width: 700px;         /* 👈 Opcional: máximo ancho para pantallas grandes */
  margin: 20px auto;        /* 👈 Centra horizontalmente */
  padding-top: 30%;         /* Altura proporcional */
}

.mapa-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

.info-modalidad {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 20px 0;
  flex-wrap: wrap;
}

.live-icon {
  background-color: red;
  color: var(--color-blanco);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.boton-reserva {
  display: inline-block;
  background-color: var(--color-verde-neon);
  color: #000;
  font-weight: bold;
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.boton-reserva:hover {
  background-color: var(--color-verde-neon-hover);
}

.speakers-section {
  padding: 40px 120px;
  background: black;
  font-family: var(--fuente-principal);
}

.speaker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.speaker.reverse {
  flex-direction: row-reverse;
}

.speaker-img img {
  width: 390px;
  height: 390px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-verde-neon);
}

.speaker-info {
  position: relative;
  flex: 1;
  color: var(--color-blanco);
  padding: 20px;
  background: var(--color-masnegro-transparente);
  border-radius: 20px;
}

.speaker-info h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.speaker-info p {
  font-size: 16px;
  line-height: 1.6;
  text-align: initial;
}

.speaker-info .decoracion {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50%;
  height: 75%;
  opacity: 0.1;
}
.registro-section {
  background-color: #000;
  color: var(--color-blanco);
  font-family: var(--fuente-principal);
  padding: 60px 20px;
}

.registro-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.registro-texto {
  flex: 1;
  min-width: 300px;
}

.registro-texto h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.registro-texto h2 .capital {
  font-size: 2.8rem;
  color: var(--color-verde-neon);
  display: block;
}

.registro-texto h2 .frenan {
  color: var(--color-verde-neon);
}

.registro-texto p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.registro-formulario {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 300px;
}

.registro-formulario input {
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  outline: none;
}

.registro-formulario button {
  padding: 14px;
  font-size: 1rem;
  background-color: var(--color-verde-neon);
  color: var(--color-blanco);
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.registro-formulario button:hover {
  background-color: var(--color-verde-neon-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
    padding: 1rem 0.5rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
  .registro-container {
    flex-direction: column;
    text-align: center;
  }

  .registro-texto h2 {
    font-size: 1.6rem;
  }

  .registro-texto h2 .capital {
    font-size: 2.2rem;
  }

  .registro-texto p {
    font-size: 1rem;
  }

  .registro-formulario {
    width: 100%;
  }
}

/* Footer blanco */
.footer-blanco {
  background-color: white;
  text-align: center;
  padding: 20px 0;
  font-family: var(--fuente-principal);
  font-size: 0.9rem;
  color: #000;
}
/* Ajustes responsivos */
@media (max-width: 768px) {
  .aprendizaje-section h2 {
    font-size: 1.6rem;
  }

  .lista-aprendizaje li {
    font-size: 1rem;
  }
    .speaker {
    flex-direction: column;
    align-items: center;
  }
  .speakers-section {
  padding: 40px 20px;
  }

  .speaker.reverse {
    flex-direction: column;
  }

  .speaker-img img {
    width: 250px;
    height: 250px;
  }

  .speaker-info {
    width: 100%;
    margin: 0;
    padding: 20px;
    text-align: left;
    border-radius: 0;
    background: var(--color-masnegro-transparente);
    box-sizing: border-box;
    text-align: center;
  }

  .speaker-info p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
  }

  .speaker-info .decoracion {
    top: -10px;
    right: 10px;
  }

  .mensaje-final {
    font-size: 1.1rem;
  }
   .formulario-box {
    width: 100%;
    max-width: none;
    border-radius: 0;
    padding: 30px 20px;
  }

  .formulario-registro input,
  .formulario-registro button {
    width: 100%;
  }

  .registro-texto {
    font-size: 1rem;
    padding: 0 10px;
  }
  .seccion-ubicacion h2 {
    font-size: 1.5rem;
  }
.mapa-responsive {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 80%;               /* 👈 Reduce el ancho */
  max-width: 700px;         /* 👈 Opcional: máximo ancho para pantallas grandes */
  margin: 20px auto;        /* 👈 Centra horizontalmente */
  padding-top: 30%;         /* Altura proporcional */
}
  .seccion-ubicacion .fecha {
    font-size: 2rem;
  }

  .info-modalidad {
    font-size: 1rem;
    flex-direction: column;
    gap: 5px;
  }

  .boton-reserva {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .lista-aprendizaje li {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }

  .lista-aprendizaje li span {
    font-size: 1.2rem;
    min-width: 28px;
  }

  .mensaje-final {
    font-size: 1rem;
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .countdown-section h2 {
    font-size: 1.5rem;
  }

  .countdown {
    gap: 20px;
  }

  .countdown div {
    font-size: 2.2rem;
  }

  .countdown p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .countdown-section h2 {
    font-size: 1.1rem;
  }

  .countdown {
    gap: 15px;
  }

  .countdown div {
    font-size: 2rem;
  }
}


@media (max-width: 768px) {
    .h1{
        margin-bottom: 0px;
    }
    .ubicacion{
        margin-bottom: 0px;
        font-size: .8rem;
    }
    h2{
        font-size: 1.6rem;
    }
  .content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra horizontalmente los hijos */
    justify-content: center;
    margin-right: 0;
  }

  .formulario {
    width: 100%;
    max-width: 500px;
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Esto asegura que los inputs estén centrados */
    gap: 0;
  }

  .formulario input,
  .boton {
    width: 100%;
    margin: 10px 0;
  }

  
.background {
  background-image: url('/assets/images/fondocelularexpert.png');
}

.overlay {
  background-color: var(--color-masnegro-transparente);
}

.boton{
  font-size: 1rem;
}
}

