* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #222;
    background-color: #ffffff;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-color: #42bcc4;
}

.navbar {
    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}

.logo {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;

    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;

    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}
.nav-links .nav-cta {
    border: 2px solid white;
    padding: 10px 16px;
    border-radius: 6px;
    white-space: nowrap;
    font-weight: 500;

    transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-links .nav-cta:hover {
    background-color: white;
    color: #42bcc4;
    opacity: 1;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    overflow: hidden;

    background-image: url("../assets/images/hero.jpg");
    background-size: cover;
    background-position: center;
}
.hero-card {
    width: 500px;
    padding: 30px;
    margin-bottom: 20px;

    background-color: rgba(66, 188, 196, 0.92);

    border-radius: 22px;

    color: white;
}
.hero-greeting {
    font-family: "Oleo Script", cursive;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 20px;
}
.hero-card h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}
.hero-description {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
    margin-bottom: 18px;
}
.hero-button{
display: block;

width: 100%;
padding: 14px 20px;

border: 2px solid white;
border-radius: 6px;

color: white;
text-decoration: none;


text-align: center;
font-weight: 700;
text-transform: uppercase;

margin-top: 30px;
margin-bottom: 0;

transition: background-color 0.3s ease, color 0.3s ease;

}
.hero-button:hover {
    background-color: white;
    color: #42bcc4;
}


.hero-rating {
    text-align: center;
    font-size: 1rem;
    margin-top: 25px;
}

.menu-toggle {
    display: none;
}


.hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-divider svg {
    display: block;
    width: 100%;
    height: 90px;
}

.hero-divider path {
    fill: #f5ede6;
}


.hero-content {
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 40px 0 85px;
    position: relative;
    z-index: 2;
}


.hero-divider path {
    fill: #f5ede6;
}

/* secciones*/


.section {
    padding: 80px 0;
}

#sobre-mi {
    background-color: #f5ede6;
}

/* =========================
   SOBRE MI
========================= */

.about {
    position: relative;
    overflow: hidden;

    background-color: #f4ede5;

    padding: 90px 0 0;
}

/* CONTENEDOR GENERAL */

.about-container {
    position: relative;
    z-index: 2;

}


/* DISTRIBUCIÓN PRINCIPAL */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;

    align-items: center;
    gap: 70px;
}


/* COLUMNA DE TEXTO */

.about-text {
    max-width: 520px;
}


/* ETIQUETA "SOBRE MI" */

.about-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 8px;

    color: #8a8986;
    font-size: 0.95rem;
}

.about-label-icon {
    width: 28px;
    height: 28px;
}


/* TÍTULO */

.about-title {
    color: #102840;

    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1;
    font-weight: 700;

    margin-bottom: 16px;
}

.about-title span {
    color: #10c0cb;
}


/* RAYITA DECORATIVA */

.about-title-line {
    width: 40px;
    height: 4px;

    background-color: #10c0cb;
    border-radius: 999px;

    margin-bottom: 28px;
}


/* TEXTO */

.about-copy {
    color: #273139;

    font-size: 1rem;
    line-height: 1.55;

    margin-bottom: 28px;
}

.about-copy p + p {
    margin-top: 22px;
}


/* BOTÓN */

.about-button {
    display: flex;
    align-items: center;
    gap: 10px;

    width: fit-content;
    margin-left: auto;

    padding: 12px 22px;

    background-color: #10c0cb;
    color: white;

    text-decoration: none;
    font-weight: 600;

    border-radius: 999px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.about-button img {
    width: 24px;
    height: 24px;
}

.about-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* FOTO */

.about-photo-wrapper {
    width: 100%;
    max-width: 580px;

    justify-self: end;

    border: 10px solid #10c0cb;
    border-radius: 58px;

    overflow: hidden;
margin-bottom: 30px;
    box-shadow: 18px 18px 24px rgba(0, 0, 0, 0.18);
    background-color: #f4ede5;
}

.about-photo {
    display: block;

    width: 100%;
    height: 480px;

    object-fit: contain;
    object-position: center bottom;

    background-color: #f4ede5;
}



.video-section {
    position: relative;
    overflow: hidden;

    background-color: #f4ede5;

    padding: 60px 0 0;
}

.video-wrapper {
    position: relative;

    width: 100%;
    max-width: 800px;
    margin: 0 auto;

    aspect-ratio: 16 / 9;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.12);

    cursor: pointer;
}

