/* =========================================
   IDEAL INTERNET
   SAIBA MAIS 1 — SITES INSTITUCIONAIS
   ESTÉTICA BRANCA / PREMIUM / CLEAN
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 78px;

    background: rgba(255, 255, 255, 0.90);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid #eeeeee;

    z-index: 1000;
}

.header-content {
    width: 90%;
    max-width: 1180px;
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;

    transform: translateX(-10px);
}

.header .logo img {
    width: 70px !important;
    max-width: 70px !important;
    height: auto !important;
}

.back-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 9px 16px;

    border: 1px solid #dedede;
    border-radius: 5px;

    color: #555555;

    font-size: 12px;
    font-weight: 500;

    transition: 0.3s ease;
}

.back-button:hover {
    color: #111111;
    background: #f5f5f5;
    border-color: #cfcfcf;

    transform: translateY(-1px);
}


/* =========================================
   HERO
========================================= */

.page-hero {
    min-height: 800px;

    padding: 170px 0 120px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(83, 111, 232, 0.08),
            transparent 35%
        ),
        #ffffff;

    overflow: hidden;
}

.hero-content {
    width: 90%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 100px;

    align-items: center;
}

.hero-text {
    max-width: 650px;
}

.hero-label {
    display: block;

    margin-bottom: 25px;

    color: #536fe8;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.hero-text h1 {
    margin-bottom: 28px;

    font-size: clamp(52px, 6vw, 80px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -4px;
}

.hero-text h1 span {
    display: block;
    color: #536fe8;
}

.hero-text p {
    max-width: 560px;

    margin-bottom: 38px;

    color: #6f6f6f;

    font-size: 16px;

    line-height: 1.85;
}

.primary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 25px;

    background: #111111;

    color: #ffffff;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;
}

.primary-button:hover {
    background: #536fe8;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(83, 111, 232, 0.18);
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    display: flex;

    justify-content: flex-end;
}

.hero-card {
    width: 100%;
    max-width: 410px;

    min-height: 310px;

    padding: 35px;

    display: flex;
    flex-direction: column;

    justify-content: flex-end;

    background: #ffffff;

    border: 1px solid #dddddd;

    border-radius: 7px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.10);

    position: relative;

    overflow: hidden;

    transition: 0.4s ease;
}

.hero-card::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -90px;
    top: -90px;

    border: 1px solid rgba(83, 111, 232, 0.18);

    border-radius: 50%;
}

.hero-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -50px;
    top: -50px;

    border: 1px solid rgba(83, 111, 232, 0.12);

    border-radius: 50%;
}

.hero-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.14);
}

