@font-face {
    font-family: 'Ambit_Bold';
    src:
        url('../fonts/Ambit_Bold.woff2') format('woff2');    
}
@font-face {
    font-family: 'Ambit_SemiBold';
    src:
        url('../fonts/Ambit_SemiBold.woff2') format('woff2');    
}
@font-face {
    font-family: 'Ambit_Regular';
    src:
        url('../fonts/Ambit_Regular.woff2') format('woff2');    
}

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

body {
    font-family: 'Ambit_Bold', Arial, sans-serif; 
    background-color: #000;
    color: #fff;
}

.landing-container {
    max-width: 100%; /* Centrado y acotado como en la imagen de referencia */
    margin: 0 auto;
    position: relative;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- HEADER --- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-image: url('../img/bg-header.jpg'); /* Tu fondo del header */
    background-size: cover;
    background-position: center;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo-left img { min-height: 60px; max-height: 60px; }
.header-logo-center img { min-height: 80px; max-height: 80px; }
.header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    margin-left: 15px;
}

/* --- HERO SECTION --- */
.hero-section {
    background-image: url('../img/bg-publico-estadio.jpg'); /* Tu fondo del estadio */
    background-size: cover;
    background-position: center;
    position: relative;
    font-family: 'Ambit_SemiBold', Arial, sans-serif; 
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

.hero-main-logo {
    width: 347px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.hero-dates {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    margin-bottom: 30px;    
}

.hero-info-box {   
  background-image: url('../img/bg-txt-agua.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.hero-description {
    font-family: 'Ambit_SemiBold', Arial, sans-serif; 
    font-size: 39px;
    line-height: 1.4;
    margin-bottom: 0px;
    font-weight: bold;
    margin: 0 auto 0px auto;
    justify-content: justify;
}

.hero-details {
  font-family: 'Ambit_Bold', Arial, sans-serif; 
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* --- FEATURES SECTION --- */
.features-section {
  position: relative;
    background-color: #fff;
    color: #e50695;
    padding: 40px 20px;
    overflow: hidden;
}

.features-container {
    max-width: 650px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* Inversión para el orden en zigzag */
.feature-row.row-reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 0 0 45%;
}

.feature-image img {
    border-radius: 15px; /* Esquinas redondeadas de las fotos */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.feature-items {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.features-section::before {
  content: "";
    position: absolute;    
    /* CRÍTICO: Necesitan un tamaño para que el SVG se pueda renderizar */
    width: 474px;       /* Ajusta el ancho que quieras que tenga tu balón */
    height: 454px;      /* Ajusta el alto */    
    background-image: url('../img/before.svg'); 
    background-repeat: no-repeat;  
    background-size: contain; /* Asegura que el SVG se adapte al tamaño sin cortarse */
}

.features-section::after {
  content: "";
    position: absolute;    
    /* CRÍTICO: Necesitan un tamaño para que el SVG se pueda renderizar */
    width: 474px;       /* Ajusta el ancho que quieras que tenga tu balón */
    height: 472px;      /* Ajusta el alto */    
    background-image: url('../img/after.svg'); 
    background-repeat: no-repeat;  
    background-size: contain; /* Asegura que el SVG se adapte al tamaño sin cortarse */
}

.features-section::before {
  right: -150px;
  top: 30px;
}

.features-section::after {
  left: -80px;
  bottom: 20px;
}

.item-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    
    object-fit: contain;
}

.item-row h3 {
    font-family: 'Ambit_Bold', Arial, sans-serif; 
    font-size: 24px;    
    letter-spacing: 0.5px;
}

/* --- INFO REGISTER BAR --- */
.info-register-bar {
  font-family: 'Ambit_Regular', Arial, sans-serif; 
    background-image: url('../img/bg-barra-azul.jpg'); /* Tu fondo de barra rosa */
    background-size: cover;
    background-position: center;
    padding: 35px 20px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
}

/* --- CTA SECTION --- */
.cta-section {
    background-image: url('../img/bg-gradas-rosas.jpg'); /* Tu fondo de las butacas rosas */
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    height: 622px;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;    
    width: 100%;
    max-width: 400px;    
    height: 54px;
    padding: 18px 20px 10px 20px;
    border-radius: 25px; 
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    color: #e50695;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    line-height: 1;
    margin-top: 20px;
}

.btn:hover {
    transform: scale(1.02);
}

.btn-secondary {
  font-family: 'Ambit_SemiBold', Arial, sans-serif; 
    background-color: #fff;    
    margin-top: 40px;
}

.btn-primary {
  font-family: 'Ambit_Bold', Arial, sans-serif; 
    background-color: #fff;    
    font-size: 30px; /* El de REGÍSTRATE es más grande */
    letter-spacing: 1px;
}

.cta-footer-brand {
  margin-top: 120px;
}

.cta-footer-brand img {
    max-width: 600px;
    margin: 0 auto 60px auto;    
}

.cta-disclaimer {
  font-family: 'Ambit_Bold', Arial, sans-serif; 
    font-size: 24px;
    color: #fff;    
    margin: 0 auto;
}

/* --- FOOTER --- */
/* --- FOOTER --- */
.main-footer {  
    background-image: url('../img/bg-fondo-rosa-footer.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 20px;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
}

.footer-logo img {     
    max-width: 350px; /* Ajusta el tamaño del logo en el footer */
    display: block;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    font-family: 'Ambit_SemiBold', Arial, sans-serif; /* Usamos tu fuente oficial */
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-links a.faq, .header-nav a.faq  {
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 5px 15px;
}

/* --- RESPONSIVE DESIGN (Celulares) --- */
@media (max-width: 1080px) {
    .hero-description {
    font-family: 'Ambit_SemiBold', Arial, sans-serif; 
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 0px;
    font-weight: bold;
    margin: 0 auto 0px auto;
    justify-content: justify;
}
    .feature-row, .feature-row.row-reverse {
        flex-direction: column;
        gap: 20px;
    }
    .feature-image, .feature-items {
        flex: 0 0 100%;
        width: 100%;
    }
    .main-header, .main-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .header-nav margin-left, .footer-links a {
        margin: 5px 10px;
        display: inline-block;
    }
}

@media (max-width: 600px) {
    .hero-description {
    font-family: 'Ambit_SemiBold', Arial, sans-serif; 
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 0px;
    font-weight: bold;
    margin: 0 auto 0px auto;
    justify-content: justify;
}

.hero-main-logo {
    width: 280px;
    margin-top: 80px;
    margin-bottom: 80px;
}
    .feature-row, .feature-row.row-reverse {
        flex-direction: column;
        gap: 20px;
    }
    .feature-image, .feature-items {
        flex: 0 0 100%;
        width: 100%;
    }
    .main-header, .main-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .header-nav margin-left, .footer-links a {
        margin: 5px 10px;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .hero-description {
    font-family: 'Ambit_SemiBold', Arial, sans-serif; 
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 0px;
    font-weight: bold;
    margin: 0 auto 0px auto;
    justify-content: justify;
}

.hero-main-logo {
    width: 280px;
    margin-top: 80px;
    margin-bottom: 80px;
}
    .feature-row, .feature-row.row-reverse {
        flex-direction: column;
        gap: 20px;
    }
    .feature-image, .feature-items {
        flex: 0 0 100%;
        width: 100%;
    }
    .main-header, .main-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .header-nav margin-left, .footer-links a {
        margin: 5px 10px;
        display: inline-block;
    }
}