.video-thumbnail {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    border: none;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    width: 80px;
    height: 80px;

    background-color: rgba(16, 192, 203, 0.9);
    border: none;
    border-radius: 50%;

    cursor: pointer;

    transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-play-button svg {
    margin-left: 4px;
}

.video-wrapper:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.08);
    background-color: rgba(16, 192, 203, 1);
}

.video-wave {
    display: block;

    width: 100%;
    height: auto;

    margin-top: 50px;

    position: relative;
    z-index: 1;

    pointer-events: none;
    user-select: none;
    margin-bottom: -2px;
}






/* =========================
   MI MÉTODO
========================= */

.method {
    position: relative;
    overflow: hidden;

    background-color: #10c0cb;

    padding: 30px 0 0;
}


/* CONTENEDOR */

.method-container {
    position: relative;
    z-index: 2;
}


/* TÍTULO */

.method-title {
    color: white;
    font-family: "Oleo Script", cursive;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1;
    font-weight: 500;

    text-align: center;

    margin-bottom: 35px;
}


/* DISTRIBUCIÓN DE TARJETAS */

.method-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}


/* TARJETA */

.method-card {
    min-height: 250px;

    padding: 30px 22px 26px;

    background-color: #f5f5ef;

    border: 5px solid #8387ba;
    border-radius: 28px;

    box-shadow: 6px 8px 16px rgba(39, 49, 57, 0.14);

    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}


/* ICONOS */

.method-icon {
    display: block;

    width: 95px;
    height: 95px;

    object-fit: contain;
}


/* NÚMERO + TEXTO */

.method-card-text {
    width: 100%;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    min-height: 58px;
    gap: 10px;
}


.method-number {
    flex-shrink: 0;

    color: #aee238;

    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 700;
}


.method-card-text p {
    color: #273139;

    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 500;
}


/* TEXTO EXPLICATIVO */

.method-description {
    max-width: 950px;

    margin: 40px auto 0;

    color: white;

    font-size: 1.1rem;
    line-height: 1.65;
    font-weight: 500;

    text-align: center;
}


/* ONDA INFERIOR */

.method-wave {
    display: block;

    width: 100%;
    height: auto;

    margin-top: 30px;

    position: relative;
    z-index: 1;
}

/* =========================
   MI EXPERIENCIA
========================= */

.experience {
    position: relative;
    overflow: hidden;

    background-color: #f4ede5;

    padding: 40px 0 0;
}


/* CONTENEDOR */

.experience-content {
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(0, 600px);
    justify-content: center;

    align-items: center;
    gap: 60px;
}


/* COLUMNA DE TEXTO */

.experience-text {
    max-width: 480px;
}

.experience-title {
    color: #102840;

    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1;
    font-weight: 700;

    margin-bottom: 16px;
}

.experience-title span {
    color: #10c0cb;
}

.experience-title-line {
    width: 40px;
    height: 4px;

    background-color: #10c0cb;
    border-radius: 999px;

    margin-bottom: 28px;
}

.experience-hours {
    color: #273139;

    font-size: 1.2rem;
    font-weight: 500;

    margin-bottom: 18px;
}

.experience-hours strong {
    color: #102840;
    font-weight: 700;
}

.experience-copy {
    color: #273139;

    font-size: 1rem;
    line-height: 1.55;

    margin-bottom: 28px;
}

