/* =========================================
   IDEAL INTERNET
   SAIBA MAIS 3 — ESTÉTICA BRANCA
========================================= */

* {
    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
========================================= */

.project-hero {
    position: relative;

    min-height: 800px;

    padding: 170px 0 120px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(83, 111, 232, 0.08),
            transparent 35%
        ),
        #ffffff;

    overflow: hidden;
}

.project-hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -380px;
    top: 30px;

    border: 1px solid #eeeeee;

    border-radius: 50%;
}

.project-hero::after {
    content: "";

    position: absolute;

    width: 460px;
    height: 460px;

    right: -230px;
    top: 150px;

    border: 1px solid rgba(83, 111, 232, 0.10);

    border-radius: 50%;
}

.hero-container {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    max-width: 650px;
}

.hero-label {
    display: block;

    margin-bottom: 25px;

    color: #536fe8;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.hero-content h1 {
    margin-bottom: 28px;

    font-size: clamp(52px, 6vw, 80px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -4px;

    color: #111111;
}

.hero-content h1 span {
    display: block;
    color: #536fe8;
}

.hero-content p {
    max-width: 560px;

    margin-bottom: 38px;

    color: #6f6f6f;

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================
   BOTÃO
========================================= */

.primary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border-radius: 5px;

    background: #111111;

    color: #ffffff;

    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);
}


/* =========================================
   VISUAL
========================================= */

.hero-visual {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.project-window {
    width: 100%;
    max-width: 520px;

    background: #ffffff;

    border: 1px solid #dddddd;

    border-radius: 7px;

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.10);

    transform: perspective(1200px) rotateY(-3deg);

    transition: 0.5s ease;
}

.project-window:hover {
    transform: perspective(1200px) rotateY(0deg) translateY(-4px);

    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.14);
}


/* =========================================
   BROWSER BAR
========================================= */

.browser-bar {
    height: 48px;

    padding: 0 16px;

    display: flex;

    align-items: center;

    gap: 7px;

    background: #f5f5f5;

    border-bottom: 1px solid #e5e5e5;
}

.browser-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #bdbdbd;
}

.browser-dot:nth-child(1) {
    background: #999999;
}

.browser-dot:nth-child(2) {
    background: #aaaaaa;
}

.browser-dot:nth-child(3) {
    background: #bbbbbb;
}

.browser-address {
    flex: 1;

    height: 25px;

    margin-left: 10px;

    padding: 5px 12px;

    border-radius: 3px;

    background: #ffffff;

    border: 1px solid #e1e1e1;

    color: #8a8a8a;

    font-size: 9px;

    text-align: center;
}


/* =========================================
   PROJECT IMAGE
========================================= */

.project-image {
    width: 100%;
    background: #fafafa;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;

    transition: 0.5s ease;
}

.project-window:hover .project-image img {
    transform: scale(1.015);
}


/* =========================================
   INTRODUCTION
========================================= */

.introduction {
    padding: 140px 0;

    background: #f7f7f5;

    color: #111111;
}

.introduction-content {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: start;
}

