@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 {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.hero h2 {
    font-size: 32px;
    font-weight: 700;
}

.hero p {
    max-width: 600px;
    line-height: 1.5;
    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;
}

.chart-box {
    /* margin-top: 40px; */
    background: white;
    /* padding: 25px; */
    border-radius: 10px;
    /* border: 1px solid #ddd; */
}

.chart-box h3 {
    margin-bottom: 15px;
}

.chart-box img {
    width: 350px;
}
/* PRICING SECTION -------------------------------------------------- */

.pricing {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

.pricing h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: left;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.plan h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00c792;
}

.plan ul {
    padding-left: 18px;
    margin-bottom: 25px;
}

.plan ul li {
    margin-bottom: 10px;
}

.plan .btn-primary {
    display: inline-block;
    padding: 10px 22px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* FEATURED PLAN -------------------------------------------------- */
.featured {
    border: 2px solid #892EAD;
    transform: scale(1.03);
}

.featured .tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #892EAD;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}


/* MARKETING -------------------------------------------------- */
.marketing {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.marketing h2 {
    font-size: 32px;
    font-weight: 700;
}

.marketing p {
    max-width: 600px;
    margin-bottom: 25px;
}
.fullW p {
    max-width: 950px;
}
.illustration {
    width: 100%;
    max-width: 450px;
    display: block;
}

/* FOOTER -------------------------------------------------- */
.footer {
    padding: 40px;
    text-align: center;
    color: #666;
    font-size: 14px;
}
    .footer a {
        color: black;
    }

/* RESPONSIVE -------------------------------------------------- */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: scale(1);
    }

    section.hero, section.marketing {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        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;
    }
}