/* Importar tipografías de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@400;700;900&family=Lato:wght@300;400;600;700&display=swap');

/* --------------------------------------------> GENERAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 48px 24px;
}

/* --------------------------------------------> TYPOGRAPHY */

.title {
    font-family: 'Antonio', sans-serif;
    font-size: clamp(56px, 15vw, 80px);
    font-weight: 900;
    color: #C8102E;
    line-height: 0.9;
    letter-spacing: -2px;
    text-transform: uppercase;
}
.title-mini{
    font-size:clamp(24px, 10vw, 32px); 
}

.title-line {
    display: flex;
    justify-content: center;
}

.subtitle {
    font-family: 'Lato', sans-serif;
    font-size: clamp(20px, 5vw, 26px);
    font-weight: 400;
    color: #000;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 400px;
}

.step-number{
    color:  #BE150E;
    font-family: var(--Font-Family-Family, Lato);
    font-size: var(--Font-Size-4xl, 48px);
    font-style: normal;
    font-weight: var(--Font-Weight-Bold, 700);
    line-height: var(--Font-Line-height-lg, 40px); /* 83.333% */
    }

.step-title{
    color: #000;
    font-family: var(--Font-Family-Family, Lato);
    font-size: var(--Font-Size-lg, 20px);
    font-style: normal;
    font-weight: var(--Font-Weight-Bold, 700);
    line-height: var(--Font-Size-xl, 24px); /* 120% */
    text-transform: uppercase;
}

.step-description{
    color: #000;
    font-family: var(--Font-Family-Family, Lato);
    font-size: var(--Font-Size-sm, 16px);
    font-style: normal;
    font-weight: var(--Font-Weight-Regular, 400);
    line-height: var(--Font-Line-height-sm, 24px); /* 150% */
    align-self: stretch;
    }

.step-description .nota {
    margin-top: 12px;
    padding: 12px;
    background-color: #F3F3F3;
    border-radius: 8px;
    font-size: 14px;
    }
.headline{
    color:  #353535;
    text-align: left;
    font-family: 'Antonio', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: Auto

} 

.description {
    font-size: 12px;
    font-weight: 300;
    color: #8A8989;
    text-align: center;
    line-height: 2;
    letter-spacing: 0px;
    text-transform: uppercase;
}

/* --------------------------------------------> LAYOUT */


.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    max-height: 900px;
    margin: 0px auto;
    position:relative;
    flex-wrap: nowrap;
}

/* ----------------->HEADER*/
.header {
    padding: 30px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    
    }

.logo-container img{
    height: 100%;
}

.logo-primary{
    height: 40px;
}

.logo-secondary{
    height: 44px;
}

.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    position: relative;
    align-content: center;
}

.stadium-image {
    position:relative;
    text-align: right;
    width: 100%;
    max-width: 450px;
    height: auto;
    opacity: 1;
    z-index: 0;
}

.stadium-image img {
    object-fit: contain;
    object-position: center;
}

/* ----------------->CONTENT*/
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    gap: 40px;
    display: flex;
    flex-direction: column;
    width: 100%;

    
}

.main-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:40px;
    align-self: stretch;
    z-index: 1;
}
/* ----------------->FOOTER*/
.footer {
    padding: 20px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width:100%;
}
.navegacion-manual{
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-between;
    justify-items: center;
    gap: 30px;
    width:100%;
    max-width: 400px;
}



/* --------------------------------------------> COMPONENTS */

/* ----------------->BUTTON*/

.cta-button {
    background-color: #353535;
    color: white;
    border: none;
    padding: 8px 16px 8px 8px;
    border-radius: 30px;
    font-size: 14px;
    line-height: 0%;
    font-family: 'Antonio', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
   
}

.cta-button img{
    color: currentColor;
}

.cta-button:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button-prev{
    background-color:F3F3F3;
    color: #000;
    border: none;
    display: flex;
    padding:8px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;

}



.options-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch; 
}

