:root {

    /**
   * coloress
   */

    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --blue: #0cc0df;
    --grey: #141414;

    /**
   * tipografia
   */

    --ff-montserrat: "Montserrat", sans-serif;
    --ff-space: "Space Grotesk", sans-serif;

    --headline-lg: 5rem;
    --headline-md: 3rem;
    --headline-sm: 2rem;
    --title-lg: 1.8rem;
    --title-md: 1.5rem;
    --title-sm: 1.4rem;

    --fw-500: 500;
    --fw-700: 700;



    --section-padding: 120px;



    --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
    --shadow-2: 0 4px 16px hsla(0, 0%, 0%, 0.06);



    --radius-circle: 50%;
    --radius-12: 12px;
    --radius-6: 6px;
    --radius-4: 4px;

    /**
   * transition
   */

    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --transition-3: 1s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}

.body {
    width: 100%;
    background-color: #000;
    overflow-x: hidden;
}

.logo {
    width: 69px;
}

.font2 {
    font-family: var(--ff-space);
}

.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;

}

.a0 {
    display: flex;
    align-items: center;
    width: 100%;
}

.a1 {
    color: var(--white);
    font-family: var(--ff-montserrat);
    font-weight: 100;
    text-transform: uppercase;
    line-height: 1.2;
    font-size: clamp(1.4rem, 3.6vw, 5.4rem);

}