.experience-button {
    display: flex;
    align-items: center;

    width: fit-content;

    padding: 12px 22px;

    background-color: #10c0cb;
    color: white;

    text-decoration: none;
    font-weight: 600;

    border-radius: 999px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


/* .about-button {
    display: flex;
    align-items: center;
    gap: 10px;

    width: fit-content;
    margin-left: auto;

    padding: 12px 22px;

    background-color: #10c0cb;
    color: white;

    text-decoration: none;
    font-weight: 600;

    border-radius: 999px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
} */

.experience-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* TARJETA / IMAGEN PREPLY */

.experience-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    justify-self: end;
}

.experience-photo {
    display: block;

    width: 100%;
    max-width: 600px;
    height: auto;
}


/* RATING (estrellas + texto) */

.experience-rating {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: -15px;
}

.experience-stars {
    width: 300px;
    height: auto;

    margin-bottom: 18px;
}

.experience-rating p {
    color: #102840;

    font-size: 1.5rem;
    font-weight: 700;
}


/* ONDA INFERIOR */

.experience-wave {
    display: block;

    width: 100%;
    height: auto;

    margin-top: 0px;

    position: relative;
    z-index: 1;
margin-bottom: -2px;
    pointer-events: none;
    user-select: none;
}


/* =========================
   OPINIONES
========================= */
 
.reviews {
    position: relative;
    overflow: hidden;
 
    background-color: #10c0cb;
 
    padding: 70px 0 0;
}
 
.reviews-container {
    position: relative;
    z-index: 2;
}
 
.reviews-title {
    color: white;
    font-family: "Oleo Script", cursive;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1;
    font-weight: 500;
 
    text-align: center;
 
    margin-bottom: 40px;
}
 
/* CARRUSEL */
 
.reviews-carousel {
    display: flex;
    align-items: center;
    gap: 14px;
}
 
/* CARRUSEL */

.reviews-track {
    display: flex;
    gap: 22px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    padding: 4px 4px 10px;

    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

/* CONTROLES (flechas + puntos, en la misma fila debajo del carrusel) */

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-top: 28px;
}

