css
/* =========================================
   IDEAL INTERNET
   PROJETO 03 — LOJA VIRTUAL
   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.94);

    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;

    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 {
    background: #f6f6f6;
    border-color: #cccccc;

    color: #111111;

    transform: translateY(-1px);
}


/* =========================================
   HERO
========================================= */

.store-hero {
    position: relative;

    min-height: 850px;

    padding: 175px 0 120px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(83, 111, 232, 0.09),
            transparent 35%
        ),
        #ffffff;
}

.hero-container {
    width: 90%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 80px;

    align-items: center;
}

.hero-content {
    max-width: 570px;
}

.project-number {
    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(55px, 6vw, 82px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -5px;
}

.hero-content h1 span {
    display: block;

    color: #536fe8;
}

.hero-content p {
    max-width: 540px;

    margin-bottom: 38px;

    color: #6d6d6d;

    font-size: 15px;

    line-height: 1.85;
}

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 18px;
}

.primary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    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);
}

.outline-button {
    display: inline-flex;

    align-items: center;

    padding: 13px 4px;

    color: #555555;

    font-size: 12px;
    font-weight: 500;

    border-bottom: 1px solid #cccccc;

    transition: 0.3s ease;
}

.outline-button:hover {
    color: #536fe8;

    border-color: #536fe8;
}


/* =========================================
   STORE PREVIEW
========================================= */

.store-preview {
    position: relative;

    background: #ffffff;

    border: 1px solid #dddddd;

    border-radius: 7px;

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.12);

    transition: 0.4s ease;
}

.store-preview:hover {
    transform: translateY(-6px);

    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.15);
}

.browser-bar {
    height: 38px;

    padding: 0 15px;

    display: flex;

    align-items: center;

    gap: 6px;

    background: #f5f5f5;

    border-bottom: 1px solid #dddddd;
}

.browser-bar span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #cccccc;
}

.preview-image {
    background: #ffffff;

    padding: 0;
}

.preview-image img {
    width: 100%;

    object-fit: cover;
}


/* =========================================
   ABOUT
========================================= */

.store-about {
    padding: 140px 0;

    background: #f7f7f5;
}

.store-about .container {
    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: 100px;

    align-items: start;
}

.about-heading {
    max-width: 600px;
}

.section-label {
    display: block;

    margin-bottom: 20px;

    color: #536fe8;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.about-heading h2 {
    font-size: clamp(40px, 5vw, 60px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -3px;
}

.about-description {
    max-width: 620px;
}

.about-description p {
    margin-bottom: 25px;

    color: #6d6d6d;

    font-size: 15px;

    line-height: 1.9;
}

.about-description p:last-child {
    margin-bottom: 0;
}


/* =========================================
   RESOURCES
========================================= */

.resources {
    padding: 140px 0;

    background: #ffffff;
}

.resources-header {
    max-width: 600px;

    margin-bottom: 65px;
}

.resources-header h2 {
    font-size: clamp(40px, 5vw, 60px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -3px;
}

.resources-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background: #dddddd;

    border: 1px solid #dddddd;
}

.resource-card {
    min-height: 300px;

    padding: 32px;

    background: #ffffff;

    transition: 0.3s ease;
}

.resource-card:hover {
    background: #fafafa;
}

.resource-icon {
    margin-bottom: 60px;

    color: #536fe8;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.resource-card h3 {
    margin-bottom: 13px;

    font-size: 19px;

    font-weight: 500;
}

.resource-card p {
    color: #707070;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   HOW IT WORKS
========================================= */

.how-it-works {
    padding: 140px 0;

    background: #f7f7f5;
}

.how-heading {
    max-width: 600px;

    margin-bottom: 65px;
}

.how-heading h2 {
    font-size: clamp(40px, 5vw, 60px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -3px;
}

.steps {
    max-width: 900px;

    border-top: 1px solid #dddddd;
}

.step {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 25px;

    padding: 34px 0;

    border-bottom: 1px solid #dddddd;

    transition: 0.3s ease;
}

.step:hover {
    padding-left: 8px;
}

.step > span {
    color: #536fe8;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.step h3 {
    margin-bottom: 8px;

    font-size: 20px;

    font-weight: 500;
}

.step p {
    max-width: 650px;

    color: #707070;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   CTA
========================================= */

.store-cta {
    padding: 150px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(83, 111, 232, 0.08),
            transparent 40%
        ),
        #ffffff;

    border-top: 1px solid #eeeeee;
}

.cta-content {
    width: 90%;
    max-width: 850px;

    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 25px;

    font-size: clamp(44px, 6vw, 72px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -4px;
}

.cta-content 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: 14px 25px;

    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;

    margin-top: 25px;

    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: 1000px) {

    .hero-container {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .hero-content {
        max-width: 700px;
    }

    .store-preview {
        max-width: 800px;
    }

    .store-about .container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================
   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;
    }


    .store-hero {
        min-height: auto;

        padding: 125px 0 90px;
    }

    .hero-container {
        width: 92%;

        gap: 60px;
    }

    .hero-content h1 {
        font-size: 48px;

        letter-spacing: -3px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }

    .primary-button {
        width: 100%;
    }


    .store-about {
        padding: 100px 0;
    }

    .store-about .container {
        width: 92%;
    }

    .about-heading h2 {
        font-size: 40px;

        letter-spacing: -2px;
    }


    .resources {
        padding: 100px 0;
    }

    .resources .container {
        width: 92%;
    }

    .resources-header {
        margin-bottom: 50px;
    }

    .resources-header h2 {
        font-size: 40px;

        letter-spacing: -2px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .resource-card {
        min-height: auto;

        padding: 30px;
    }

    .resource-icon {
        margin-bottom: 35px;
    }


    .how-it-works {
        padding: 100px 0;
    }

    .how-it-works .container {
        width: 92%;
    }

    .how-heading {
        margin-bottom: 50px;
    }

    .how-heading h2 {
        font-size: 40px;

        letter-spacing: -2px;
    }

    .step {
        grid-template-columns: 45px 1fr;

        gap: 18px;

        padding: 30px 0;
    }


    .store-cta {
        padding: 110px 0;
    }

    .cta-content {
        width: 92%;
    }

    .cta-content 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;
    }
}