.option-button{
        border-radius: 8px;
        border: none;
        background-color:F3F3F3;
        color: #000;
        display: flex;
        padding:12px 24px;
        justify-content: space-between;
        align-items: center;
        gap: 4px;
        align-self: stretch;
        text-decoration: none;

        
    }  
    .option-button-image{
        border-radius: 8px;
        border: none;
        background-color:F3F3F3;
        color: #000;
        display: flex;
        padding: 24px 24px;
        justify-content: space-between;
        align-items: center;
        gap: auto;
        align-self: stretch;
        text-decoration: none;
    }

.option-button-text{
    border-radius: 8px;
    border: none;
    background-color: #F3F3F3;
    display: flex;
    padding: 20px 24px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-button-text:hover {
    background-color: #E5E5E5;
    transform: translateY(-2px);
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    flex: 1;
    position: relative;
    padding-left: 15%;
}

.option-text-main {
    font-family: 'Antonio', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #BE150E;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 4px;
}

.option-text-sub {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-top: -4px;
    padding-left: 50px;
    letter-spacing: 0.5px;
    display: inline-block;
    white-space: nowrap;
    overflow: visible;
}
.option-text{
            color: #000;
            text-align: left;
            font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 40px; /* 250% */
            width: 100%;
        }
.option-chip{
        display: flex;
        flex-direction: row;
        padding: 8px 16px 8px 8px;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background-color:F3F3F3;
        color: #444;
        border-radius: 128px;        
        border:none;
        width: auto;
        }
.option-back-header{
    display: flex;
    align-content: center;
    justify-content: right;
    width: 100%;

}
.option-back-header img {
    height: 24px;
}
 
.back-header{
    align-content: center;
    justify-content: left;
    width: 100%;
    height: 40px;
    min-height: 55px;
    display: flex;
    padding: 8px;
}

.button-back-header{
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0;
}

.back-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    position: relative;
}

.back-header-text-main {
    font-family: 'Antonio', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #BE150E;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 2px;
}

.back-header-text-sub {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-top: -2px;
    padding-left: 30px;
    letter-spacing: 0.3px;
    display: inline-block;
    white-space: nowrap;
    overflow: visible;
}

.lion-background {
    position: absolute;
    top: calc(44px + env(safe-area-inset-top, 0px));
    left: 0px;
    z-index: 0;
    height: 30%;
}

.step-header{
    display: flex;
    flex-direction: column;
}

.step-explanation{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    max-width: 400px;
    width: 100%;
}

img.mi-svg {
  filter: invert(1) hue-rotate(180deg) saturate(2);
}

.img-container{
    align-content: center;
    justify-content: center;
    display: flex;
    width: 100%;
    max-width: 400px;
    height: 385px;
    margin: 0 auto;
    flex-shrink: 0;
}
.img-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.icon{
    width: 24px;
    height: 24px;
    fill: currentColor;
}
/* Estructura base de Swiper */
.swiper {
  width: 100%;
  height: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  transition-timing-function: ease-in-out;
  align-items: flex-start;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 24px;
}


/* Media Queries */

@media (max-width: 360px) {
    body{
       padding: 20px 16px;
    }
    .header{
        padding: 12px 0px;
        gap: 12px;
    }
    .logo-primary{
        height: 32px;
    }
    .img-container{
        height: 320px;
        max-width: 300px;
    }
    .step-description{
        font-size: 15px;
        line-height: 22px;
    }
    .step-description .nota {
        font-size: 14px;
        padding: 10px;
        line-height: 20px;
    }
    .step-title{
        font-size: 18px;
        line-height: 22px;
    }
    .step-number{
        font-size: 40px;
        line-height: 36px;
    }
    .swiper-slide {
        gap: 16px;
    }
    .navegacion-manual{
        padding: 12px 0 0;
        gap: 16px;
    }
    .step-explanation{
        gap: 8px;
    }
    .option-text-main {
        font-size: 36px;
        padding-left: 3px;
        letter-spacing: 0.8px;
    }
    .option-text-sub {
        font-size: 15px;
        margin-top: -3px;
        padding-left: 35px;
        letter-spacing: 0.4px;
        white-space: nowrap;
        overflow: visible;
    }
    .option-button-text {
        padding: 16px 20px;
    }
    .back-header-text-main {
        font-size: 20px;
        padding-left: 1px;
        letter-spacing: 0.4px;
    }
    .back-header-text-sub {
        font-size: 11px;
        margin-top: -2px;
        padding-left: 20px;
        letter-spacing: 0.3px;
        white-space: nowrap;
        overflow: visible;
    }
}