.reviews-arrow {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    background-color: #f5f5ef;
    border: none;
    border-radius: 50%;

    box-shadow: 4px 6px 12px rgba(16, 40, 64, 0.18);

    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.reviews-arrow:hover {
    background-color: white;
    transform: translateY(-2px);
}

.reviews-arrow:disabled {
    opacity: 0.4;
    cursor: default;
    transform: none;
}
 
/* FLECHAS */
 
.reviews-arrow {
    flex-shrink: 0;
 
    display: flex;
    align-items: center;
    justify-content: center;
 
    width: 46px;
    height: 46px;
 
    background-color: #f5f5ef;
    border: none;
    border-radius: 50%;
 
    box-shadow: 4px 6px 12px rgba(16, 40, 64, 0.18);
 
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
 
.reviews-arrow:hover {
    background-color: white;
    transform: translateY(-2px);
}
 
.reviews-arrow:disabled {
    opacity: 0.4;
    cursor: default;
    transform: none;
}
 
/* TARJETA */
 
.review-card {
    flex: 0 0 calc(50% - 11px);
    scroll-snap-align: start;
    min-width: 0;
 
    display: flex;
    flex-direction: column;
    gap: 16px;
 
    padding: 28px 26px;
 
    background-color: #f5f5ef;
 
    border: 3px solid #10c0cb;
    border-radius: 26px;
 
    box-shadow: 6px 8px 16px rgba(39, 49, 57, 0.14);
}
 /* 
 .review-card {
    flex: 0 0 calc(50% - 11px);
    min-width: 0;
    scroll-snap-align: start;
 
    display: flex;
    flex-direction: column;
    gap: 16px;
 
    padding: 28px 26px;
 
    background-color: #f5f5ef;
 
    border: 3px solid #10c0cb;
    border-radius: 26px;
 
    box-shadow: 6px 8px 16px rgba(39, 49, 57, 0.14);
}
 
 */
.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
 
.review-stars {
    display: flex;
    gap: 3px;
}
 
.review-stars svg {
    width: 18px;
    height: 18px;
}
 
.review-badge {
    display: flex;
    align-items: center;
    gap: 6px;
 
    padding: 5px 12px;
 
    background-color: rgba(16, 192, 203, 0.14);
    border-radius: 999px;
 
    color: #0c8f97;
    font-size: 0.78rem;
    font-weight: 600;
 
    white-space: nowrap;
}
 
.review-badge svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}
 
.review-text {
    color: #273139;
 
    font-size: 0.95rem;
    line-height: 1.55;
 
    flex-grow: 1;
}
 
.review-name {
    padding-top: 14px;
 
    border-top: 2px solid rgba(16, 192, 203, 0.35);
 
    color: #102840;
    font-weight: 700;
    font-size: 1.05rem;
}
 
/* PUNTOS */
 
.reviews-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
 
.reviews-dot {
    width: 9px;
    height: 9px;
 
    padding: 0;
    border: none;
    border-radius: 50%;
 
    background-color: rgba(255, 255, 255, 0.45);
 
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
 
.reviews-dot.active {
    background-color: white;
    transform: scale(1.25);
}

/* ONDA INFERIOR */
 
.reviews-wave {
    display: block;
 
    width: 100%;
    height: auto;
 
    margin-top: 40px;
 
    position: relative;
    z-index: 1;
    margin-bottom: -2px;
    pointer-events: none;
    user-select: none;
}
 
/* =========================
   CLASES
========================= */

.classes {
    position: relative;
    overflow: hidden;

    background-color: #f4ede5;

    padding: 90px 0 0;
}


/* CONTENEDOR */

.classes-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;

    align-items: center;
    gap: 70px;
}


/* COLUMNA DE TEXTO */

.classes-text {
    max-width: 480px;
}

.classes-title {
    color: #102840;

    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1;
    font-weight: 700;

    margin-bottom: 16px;
    
}

.classes-title span {
    color: #10c0cb;
}

.classes-title-line {
    width: 40px;
    height: 4px;

    background-color: #10c0cb;
    border-radius: 999px;

    margin-bottom: 28px;
}

.classes-copy {
    color: #273139;

    font-size: 1rem;
    line-height: 1.55;

    margin-bottom: 28px;
    
}

.classes-copy p + p {
    margin-top: 22px;
}


/* BOTÓN */

.classes-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    width: fit-content;
    margin-inline: auto;

    padding: 16px 28px;

    background-color: #10c0cb;
    color: white;

    text-decoration: none;
    font-weight: 700;

    border-radius: 999px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.classes-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* NOTA BAJO EL BOTÓN */

.classes-note {
    color: #8a8986;
    font-size: 0.9rem;
    margin-top: 16px;
    text-align: center;
}

/* FOTO */

.classes-photo-wrapper {
    width: 100%;
    max-width: 580px;

    justify-self: end;

    border: 10px solid #10c0cb;
    border-radius: 32px;

    overflow: hidden;

    box-shadow: 18px 18px 24px rgba(0, 0, 0, 0.18);
    background-color: #f4ede5;
}

.classes-photo {
    display: block;

    width: 100%;
    height: 480px;

    object-fit: cover;
    object-position: center;
}

/* ONDA INFERIOR */

.classes-wave {
    display: block;

    width: 100%;
    height: auto;

    margin-top: 50px;

    position: relative;
    z-index: 1;

    pointer-events: none;
    user-select: none;
    margin-bottom: -2px;
}


/* =========================
   PREFIERES PREPLY
========================= */

.preply-cta {
    position: relative;
    overflow: hidden;

    background-color: #10c0cb;

    padding: 60px 0 0;
}

.preply-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    gap: 32px;
}

.preply-cta-text {
    color: white;
}