.a2 {
    width: 20vw;
    height: 20vw;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid var(--blue);
    position: absolute;
    right: 0;
    top: 45%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.a3 {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.b0 {
    display: flex;
    gap: 30px;
    margin-top: 15px;

}

.b1 {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.3rem;
    border: 1px solid var(--white);
    border-radius: 20px;

    transition: all 500ms ease;
}

.b1:hover {
    background-color: var(--blue);
    color: var(--white);
}

.b1 a {
    line-height: 1;
    width: 100%;
    padding: 10px 25px 10px 25px;
}

.a4 {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;

}

.a5 {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-size: 1.6rem;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
}

.a5 span {
    color: #555555;
}

.a5 span.active {
    color: var(--white);
}

.a7 {
    display: flex;
    justify-content: center;
}

.a6 {
    font-family: var(--space);
    color: var(--white);
    font-weight: 200;
    text-transform: uppercase;
    align-items: center;
    font-size: 3rem;
}

.a8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.a9 {
    margin-top: 50px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sections {
    margin-block: 60px;
}

.a10 {
    width: 60%;
}

.a11 {
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
    line-height: 1;
    text-align: center;
    font-size: 1.2rem;
}

.a12 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 50px;
}

.a13 {
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 8px 40px 8px 40px;
    border-radius: 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.a13:hover {
    background-color: var(--blue);
}

.a14 {
    width: 11px;
}

/* PRUEBA PRUEBA */
.pin-wrapper {
    position: relative;
}

.no-scroll {
    overflow: hidden !important;
}

/* Ajuste de posición inicial */
#steps {
    position: relative;
}

/* Contenedor de cards */
.a15 {
    margin-block: 40px;
    position: relative;
    min-height: 200px;
    width: 100%;
    overflow: visible;
    /* Permite que las cards se salgan del contenedor */
}

/* Estilo base de las cards - manteniendo tu diseño */
.a16 {
    border: 1px solid var(--white);
    border-radius: 20px;
    background-color: var(--black);
    width: 450px;
    height: 205px;
    padding: 30px 10px 10px 40px;
    position: absolute;
    top: 0;
    left: 0;
    /* Cambiado de right a left */
    opacity: 0;
    transform: translateX(100%);
    /* Inicia fuera de pantalla a la derecha */
    will-change: transform;
    /* Mejora rendimiento de animación */
}

/* Espaciado entre cards apiladas */
.a16:nth-child(1) {
    z-index: 1;
}

.a16:nth-child(2) {
    z-index: 2;
    margin-left: 12vw;
}

.a16:nth-child(3) {
    z-index: 3;
    margin-left: 23vw;
}

.a16:nth-child(4) {
    z-index: 4;
    margin-left: 34vw;
}

.a16:nth-child(5) {
    z-index: 5;
    margin-left: 45vw;
}

.a17 {
    border: 1px solid var(--blue);
    border-radius: 20px;
    background-color: var(--black);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 40px;
    display: flex;
    position: absolute;
    font-size: 1.4rem;
    top: -20px;
}

.a18 {
    text-transform: uppercase;
    color: var(--blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.a19 {
    color: var(--white);
    font-size: 1.3rem;
    line-height: 1.1;
    font-weight: 300;
}

.a20 {
    color: var(--blue);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 1;
    text-align: center;
    margin-top: 60px;
}

.a21 {
    color: var(--white);
    text-align: center;
    font-weight: 400;
}

.a22 {
    margin-block: 50px;
}

.a23 {
    display: flex;
    justify-content: center;
    gap: 35px;
}

.a24 {
    color: var(--white);
    border: 1px solid var(--white);
    width: 140px;
    height: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.a25 {
    margin-block: 40px;
    display: flex;
    gap: 15px;
}

.a26 {
    width: 50%;
}

.a27 {
    border-bottom: 1px solid var(--white);
    margin-top: 10px;
}

.a28 {
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    width: 100%;
}

.a29 {
    line-height: 1.2;
    font-size: 1.4rem;
}

.a30 {
    width: 15px;
}

.a31 {
    color: var(--white);
    font-size: 1.2rem;
    margin-left: 20px;
    display: none;
}

.a32 {
    width: 50%;
}

.a33 {
    color: var(--white);
    font-weight: 300;
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.accordion {
    color: var(--blue);
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-inline: auto;
    margin-top: 5px;
    font-size: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion p {
    font-family: var(--ff-space);
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
}

.active

/* , .accordion:hover */
    {
    border-bottom: none;
    /* font-weight: bold; */
}

.panel {
    width: 100%;
    margin-inline: auto;
    padding: 0 1.5rem;
    padding-bottom: .3rem;
    font-weight: 400;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--white);
    border-bottom: solid var(--white) 1px;
    font-size: 1.2rem;
    text-align: justify;
}

.blue-bar {
    background-color: var(--blue);
    width: 100%;
    height: 5rem;
}

.preguntas-section {
    display: none;
    opacity: 0;
    transition: all 1000ms ease;
}

.preguntas-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5rem;
    margin-top: 5rem;
}

.accordion img {
    width: 2rem;
    transition: all 300ms ease;
}

.faq-btn-active {
    color: var(--blue);
    border: 1px solid var(--blue);
}

.faq-page-active {
    display: block;
    opacity: 1;
}

@media (min-width: 300px) and (max-width: 399px) {
    .b0 {
        gap: 10px;
        justify-content: center;
    }

    .b1 {
        font-size: .8rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: fit-content;
    }

    .a2 {
        width: 70vw;
        height: 35vh;
        right: -20%;
        top: 43%;
    }

    .hero-text-container {
        margin-top: 95%;
    }

    .a1 {
        font-size: clamp(1.5rem, 3.6vw, 5.4rem);

        font-size: clamp(2.1rem, 3.6vw, 5.4rem);
        text-align: center;
    }

    .a23 {
        gap: 10px 10px;
        flex-wrap: wrap;
    }

    .preguntas-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .sections {
        margin-top: 350px;
    }

    .a6 {
        font-size: 3.5rem;
        line-height: 4rem;
        text-align: center;
    }

    .a8 {
        grid-template-columns: repeat(2, 1fr);
    }

    .a20 {
        margin-top: 250px;
    }

    .a16 {
        width: 100%;
    }

    /* Espaciado entre cards apiladas */
    .a16:nth-child(1) {
        z-index: 1;
    }

    .a16:nth-child(2) {
        z-index: 2;
        margin-top: 12vw;
        margin-left: 0;
    }

    .a16:nth-child(3) {
        z-index: 3;
        margin-top: 23vw;
        margin-left: 0;
    }

    .a16:nth-child(4) {
        z-index: 4;
        margin-top: 34vw;
        margin-left: 0;
    }

    .a16:nth-child(5) {
        z-index: 5;
        margin-top: 45vw;
        margin-left: 0;
    }

    #steps {
        overflow-x: hidden;
    }
}

@media (min-width: 400px) and (max-width: 767px) {
    .b0 {
        gap: 10px;
        justify-content: center;
    }

    .b1 {
        font-size: .8rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: fit-content;
    }

    .a2 {
        width: 70vw;
        height: 35vh;
        right: -20%;
        top: 43%;
    }

    .hero-text-container {
        margin-top: 95%;
    }

    .a1 {
        font-size: clamp(1.5rem, 3.6vw, 5.4rem);

        font-size: clamp(2.1rem, 3.6vw, 5.4rem);
        text-align: center;
    }

    .a23 {
        gap: 10px 10px;
        flex-wrap: wrap;
    }

    .preguntas-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .sections {
        margin-top: 350px;
    }

    .a6 {
        font-size: 3.5rem;
        line-height: 4rem;
        text-align: center;
    }

    .a8 {
        grid-template-columns: repeat(2, 1fr);
    }

    .a20 {
        margin-top: 250px;
    }

    .a16 {
        width: 100%;
    }

    /* Espaciado entre cards apiladas */
    .a16:nth-child(1) {
        z-index: 1;
    }

    .a16:nth-child(2) {
        z-index: 2;
        margin-top: 12vw;
        margin-left: 0;
    }

    .a16:nth-child(3) {
        z-index: 3;
        margin-top: 23vw;
        margin-left: 0;
    }

    .a16:nth-child(4) {
        z-index: 4;
        margin-top: 34vw;
        margin-left: 0;
    }

    .a16:nth-child(5) {
        z-index: 5;
        margin-top: 45vw;
        margin-left: 0;
    }

    #steps {
        overflow-x: hidden;
    }


}

@media (min-width: 768px) and (max-width: 1199px) {
    .a23 {
        gap: 10px;
    }

    .a24 {
        width: fit-content;
        padding: .5rem 3rem;
    }

    .a16 {
        border: 1px solid var(--white);
        border-radius: 20px;
        background-color: var(--black);
        width: 360px;
        height: 205px;
        padding: 30px 10px 10px 40px;
        position: absolute;
        top: 0;
        left: 0;
        /* Cambiado de right a left */
        opacity: 0;
        transform: translateX(100%);
        /* Inicia fuera de pantalla a la derecha */
        will-change: transform;
        /* Mejora rendimiento de animación */
    }

    .preguntas-container {
        column-gap: 2rem;
    }

    .accordion p {
        font-size: 1.1rem;
    }

    #steps {
        overflow: hidden;
    }

    .a2 {
        width: 50vw;
        height: 40vh;
        right: 3px;
        top: 40%;
    }

    .hero-text-container {
        margin-top: 380px;
        margin-inline: auto;
    }

    .a1 {
        text-align: center;
    }

    .b0 {
        justify-content: center;
    }
}

@media (min-width: 1400px) {
    .a2 {
        right: 130px;
        top: 48%;
    }
}