@media (min-width: 361px) and (max-width: 380px) {

    body{
       padding: 16px 16px;
    }
    .header{
        padding: 12px 0px;
        gap: 12px;
    }
    .logo-primary{
        height: 32px;
    }
    .subtitle{
        margin-bottom: 0px;
    }
    .hero-section{
        padding: 0px;
    }
    .img-container{
        height: 340px;
        max-width: 310px;
    }
    .step-description{
        font-size: 15px;
        line-height: 22px;
    }
    .step-description .nota {
        font-size: 14px;
        padding: 10px;
        line-height: 20px;
    }
    .step-title{
        font-size: 18px;
        line-height: 22px;
    }
    .step-number{
        font-size: 42px;
        line-height: 36px;
    }
    .swiper-slide {
        gap: 16px;
    }
    .navegacion-manual{
        padding: 12px 0 0;
        gap: 16px;
    }
    .back-header{
        min-height: 40px;
        padding: 4px;
    }
    .option-text-main {
        font-size: 40px;
        padding-left: 3px;
        letter-spacing: 0.9px;
    }
    .option-text-sub {
        font-size: 16px;
        margin-top: -3px;
        padding-left: 40px;
        letter-spacing: 0.4px;
        white-space: nowrap;
        overflow: visible;
    }
    .option-button-text {
        padding: 16px 20px;
    }
    .back-header-text-main {
        font-size: 22px;
        padding-left: 1px;
        letter-spacing: 0.4px;
    }
    .back-header-text-sub {
        font-size: 12px;
        margin-top: -2px;
        padding-left: 25px;
        letter-spacing: 0.3px;
        white-space: nowrap;
        overflow: visible;
    }
}

@media (min-width: 381px) and (max-width: 600px) {
    body{
       padding: 16px 16px;
    }
    .header{
        padding: 16px 0px 16px;
        gap: 12px;
    }
    .logo-primary{
        height: 32px;
    }
    .img-container{
        height: 360px;
        max-width: 340px;
    }
    .step-description{
        font-size: 16px;
        line-height: 24px;
    }
    .step-description .nota {
        font-size: 15px;
        padding: 10px;
        line-height: 22px;
    }
    .step-title{
        font-size: 19px;
        line-height: 24px;
    }
    .step-number{
        font-size: 44px;
        line-height: 38px;
    }
    .swiper-slide {
        gap: 20px;
    }
    .navegacion-manual{
        padding: 12px 0 0;
        gap: 20px;
    }
    .option-text-main {
        font-size: 46px;
        padding-left: 3px;
        letter-spacing: 0.9px;
    }
    .option-text-sub {
        font-size: 17px;
        margin-top: -4px;
        padding-left: 45px;
        letter-spacing: 0.5px;
        white-space: nowrap;
        overflow: visible;
    }
    .option-button-text {
        padding: 18px 22px;
    }
    .back-header-text-main {
        font-size: 24px;
        padding-left: 2px;
        letter-spacing: 0.5px;
    }
    .back-header-text-sub {
        font-size: 13px;
        margin-top: -2px;
        padding-left: 28px;
        letter-spacing: 0.3px;
        white-space: nowrap;
        overflow: visible;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .img-container{
        height: 450px;
        max-width: 400px;
    }
    .back-header-text-main {
        font-size: 28px;
        padding-left: 2px;
        letter-spacing: 0.5px;
    }
    .back-header-text-sub {
        font-size: 14px;
        margin-top: -2px;
        padding-left: 30px;
        letter-spacing: 0.3px;
        white-space: nowrap;
        overflow: visible;
    }
}

@media (max-height: 750px) {
    .hero-section .content{
        gap: 24px;
    }

    .hero-section .content .subtitle{
        margin-bottom: 16px;
    }
    .stadium-image {
        height: 150px;
    }
    .img-container{
        max-height: calc(100vh - 400px);
    }
}