.preply-cta-title {
    font-family: "Oleo Script", cursive;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    line-height: 1;
    font-weight: 500;

    margin-bottom: 12px;
}

.preply-cta-copy {
    font-size: 1.1rem;
}

.preply-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 22px 36px;

    border: 2px solid white;
    border-radius: 16px;

    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.4;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.preply-cta-button:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.preply-cta-wave {
    display: block;

    width: 100%;
    height: auto;

    margin-top: 20px;
    margin-bottom: -2px;

    position: relative;
    z-index: 1;

    pointer-events: none;
    user-select: none;
}


/* =========================
   FOOTER
========================= */

.footer {
    background-color: #f4ede5;

    padding: 34px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    gap: 16px;
}

.footer-brand {
    color: #102840;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-year {
    color: #8a8986;
    font-size: 0.85rem;
    margin-top: 4px;
}

.footer-sep {
    color: #8a8986;
}

.footer-right {
    display: flex;
    align-items: center;

    gap: 18px;
}

.footer-privacy {
    color: #102840;
    font-size: 0.95rem;
    text-decoration: none;
}

.footer-privacy:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    align-items: center;

    gap: 10px;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #102840;

    width: 36px;
    height: 36px;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.footer-icon:hover {
    color: #10c0cb;
    transform: translateY(-2px);
}

.footer-icon-circle {
    border: 1.7px solid #102840;
    border-radius: 50%;
}

.footer-icon-circle:hover {
    border-color: #10c0cb;
}


/* =========================
   RESPONSIVE
========================= */


/* =========================
   tablet
========================= */
@media (max-width: 1000px) {

    .menu-toggle {
        display: flex;

        flex-direction: column;
        justify-content: center;
        gap: 5px;

        padding: 8px;

        background: none;
        border: none;

        cursor: pointer;
    }

    .menu-toggle span {
        width: 28px;
        height: 3px;

        background-color: white;
        border-radius: 2px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
    display: flex;

    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    padding: 16px;

    flex-direction: column;
    align-items: stretch;
    gap: 8px;

    background-color: #42bcc4;

    z-index: 10;

    
    }


    .nav-links li {
    width: 100%;
    }

    .nav-links a {
    display: block;
    padding: 12px 16px;
    }

    .nav-links li:last-child {
    margin-top: 12px;
    }

   
    .about-photo-wrapper {
        max-width: 420px;
    }

    .about-photo {
    display: block;

    width: 100%;
    height: 430px;

    object-fit: cover;
    object-position: 60% 20%;

    background-color: #f4ede5;  
    }
    
    
    .about-wave-bottom {
    position: relative;

    width: 150%;

    display: block;

    margin-top: 50px;

    z-index: 1;

    pointer-events: none;
    user-select: none;
    margin-bottom: -2px;
    }



/* =========================
   MI MÉTODO - TABLET
========================= */

.method {
    padding-top: 50px;
}

.method-title {
    font-size: 4rem;
    margin-bottom: 35px;
}

.method-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.method-card {
    min-height: 220px;

    padding: 28px 24px 24px;
}

.method-icon {
    width: 90px;
    height: 90px;
}

.method-card-text {
    justify-content: center;
    text-align: center;
}

.method-description {
    max-width: 760px;

    margin-top: 42px;

    font-size: 1.05rem;
    line-height: 1.6;
}

.method-wave {
    margin-top: 30px;
}

/* =========================
   MI EXPERIENCIA - TABLET
========================= */
.experience-text {
    display: contents;
}

.experience-title {
    order: 1;
}

.experience-title-line {
    order: 2;
}

.experience-card {
    order: 3;
}

.experience-hours {
    order: 4;
}

.experience-copy {
    order: 5;
}

.experience-button {
    order: 6;
}
.experience {
    padding-top: 30px;
}

.experience-content {
    grid-template-columns: minmax(0, 500px);
    justify-content: center;

    gap: 12px;
    text-align: center;
}
/*     grid-template-columns: minmax(0, 500px);
    justify-content: center;

    gap: 12px;
    text-align: center; */

.experience-text {
    max-width: 500px;
    padding-right: 15px;
    padding-left: 15px;
    justify-self: center;
}

.experience-title-line {
    margin-left: auto;
    margin-right: auto;
      margin-bottom: 15px;
}

.experience-card {
    justify-self: center;
}

.experience-photo {
    margin-top: -15px;
    max-width: 420px;
}

.experience-rating {
    margin-top: -10px;
}

.experience-stars {
    width: 220px;

    margin-bottom: 14px;
}

.experience-rating p {
    font-size: 1.25rem;
}

.experience-button {
    display: inline-flex;

    margin: 0 auto;

    padding: 16px 32px;
    font-size: 1.25rem;
      margin-bottom: 15px;
}
.experience-wave {
    width: 200%;
    margin-left: -25%;

    margin-top: 30px;
}

.video-wave {
    width: 200%;
    margin-left: -25%;

    margin-top: 30px;
}


/* ===========
reseñas
============ */

    .review-card {
        flex: 0 0 calc(100% - 4px);
    }
 
    .reviews-title {
        font-size: 4rem;
        margin-bottom: 30px;
    }
        .review-card-top {
        flex-wrap: wrap;
        row-gap: 8px;
    }
    .reviews-wave {
 
    width: 170%;
}

    .classes-photo {
    display: block;

    width: 150%;
    height: 380px;

    object-fit: cover;
    object-position: 120% 20%;
}

/* =========================
   PREFIERES PREPLY - TABLET
========================= */

.preply-cta-content {
    justify-content: center;
    text-align: center;
}

.preply-cta-text {
    max-width: 480px;
}
}