.section-title {
    max-width: 500px;

    font-size: clamp(40px, 5vw, 60px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -3px;
}

.section-label {
    display: block;

    margin-bottom: 20px;

    color: #536fe8;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.introduction-text p {
    max-width: 620px;

    margin-bottom: 25px;

    color: #686868;

    font-size: 15px;

    line-height: 1.9;
}

.introduction-text p:last-child {
    margin-bottom: 0;
}


/* =========================================
   DIFFERENTIALS
========================================= */

.differentials {
    padding: 140px 0;

    background: #ffffff;

    color: #111111;
}

.differentials-heading {
    max-width: 700px;

    margin-bottom: 65px;
}

.differentials-heading h2 {
    font-size: clamp(40px, 5vw, 60px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -3px;
}

.differentials-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: #dddddd;

    border: 1px solid #dddddd;
}

.differential-card {
    min-height: 270px;

    padding: 32px;

    background: #ffffff;

    transition: 0.3s ease;
}

.differential-card:hover {
    background: #fafafa;
}

.differential-number {
    display: block;

    margin-bottom: 55px;

    color: #536fe8;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.differential-card h3 {
    margin-bottom: 12px;

    font-size: 20px;

    font-weight: 500;
}

.differential-card p {
    max-width: 330px;

    color: #707070;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   PROCESS
========================================= */

.process {
    padding: 140px 0;

    background: #f7f7f5;

    color: #111111;
}

.process-heading {
    max-width: 650px;

    margin-bottom: 70px;
}

.process-heading h2 {
    font-size: clamp(40px, 5vw, 60px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -3px;
}

.process-list {
    max-width: 900px;

    margin-left: auto;

    border-top: 1px solid #dddddd;
}

.process-item {
    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 25px;

    padding: 30px 0;

    border-bottom: 1px solid #dddddd;

    transition: 0.3s ease;
}

.process-item:hover {
    padding-left: 8px;
}

.process-number {
    color: #536fe8;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.process-item h3 {
    margin-bottom: 7px;

    font-size: 19px;

    font-weight: 500;
}

.process-item p {
    max-width: 600px;

    color: #777777;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   RESULTS
========================================= */

.results {
    padding: 140px 0;

    background: #ffffff;

    color: #111111;
}

.results-container {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: start;
}

.results h2 {
    max-width: 560px;

    font-size: clamp(40px, 5vw, 58px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -3px;
}

.results-text > p {
    max-width: 620px;

    margin-bottom: 25px;

    color: #686868;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================
   RESULTADOS
========================================= */

.results-box {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    margin-top: 45px;

    border-top: 1px solid #d8d8d8;

    border-left: 1px solid #d8d8d8;
}

.result-item {
    min-height: 130px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-right: 1px solid #d8d8d8;

    border-bottom: 1px solid #d8d8d8;
}

.result-item strong {
    display: block;

    margin-bottom: 5px;

    color: #536fe8;

    font-size: 30px;

    font-weight: 500;

    letter-spacing: -1px;
}

.result-item span {
    color: #777777;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================
   CTA
========================================= */

.final-cta {
    padding: 150px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(83, 111, 232, 0.08),
            transparent 40%
        ),
        #f7f7f5;

    color: #111111;

    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
========================================= */

.whatsapp-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 27px;

    border-radius: 5px;

    background: #111111;

    color: #ffffff;

    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-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .project-window {
        max-width: 650px;
    }

    .introduction-content,
    .results-container {
        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;
    }


    .project-hero {
        min-height: auto;
        padding: 125px 0 90px;
    }

    .hero-container {
        width: 92%;
        gap: 55px;
    }

    .hero-content h1 {
        font-size: 48px;
        letter-spacing: -3px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .project-window {
        transform: none;
    }

    .project-window:hover {
        transform: translateY(-3px);
    }


    .browser-bar {
        height: 43px;
    }

    .browser-address {
        font-size: 8px;
    }


    .introduction {
        padding: 100px 0;
    }

    .introduction-content {
        width: 92%;
    }

    .section-title {
        font-size: 40px;
        letter-spacing: -2px;
    }


    .differentials {
        padding: 100px 0;
    }

    .differentials-heading h2 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
    }

    .differential-card {
        min-height: auto;
        padding: 30px;
    }

    .differential-number {
        margin-bottom: 35px;
    }


    .process {
        padding: 100px 0;
    }

    .process-heading h2 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .process-list {
        width: 100%;
    }

    .process-item {
        grid-template-columns: 45px 1fr;
        gap: 18px;
    }


    .results {
        padding: 100px 0;
    }

    .results-container {
        width: 92%;
    }

    .results h2 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .results-box {
        grid-template-columns: 1fr;
    }

    .result-item {
        min-height: 110px;
    }


    .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;
    }
}