.hero-card span {
    position: relative;
    z-index: 2;

    margin-bottom: 18px;

    color: #536fe8;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}

.hero-card strong {
    position: relative;
    z-index: 2;

    margin-bottom: 10px;

    color: #111111;

    font-size: 36px;

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -2px;
}

.hero-card small {
    position: relative;
    z-index: 2;

    max-width: 280px;

    color: #777777;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================
   INTRODUCTION
========================================= */

.introduction {
    padding: 140px 0;

    background: #f7f7f5;
}

.introduction-content {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: start;
}

.section-label {
    display: block;

    margin-bottom: 20px;

    color: #536fe8;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.section-title {
    max-width: 520px;

    font-size: clamp(40px, 5vw, 60px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -3px;
}

.introduction-text {
    max-width: 650px;
}

.introduction-text p {
    margin-bottom: 25px;

    color: #686868;

    font-size: 15px;

    line-height: 1.9;
}

.introduction-text p:last-child {
    margin-bottom: 0;
}


/* =========================================
   BENEFITS
========================================= */

.benefits {
    padding: 140px 0;

    background: #ffffff;
}

.benefits-header {
    max-width: 720px;

    margin-bottom: 65px;
}

.benefits-header h2 {
    font-size: clamp(40px, 5vw, 60px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -3px;
}

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: #dddddd;

    border: 1px solid #dddddd;
}

.benefit-card {
    min-height: 270px;

    padding: 32px;

    background: #ffffff;

    transition: 0.3s ease;
}

.benefit-card:hover {
    background: #fafafa;
}

.benefit-number {
    display: block;

    margin-bottom: 55px;

    color: #536fe8;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.benefit-card h3 {
    margin-bottom: 12px;

    font-size: 20px;

    font-weight: 500;
}

.benefit-card p {
    max-width: 330px;

    color: #707070;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   STRUCTURE
========================================= */

.structure {
    padding: 140px 0;

    background: #f7f7f5;
}

.structure-content {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 100px;

    align-items: start;
}

.structure-title h2 {
    max-width: 500px;

    font-size: clamp(40px, 5vw, 60px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -3px;
}

.structure-list {
    border-top: 1px solid #dddddd;
}

.structure-item {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 30px 0;

    border-bottom: 1px solid #dddddd;

    transition: 0.3s ease;
}

.structure-item:hover {
    padding-left: 8px;
}

.structure-item > span {
    color: #536fe8;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.structure-item h3 {
    margin-bottom: 7px;

    font-size: 19px;

    font-weight: 500;
}

.structure-item p {
    max-width: 600px;

    color: #777777;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   FINAL CTA
========================================= */

.final-cta {
    padding: 150px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(83, 111, 232, 0.08),
            transparent 40%
        ),
        #f7f7f5;

    text-align: center;

    border-top: 1px solid #eeeeee;
}

.final-cta-content {
    width: 90%;
    max-width: 850px;

    margin: 0 auto;
}

.final-cta h2 {
    margin-bottom: 25px;

    font-size: clamp(42px, 6vw, 70px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -4px;
}

.final-cta p {
    max-width: 600px;

    margin: 0 auto 38px;

    color: #777777;

    font-size: 15px;

    line-height: 1.8;
}

.whatsapp-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 27px;

    background: #111111;

    color: #ffffff;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s ease;
}

.whatsapp-button:hover {
    background: #536fe8;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(83, 111, 232, 0.18);
}

.home-link {
    display: block;

    width: fit-content;

    margin: 25px auto 0;

    color: #777777;

    font-size: 12px;

    transition: 0.3s ease;
}

.home-link:hover {
    color: #111111;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 32px 0;

    background: #ffffff;

    border-top: 1px solid #eeeeee;
}

.footer-content {
    width: 90%;
    max-width: 1180px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer .logo {
    display: flex;
    align-items: center;
}

.footer .logo img {
    width: 70px !important;
    max-width: 70px !important;
    height: auto !important;
}

.footer p {
    color: #777777;

    font-size: 11px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .hero-content {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-card {
        max-width: 600px;
    }

    .introduction-content {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .structure-content {
        grid-template-columns: 1fr;

        gap: 55px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .header {
        height: 70px;
    }

    .header-content {
        width: 92%;
    }

    .header .logo {
        transform: translateX(-5px);
    }

    .header .logo img {
        width: 62px !important;
        max-width: 62px !important;
    }

    .back-button {
        padding: 8px 13px;

        font-size: 11px;
    }


    .page-hero {
        min-height: auto;

        padding: 125px 0 90px;
    }

    .hero-content {
        width: 92%;

        gap: 55px;
    }

    .hero-text h1 {
        font-size: 48px;

        letter-spacing: -3px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .primary-button {
        width: 100%;
    }

    .hero-card {
        min-height: 280px;

        padding: 28px;
    }

    .hero-card strong {
        font-size: 32px;
    }


    .introduction {
        padding: 100px 0;
    }

    .section-title {
        font-size: 40px;

        letter-spacing: -2px;
    }


    .benefits {
        padding: 100px 0;
    }

    .benefits-header h2 {
        font-size: 40px;

        letter-spacing: -2px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: auto;

        padding: 30px;
    }

    .benefit-number {
        margin-bottom: 35px;
    }


    .structure {
        padding: 100px 0;
    }

    .structure-title h2 {
        font-size: 40px;

        letter-spacing: -2px;
    }

    .structure-item {
        grid-template-columns: 45px 1fr;

        gap: 18px;
    }


    .final-cta {
        padding: 110px 0;
    }

    .final-cta h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }


    .footer-content {
        width: 92%;

        flex-direction: column;

        text-align: center;
    }

    .footer .logo img {
        width: 65px !important;
        max-width: 65px !important;
    }
}