/* =========================
   Celular
========================= */


@media (max-width: 600px) {

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-card {
        width: 100%;
        padding: 30px 24px;
    }

    .hero-greeting {
        font-size: 3.5rem;
    }

    .hero-card h1 {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-content {
    min-height: auto;
    padding: 40px 0 60px;
    }

    .hero-divider {
    height: 48px;
    }
/* =========================
   SOBRE MI - CELULAR
========================= */

.about {
    padding-top: 55px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;

    gap: 0;
}

/*
Permite reorganizar individualmente
los elementos que estaban dentro de .about-text
*/
.about-text {
    display: contents;
}


/* 1. ETIQUETA */

.about-label {
    grid-row: 1;

    margin-bottom: 8px;
}


/* 2. TÍTULO */

.about-title {
    grid-row: 2;

    font-size: clamp(2.8rem, 13vw, 3.6rem);
    line-height: 0.95;

    margin-bottom: 14px;
}


/* 3. RAYITA */

.about-title-line {
    grid-row: 3;

    margin-bottom: 28px;
}


/* 4. FOTO */

.about-photo-wrapper {
    grid-row: 4;

    width: 100%;
    max-width: none;

    justify-self: stretch;

    margin-bottom: 42px;

    border-width: 7px;
    border-radius: 36px;

   box-shadow: 6px 8px 16px rgba(39, 49, 57, 0.14);
}

.about-photo {
    width: 100%;
    height: auto;

    aspect-ratio: 1.20 / 1;

    object-fit: cover;
    object-position: 70% 20%;

    background-color: #f4ede5;
}


/* 5. TEXTO */

.about-copy {
    grid-row: 5;

    font-size: 0.95rem;
    line-height: 1.55;

    margin-bottom: 28px;
}

.about-copy p + p {
    margin-top: 20px;
}


/* 6. BOTÓN */

.about-button {
    grid-row: 6;

    justify-self: end;

    margin-left: 0;
    margin-bottom: 0;

    padding: 11px 20px;
}


.about-wave-bottom {
    position: relative;

    width: 200%;

    display: block;

    margin-top: 50px;

    z-index: 1;

    pointer-events: none;
    user-select: none;
}





/* =========================
   MI MÉTODO - CELULAR
========================= */

.method {
    padding-top: 40px;
}

.method-title {
    font-size: 3.2rem;
    margin-bottom: 30px;
}


/* UNA SOLA COLUMNA */

.method-steps {
    grid-template-columns: 1fr;
    gap: 18px;
}


/* TARJETAS HORIZONTALES */

.method-card {
    min-height: 0;

    padding: 20px 20px;

    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    gap: 18px;
 
    border-width: 4px;
    border-radius: 22px;

box-shadow: 6px 8px 16px rgba(39, 49, 57, 0.14);
}

.method-steps {
    grid-template-columns: 1fr;
    gap: 18px;

    width: 100%;
    max-width: 300px;

    margin-left: auto;
    margin-right: auto;
}

/* ICONOS */

.method-icon {
    width: 72px;
    height: 72px;
}


/* TEXTO DE LA TARJETA */

.method-card-text {
    width: auto;
    min-height: 0;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 8px;

    text-align: left;
}

.method-number {
    font-size: 1.2rem;
}

.method-card-text p {
    font-size: 1rem;
    line-height: 1.35;
}


/* DESCRIPCIÓN */

.method-description {
    max-width: none;

    margin-top: 32px;

    font-size: 0.95rem;
    line-height: 1.55;
}


/* ONDA */

.method-wave {
    width: 250%;

    margin-top: 24px;
    margin-left: -40%;
}




/* =========================
   CLASES - CELULAR
========================= */

.classes {
    padding-top: 55px;
}

.classes-content {
    display: grid;
    grid-template-columns: 1fr;

    gap: 0;
}

/*
Permite reorganizar individualmente
los elementos que estaban dentro de .classes-text
*/
.classes-text {
    display: contents;
}


/* 1. TÍTULO */

.classes-title {
    grid-row: 1;

    font-size: clamp(2.8rem, 13vw, 3.6rem);
    line-height: 0.95;

    text-align: center;

    margin-bottom: 14px;
}


/* 2. RAYITA */

.classes-title-line {
    grid-row: 2;

    margin-left: auto;
    margin-right: auto;

    margin-bottom: 28px;
}


/* 3. FOTO */

.classes-photo-wrapper {
    grid-row: 3;

    width: 100%;
    max-width: none;

    justify-self: stretch;

    margin-bottom: 28px;

    border-width: 7px;
    border-radius: 28px;

    box-shadow: 6px 8px 16px rgba(39, 49, 57, 0.14);
}

.classes-photo {
    width: 100%;
    height: auto;

    aspect-ratio: 1.05 / 1;

    object-fit: cover;
    object-position: center;
}


/* 4. PÁRRAFO */

.classes-copy {
    grid-row: 4;

    font-size: 0.95rem;
    line-height: 1.55;

    text-align: center;

    margin-bottom: 24px;
}


/* 5. BOTÓN CENTRADO */

.classes-button {
    grid-row: 5;

    margin-inline: auto;
}


/* 6. NOTA */

.classes-note {
    grid-row: 6;
}


.classes-wave {
    width: 200%;
    margin-left: -50%;

    margin-top: 32px;
}




/* =========================
   PREFIERES PREPLY - CELULAR
========================= */

.preply-cta {
    padding: 44px 0 0;
}

.preply-cta-content {
    flex-direction: column;
    gap: 24px;
}

.preply-cta-title {
    font-size: 2.4rem;
}

.preply-cta-copy {
    font-size: 1rem;
}

.preply-cta-button {
    width: 100%;

    font-size: 1rem;
    padding: 18px 24px;
}

.preply-cta-wave {
    width: 200%;
    margin-left: -50%;
    margin-top: 16px;
}


/* =========================
   FOOTER - CELULAR
========================= */

.footer-content {
    flex-direction: column;
    align-items: center;

    text-align: center;

    gap: 22px;
}

.footer-right {
    flex-direction: column;

    gap: 14px;
}




}