/* =========================
   SECCIONES GENERALES
========================= */
.section {
  padding: 100px 0;
  position: relative;
}

/* Secciones con imagen de fondo */
.section-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Secciones con fondo degradado o sólido */
.section-gradient {
  background: linear-gradient(135deg, #5a2d82, #8e44ad);
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}


/* =========================
   HEADER / MENÚ
========================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-content {
  height: 80px;
}

/* Logo */
.header-logo img {
  max-height: 55px;
}

/* Navegación desktop */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #8e44ad;
}

/* Botón hamburguesa (oculto en desktop) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Menú móvil */
.mobile-nav {
  display: none;
  background-color: #ffffff;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  height: calc(100vh - 60px);
}

.mobile-nav ul {
display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.mobile-nav li {
  margin: 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

/* Estado activo */
.mobile-nav.active {
  display: block;
}


/* =========================
HERO EVENTO
========================= */
.hero-evento {
    position: relative;
    height: 90vh;
    background: url('../img/bg-evento.png') center/cover no-repeat;
    color: white;
    font-family: Arial, sans-serif;
}

/* Logo  */
.logo-amexme {
    position: absolute;
    padding-left: 20px;
}

.logo-amexme img {
    height: 80px;
}

/* Link  */
.link-sitio {
    position: absolute;
    bottom: 40px;
    left: 80px;
    font-size: 25px;
}

.link-sitio a {
    color: white;
    text-decoration: none;
}

.link-sitio a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Fecha  */
.fecha-evento {
    position: absolute;
    bottom: 2px;
    right: 80px;
    font-size: 45px;
    font-weight: bold;
}

/* Contenedor central */
.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Caja semi transparente */
.hero-box {
    display: flex;
    flex-direction: column;
    gap: 0px;
    background: rgba(255, 255, 255, 0.60);
    padding: 20px;
    border-radius: 10px;
    color: #000;
    max-width: 800px;
}

/* Logo evento */
.evento-logo {
  display: flex;
  align-items: center;
}

.evento-logo img {
  width: 250px;
  height: auto;
}

/* Texto logo */
.evento-texto-logo {
  line-height: 1.1;
  color: #002376;
}

.evento-linea-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.evento-foro {
  font-size: 3rem;
}

.evento-edicion {
  font-size: 1.5rem;
  font-weight: 500;
}

.evento-linea-2 {
  font-size: 3rem;
}

.evento-linea-2 span {
  font-weight: 400;
}

.slogan {
    font-size: 1.5rem;
    font-weight: 400;
}

.slogan strong {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Centrar contenido inferior */
.hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Countdown hero */
.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.time-box {
  backdrop-filter: blur(8px);
  background: rgba(0, 35, 118, 0.85);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  min-width: 75px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.time-box span {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
}

.time-box small {
  font-size: 0.8rem;
}

/* Botones hero */
.hero-cta {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-hero {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primario {
  background-color: #5a2d82;
  color: #fff;
}

.btn-primario:hover {
  background-color: #8e44ad;
  transform: translateY(-2px);
}

.btn-secundario {
  background-color: transparent;
  border: 2px solid #5a2d82;
  color: #5a2d82;
}

.btn-secundario:hover {
  background-color: #5a2d82;
  color: #fff;
}


/* =========================
SECCIÓN BASE
========================= */
.seccion-base {
    position: relative;
    padding: 80px 80px;
    background-color: #ffffff;
    overflow: hidden;
    padding-bottom: 140px;
}

/* Cintillo */
.seccion-base::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 18vh;
    background: url('../img/cintillo.png') top/cover no-repeat;
}

/* Header sección */
.seccion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.seccion-header h2 {
    font-size: 2.5rem;
    color: #002376;
}

.seccion-header p {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #002376;
    margin-bottom: 0px;
    font-style: italic;

}

.seccion-header img {
    height: 50px;
}

/* Header invertido */
.header-invertido {
    flex-direction: row;
    justify-content: space-between;
}

.header-invertido img {
    order: 1;
}

.header-invertido h2 {
    order: 2;
}

/* Texto */
.seccion-contenido {
    margin-bottom: 40px;
    text-align: justify;
}

.seccion-contenido p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

/* Imagen + Cita */
.seccion-media {
    display: flex;
    align-items: center;
    gap: 80px;
}

.seccion-media img {
    width: 40%;
    border-radius: 10px;
}

/* Cita */
.seccion-cita {
    font-size: 1.8rem;
    font-style: oblique;
    color: #002376;
    position: relative;
    padding-left: 20px;
}

/* Línea tipo cita */
.seccion-cita::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #002376;
}


/* =========================
SECCIÓN INFO
========================= */
.info-top {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 70px;
}

/* Columnas */
.info-col {
    width: 50%;
}

/* Izquierda */
.info-left {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Datos */
.info-datos {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Item dato */
.dato-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Iconos datos */
.dato-item img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* Texto */
.dato-item span {
    font-size: 1.1rem;
    color: #333;
}

/* Fecha + hora misma línea */
.datos-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Beneficios evento */
.info-beneficios {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Item */
.beneficio-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f4a205;
}

/* Iconos */
.beneficio-item img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Texto */
.beneficio-item span {
    font-size: 1.15rem;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
}

.info-col h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #002376;
}

.info-col p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Texto inversión */
.info-inversion-texto {
    text-align: justify;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

/* Contenedor pases */
.pases {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* Card */
.pase {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 14px;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

/* Hover card */
.pase:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #e8d7f5;
}

/* Pase destacado */
.pase-destacado {
    border: 2px solid #f4a205;
}

/* Badge */
.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f4a205;
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Titulo */
.precio-titulo {
    display: block;
    font-size: 1.6rem;
    color: #002376;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Beneficios */
.beneficios-pase {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Item */
.beneficio-pase {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Check */
.beneficio-pase img {
    width: 18px;
    height: 18px;
}

/* Texto */
.beneficio-pase span {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.4;
}

.info-bottom h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #002376;
}

/* Precio */
.precio {
    font-size: 1.5rem;
    color: #f4a205;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

/* Botón */
.btn-pase {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #5a2d82;
    border:#5a2d82;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    text-align: center;
    font-weight: 600;
}

.btn-pase:hover {
    background-color: #8e44ad;
    border: #8e44ad;
    transform: translateY(-2px);
}


/* =========================
   MODALS
========================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,8,15,.72);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

    z-index: 99999;
}

.modal-overlay.active{
    opacity: 1;
    visibility: visible;
}

.speaker-modal{
    width: 80%;
    max-height: 80vh;

    background: #fff;
    border-radius: 32px;

    overflow: auto;

    position: relative;

    transform: translateY(30px);
    transition: .35s ease;
}

.modal-overlay.active .speaker-modal{
    transform: translateY(0);
}

.close-modal{
    position: absolute;
    top: 22px;
    right: 22px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #f2f2f2;

    font-size: 1.5rem;
    cursor: pointer;

    z-index: 5;
}

.modal-content{
    display: grid;
    justify-items: center;
    margin-top: 20px;
}

/* Imagen */
.modal-image{
    width: 170px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f3edf9;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
    text-align: center;
}

.modal-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 20px;
}

.modal-info h2 {
    font-size: 1.7rem;
    color: #002376;
    margin-bottom: 15px;
    text-align: center;
}

.modal-info h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
    font-size: 1.4rem;
}

.modal-info p{
    line-height: 1.9;
    color: #444;
    padding: 0px 40px 40px 40px;
    text-align: justify;
    font-size: 1.1rem;
}

.modal-video{
    text-align: center;
}

.modal-video video{
    height: 50vh;
    border-radius: 18px;
}

/* Proximamente */

.speaker-modal.small{
    max-width: 560px;
}

/* Modal Formulario */
.modal-content-form {
    justify-items: normal;
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
}

.form-msg {
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
}

.modal-dialog-form {
  max-width: 720px;
}

.modal-form-label {
    display: flex; 
    flex-direction: column; 
    margin-bottom: 15px; 
    font-size: 1.2rem; 
    color: #002376;
}

.modal-form-input {
    padding: 10px; 
    border-radius: 4px; 
    border: 1px solid #ccc;
}

.modal-title {
    color: #002376; 
    text-align: center;
}

/* Modal Form Responsive Fix */
.modal-body {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.modal-form {
    width: 100%;
}

/* Labels fluidos */
.modal-form label {
    width: 100%;
    box-sizing: border-box;
}

/* Inputs y select */
.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
}

/* Evitar desbordamiento horizontal */
.modal-dialog-form {
    width: calc(100% - 30px);
    margin: 20px auto;
}

/* Botón cerrar */
.modal-header .btn-close {
    flex-shrink: 0;
}

/* =========================
SECCIÓN FLYER
========================= */
.seccion-flyer {
    padding-bottom: 140px;
}

/* Contenido */
.flyer-contenido {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Texto */
.flyer-texto {
    width: 100%;
}

.flyer-texto p {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #002376;
    padding-bottom: 40px;
}

.flyer-texto strong {
    font-weight: 700;
    font-style: normal;
}

.flyer-texto::before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #f4a205;
    margin-bottom: 20px;
}

/* Flyer pases */
.flyer-pases {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

/* Card */
.flyer-pase {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 14px;
    transition: 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

/* Hover card */
.flyer-pase:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #e8d7f5;
}

/* Pase destacado */
.flyer-pase-destacado {
    border: 2px solid #f4a205;
}

/* Badge */
.flyer-badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f4a205;
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Imagen */
.flyer-ponente-img {
    width: 170px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f3edf9;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
    text-align: center;
}

.flyer-ponente-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flyer-ponente-img.mystery img {
    filter: blur(6px) grayscale(25%);
    transform: scale(1.08);
}

.flyer-pase-img {
    display: grid;
    justify-content: center;
}

/* Nombre */
.flyer-nombre {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    color: #002376;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Beneficios */
.flyer-titulos {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 20px;
}

/* Item */
.flyer-titulo {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Texto */
.flyer-titulo span {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.4;
    text-align: center;
}

/* Precio */
.flyer-conferencia {
    font-size: 1.2rem;
    color: #002376;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
    font-style: italic;
    text-align: center;
}

.flyer-conferencia strong {
    font-weight: 600;
}

/* Botón */
.flyer-btn-pase {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #5a2d82;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    text-align: center;
    font-weight: 600;
}

.flyer-btn-pase:hover {
    background-color: #8e44ad;
    transform: translateY(-2px);
}


/* =========================
   CARRUSEL PATROCINADORES
========================= */
.sponsors-section {
    margin-top: 90px;
}

.sponsors-header {
    text-align: center;
    margin-bottom: 40px;
}

.sponsors-header h3 {
    font-size: 2rem;
    color: #002376;
    margin-bottom: 10px;
}

.sponsors-header p {
    color: #666;
    font-size: 1.15rem;
}

.sponsors-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sponsors-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.sponsors-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.sponsor-item {
    min-width: 25vw;
    height: 20vh;

    background: #fff;
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #eee;

    transition: .5s ease;
}

.sponsor-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.sponsor-item img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    transition: .3s ease;
}

.sponsor-item:hover img {
    filter: grayscale(100%);
    opacity: 1;
}

/* Flechas */
.carousel-btn {
    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: #f4a205;
    color: #fff;

    font-size: 1.4rem;

    cursor: pointer;

    transition: .3s ease;

    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #ffbc3f;
    transform: scale(1.08);
}


/* =========================
SECCIÓN CONTACTO
========================= */
.seccion-final {
    position: relative;
}

/* Top imagen */
.final-top {
    height: 50vh;
    background: url('../img/fondo-contacto.png') Bottom/cover no-repeat;
    position: relative;
}

.final-header-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
    padding: 40px 80px;
}

.final-header-logos img {
    height: 50px;
}

.logo-final {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
}

/* Contenido */
.final-contenido {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

/* Titulo */
.final-contenido h2 {
    font-size: 2rem;
    color: #002376;
    margin-bottom: 30px;
}

/* Contacto y redes */
.final-contacto {
    display: flex;
    justify-content: space-evenly;
    gap: 30px;
    padding: 10px 80px 50px 80px;

}

.final-redes {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Item */
.final-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #002376;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* Hover */
.final-item:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* Icono */
.final-icono {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* svg */
.final-icono img {
    width: 45px;
    height: 45px;
}

/* svg redes*/
.final-icono-redes img {
    width: 32px;
    height: 32px;
}

.final-texto {
  color: #333;
  font-size: 1rem;
  text-align: left;
}

.final-texto strong{
  color: #555;
  font-weight: 600;
  font-size: 1.5rem;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background-color: #2b0d2f;
  color: #ffffff;
  padding-top: 60px;
}

/* Contenido principal */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}

/* Columnas */
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Logos */
.footer-logos {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.footer-logos img {
  display: block;
  margin-bottom: 20px;
  height: 65px;
  width: auto;
}

/* Columna descriptiva */
.footer-about p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 260px;
}

/* Contacto */
.footer-contacto p {
  margin-bottom: 15px;
}

/* Redes */
.footer-social a {
  display: inline-block;
  margin-right: 12px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Parte legal */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: underline;
}



/* ==========================
BOOSTRAP RESPONSIVE MOVIL
=========================== */
@media (max-width: 768px) {

/*  HEADER - RESPONSIVE */
  .header-content {
    height: 60px;
  }

/* Mostrar hamburguesa */
  .menu-toggle {
    display: block;
  }

/* Ocultar menú normal */
    .main-nav {
    display: none;
    background-color: #ffffff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
  }

/* Estado activo del menú */
  .main-nav.active {
    display: block;
  }


/* HERO EVENTO - RESPONSIVE */
.hero-box {
        flex-direction: column;
        text-align: left;
        max-width: 350px;
        padding: 10px;
    }

/* Logo amexme centrado */
.logo-amexme {
    display: none;
}

/* Link centrado */
.link-sitio {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 18px;
}

/* Fecha centrada */
.fecha-evento {
    position: absolute;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
    font-size: 28px;
    line-height: 30px;
    min-width: 180px;
}

.evento-logo img {
  max-width: 70px;
  height: auto;
  }

  .evento-foro {
  font-size: 2rem;
}

.evento-edicion {
  font-size: 1.2rem;
  font-weight: 600;
}

.evento-linea-2 {
  font-size: 2rem;
}

.evento-linea-2 span {
  font-weight: 400;
}

.slogan {
    font-size: 1.2rem;
    font-weight: 400;
}

.countdown {
    flex-wrap: wrap;
    gap: 10px;
  }

  .time-box {
    min-width: 60px;
    padding: 8px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    text-align: center;
  }

/* SECCIÓN BASE - RESPONSIVE */
.seccion-base{
  padding: 40px;
}

/* Cintillo decorativo */
.seccion-base::after {
    height: 10vh;
}

/* Seccion Header */
.seccion-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .seccion-header h2 {
        font-size: 2rem;
    }

    .seccion-header img {
      display: none;
    }

    .seccion-contenido {
        text-align: justify;
    }

    .seccion-media {
        flex-direction: column;
        gap: 20px;
    }

    .seccion-media img {
        width: 100%;
    }

    .seccion-cita {
        width: 100%;
        font-size: 1.2rem;
        text-align: center;
        padding-left: 0;
    }

    .seccion-cita::before {
        display: none;
    }


/* SECCIÓN INFO - RESPONSIVE */
.info-top {
    flex-direction: column;
    gap: 50px;
}

.info-col {
    width: 100%;
    align-items: center;
}

.info-left {
    gap: 25px;
}

.info-datos {
    gap: 14px;
}

.dato-item span {
    font-size: 1rem;
}

.datos-row {
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.info-beneficios {
    gap: 18px;
}

.beneficio-item {
    gap: 14px;
}

.beneficio-item img {
    width: 30px;
    height: 30px;
}

.beneficio-item span {
    font-size: 1rem;
}

.info-bottom h2 {
    font-size: 1.2rem;
}

.info-inversion-texto {
    text-align: center;
}


.pases {
    flex-direction: column;
}

.pase {
    width: 100%;
}


/* MODAL - RESPONSIVE */
.speaker-modal {
    width: 100%;
    max-height: 95vh;
}

.modal-video video {
    max-width: 75vw;
    height: auto;
}

.modal-info {
    max-width: 75vw;
    padding: 0;
}

.modal-info p {
    text-align: center;
    padding: 10px;
}

/*  Modal Formulario */
  .modal-dialog {
    margin: 20px;
  }

    .modal-dialog-form {
        max-width: 95%;
    }

    .modal-title {
        font-size: 1.5rem !important;
        padding-right: 30px;
        line-height: 1.3;
    }

    .modal-body {
        padding: 18px;
    }

    .modal-form label {
        font-size: 1rem !important;
    }

    .modal-form input,
    .modal-form select {
        font-size: 1rem !important;
        padding: 12px !important;
    }


/* SECCIÓN FLYER - RESPONSIVE */
    .flyer-contenido {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .flyer-img,
    .flyer-texto {
        width: 100%;
    }

    .flyer-img img{
      height: 100%;
      width: 100%;
    }

    .flyer-texto p {
        font-size: 1.3rem;
    }

    /* Ponentes */
    .flyer-pases {
    flex-direction: column;
    }

    .flyer-pase {
    width: 100%;
    }


/* CARRUSEL PATROCINADORES - RESPONSIVE */
    .sponsors-carousel {
        gap: 10px;
    }

    .sponsor-item {
        min-width: 40vw;
        height: 15vh;
    }

    .sponsor-item img {
        max-height: 70%;
    }

    .carousel-btn {
        display: none;
    }

    .sponsors-header h3 {
        font-size: 1.5rem;
    }


  /* SECCION CONTACTO - RESPONSIVE */
      .final-top {
        height: 40vh;
    }

    .final-header-logos {
    justify-content: center;
    padding: 80px;
    }

    .final-contacto {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 10px;
        margin-bottom: 30px;
    }

    .final-redes {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .final-contenido h2 {
        font-size: 1.5rem;
    }

    .final-icono-redes img {
    width: 20px;
    height: 20px;
    }

    .final-texto {
      color: #333;
      font-size: 0.95rem;
      text-align: left;
    } 

    .final-texto strong{
    font-size: 1.3rem;
    }


/*  FOOTER - RESPONSIVE */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-about p{
    max-width: none;
  }

  .footer-logos img {
    margin: 0 auto 15px;
  }

  .footer-social a {
    margin: 0 8px;
  }
	
}



/* ==========================
BOOSTRAP RESPONSIVE TABLET
=========================== */
@media (min-width: 640PX) and (max-width: 768px) {

/* HERO EVENTO - RESPONSIVE TABLET */
.hero-box {
        max-width: 520px;
    }


/* SECCIÓN BASE - RESPONSIVE TABLET */
  /* Header en una sola línea */
    .seccion-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .seccion-header img {
      display: block;  
      height: 45px;
    }

    /* Imagen al 80% */
    .seccion-media {
        flex-direction: column;
        align-items: center;
    }

    .seccion-media img {
        width: 80%;
    }

    /* Cita debajo centrada */
    .seccion-cita {
        width: 80%;
        text-align: center;
        padding-left: 5px;
    }

    .seccion-cita::before {
        display: flex;
    }


/* SECCION INFO - RESPONSIVE TABLET */
.info-top {
        flex-direction: row;
    }

    .info-col {
        width: 100%;
    }

    .pases {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pase {
        width: 45%;
    }


/* SECCIÓN FLYER - RESPONSIVE TABLET */
    .flyer-contenido {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .flyer-img {
        width: 80%;
    }

    .flyer-texto {
        width: 100%;
        text-align: center;
    }

    .flyer-texto p {
        font-size: 1.5rem;
    }

/* Ponentes */
    .flyer-pases {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    }

    .flyer-pase {
    width: 45%;
    }


/* CARRUSEL PATROCINIOS - RESPONSIVE TABLET */
    .carousel-btn {
        display: block;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }


/* MODAL - RESPONSIVE TABLET */
    .speaker-modal {
    width: 80%;
    }

    .modal-info {
    max-width: max-content;
    padding: 10px;
    }


/* SECCION FINAL CONTACTO -  RESPONSIVE TABLET*/
    .final-header-logos {
    padding: 20px;
    justify-content: flex-end;
    }

/* Contacto y redes */
    .final-contacto {
    flex-direction: row;
    padding: 10px;
    margin-bottom: 40px;
    }

    .final-redes {
  flex-direction: row;
    }

}


/* ==========================
BOOSTRAP RESPONSIVE MOVIL CHICO
=========================== */
@media (max-width: 355px) {

/* HERO EVENT - RESPONSIVE CHICO */
    .hero-box {
        max-width: 300px;
    }

/* Fecha centrada */
    .fecha-evento {
    bottom: 5px;
    }

    .evento-logo img {
  max-width: 70px;
  height: auto;
    }

    .evento-foro {
  font-size: 1.5rem;
    }

    .evento-edicion {
  font-size: 1rem;
  font-weight: 400;
    }

    .evento-linea-2 {
  font-size: 1.5rem;
    }

    .evento-linea-2 span {
  font-weight: 400;
    }

    .slogan {
    font-size: 1rem;
    font-weight: 400;
    }

    .countdown {
    flex-wrap: wrap;
    gap: 10px;
    }

    .time-box {
    min-width: 60px;
    padding: 8px;
    }

    .hero-cta {
    flex-direction: column;
    }

    .btn-hero {
    width: 100%;
    text-align: center;
    }

/* MODAL FORMULARIO - RESPONSIVE CHICO */
    .modal-title {
        font-size: 1rem !important;
    }

    .modal-form label {
        font-size: .9rem !important;
    }

    .modal-form input,
    .modal-form select {
        font-size: .9rem !important;
        padding: 9px !important;
    }


}
