@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

html{
    width: 100%;
}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #111;
    width: 100%;
}

*{
    box-sizing: border-box;
}

/* HEADER -------------------------------------------------- */
.header {
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-bottom: 0px solid #ddd;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}
.headerGroup {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.idiomas img {
    width: 35px;
}
.logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo img {
    width: 200px;
    cursor: pointer;
}

.btn-header {
    padding: 10px 20px;
    background: #00c792;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* HERO */
.hero {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    color: #444;
}

/* STEPS SECTION */
.steps {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    width: 100%;
}

.step {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
}

.step.reverse {
    flex-direction: row-reverse;
}

.step img {
    width: 45%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.step .text {
    width: 55%;
}

.step h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
}

/* CTA */
.cta {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    margin-top: 80px;
}

.cta h2 {
    font-size: 32px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn-primary {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    /* display: block; */
    width: 100%;
    margin-top: 10px;
    transition: 500ms;
    text-decoration: none;
}

.btn-primary:hover{
    transition: 500ms;
    background: #892EAD;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px;
    color: #666;
}
    .footer a {
        color: black;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .step {
        flex-direction: column;
    }

    .step.reverse {
        flex-direction: column;
    }

    .step img, .step .text {
        width: 100%;
    }
}

@media (max-width: 500px) {
    header.header {
        align-items: flex-start;
    }

    .logo img {
        margin-top: -5px;
    }

    .headerGroup {
        flex-direction: column-reverse;
        justify-content: center;
        gap: 8px;
    }
}