:root {
    --wine: #4b1028;
    --wine-dark: #250711;
    --wine-light: #781d43;

    --pink: #e88aa9;
    --pink-light: #f7c5d5;
    --pink-soft: #fff1f6;

    --white: #ffffff;
    --cream: #fff9fc;

    --text: #1b0b12;
    --muted: #806c75;

    --border: rgba(75, 16, 40, 0.12);

    --shadow:
        0 25px 70px rgba(63, 10, 31, 0.12);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(247, 197, 213, 0.28),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fffafd 0%,
            #ffffff 45%,
            #fff7fa 100%
        );

    color: var(--text);

    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


::selection {
    background: var(--pink);
    color: var(--wine-dark);
}


/* =========================
   LOADER
========================= */

.loader {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at center,
            #651837,
            #250711 65%,
            #120309
        );

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}


.loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.loader-content {
    width: min(340px, 80vw);

    text-align: center;

    color: white;
}


.loader-logo {
    width: min(280px, 72vw);

    max-height: 100px;

    object-fit: contain;

    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 10px 25px rgba(255, 255, 255, .15));

    animation: loaderLogo 2s ease-in-out infinite;
}


.loader-orbit {
    width: 64px;
    height: 64px;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-top-color: var(--pink);

    border-radius: 50%;

    margin: 28px auto 18px;

    animation: spin 1s linear infinite;

    position: relative;
}


.loader-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 0 20px var(--pink);

    position: absolute;

    top: -4px;
    left: 50%;
}


.loader-line {
    height: 2px;

    width: 100%;

    background: rgba(255, 255, 255, .12);

    overflow: hidden;

    border-radius: 10px;
}


.loader-line span {
    display: block;

    width: 40%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--pink),
            white
        );

    animation: loadingLine 1.2s ease-in-out infinite;
}


.loader-content p {
    margin-top: 13px;

    font-size: 10px;

    letter-spacing: .25em;

    text-transform: uppercase;

    color: #dcbcc8;
}


/* =========================
   AMBIENT
========================= */

.ambient {
    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: -1;

    overflow: hidden;
}


.ambient-light {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    opacity: .35;
}


.light-1 {
    width: 380px;
    height: 380px;

    background: #f2aac2;

    top: -130px;
    left: -100px;
}


.light-2 {
    width: 450px;
    height: 450px;

    background: #b75b7c;

    right: -200px;
    top: 20%;

    opacity: .12;
}


.light-3 {
    width: 350px;
    height: 350px;

    background: #ffdce8;

    bottom: -160px;
    left: 20%;
}


/* =========================
   HEADER
========================= */

header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

    padding: 18px 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        rgba(255, 250, 252, .74);

    backdrop-filter: blur(20px);

    border-bottom:
        1px solid rgba(75, 16, 40, .08);
}


.brand-mini {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: .25em;

    color: var(--wine);
}


.header-button {
    font-size: 11px;

    font-weight: 700;

    padding: 10px 16px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .75);

    transition: .3s ease;
}


.header-button:hover {
    transform: translateY(-2px);

    background: white;

    box-shadow:
        0 10px 25px rgba(75, 16, 40, .1);
}


/* =========================
   HERO
========================= */

main {
    padding-top: 76px;
}


.hero {
    min-height: calc(100vh - 76px);

    display: grid;

    place-items: center;

    padding:
        80px 6vw
        100px;

    text-align: center;
}


.hero-content {
    width: 100%;

    max-width: 1000px;
}


/* LOGO REAL */

.logo-container {
    width: min(720px, 90vw);

    margin:
        0 auto
        30px;

    position: relative;

    perspective: 1000px;
}


.main-logo {
    width: 100%;

    height: auto;

    display: block;

    position: relative;

    z-index: 2;

    filter:
        drop-shadow(
            0 22px 35px
            rgba(75, 16, 40, .20)
        );

    transform:
        perspective(1000px)
        rotateX(4deg);

    transition:
        transform .5s ease,
        filter .5s ease;

    animation:
        logoFloat 5s ease-in-out infinite;
}


.main-logo:hover {
    transform:
        perspective(1000px)
        rotateX(0deg)
        rotateY(-3deg)
        scale(1.015);

    filter:
        drop-shadow(
            0 28px 45px
            rgba(75, 16, 40, .25)
        );
}


.logo-glow {
    position: absolute;

    width: 65%;
    height: 60%;

    left: 17%;
    top: 20%;

    background:
        radial-gradient(
            circle,
            rgba(232, 138, 169, .35),
            transparent 70%
        );

    filter: blur(30px);

    z-index: 0;

    animation:
        glowPulse 4s ease-in-out infinite;
}


.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 15px;

    border-radius: 999px;

    background: white;

    border: 1px solid var(--border);

    box-shadow:
        0 12px 35px
        rgba(75, 16, 40, .07);

    color: var(--wine);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .19em;
}


.eyebrow span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--pink);

    box-shadow:
        0 0 15px var(--pink);
}


.hero h1 {
    font-family: "Playfair Display", serif;

    font-size:
        clamp(44px, 7vw, 84px);

    line-height: .98;

    letter-spacing: -.05em;

    margin:
        25px auto
        20px;

    max-width: 900px;
}


.hero h1 em {
    display: inline-block;

    font-style: normal;

    background:
        linear-gradient(
            100deg,
            var(--wine),
            #a53a62,
            var(--pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.hero-description {
    max-width: 650px;

    margin: auto;

    color: var(--muted);

    line-height: 1.8;

    font-size: 16px;
}


.scroll-indicator {
    margin-top: 38px;

    display: inline-flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: #947681;

    font-size: 10px;

    letter-spacing: .2em;

    text-transform: uppercase;
}


.scroll-indicator span {
    width: 1px;

    height: 38px;

    background:
        linear-gradient(
            var(--pink),
            transparent
        );

    animation:
        scrollLine 1.5s infinite;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 115px 6vw;
}


.container {
    max-width: 1120px;

    margin: auto;
}


.section-heading {
    max-width: 730px;

    margin-bottom: 45px;
}


.section-label {
    display: block;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .22em;

    color: #a33c61;

    margin-bottom: 14px;
}


.section-heading h2 {
    font-family: "Playfair Display", serif;

    font-size:
        clamp(36px, 5vw, 60px);

    line-height: 1.05;

    letter-spacing: -.04em;
}


.section-heading h2 strong {
    font-weight: 600;

    color: var(--wine);
}


.section-heading p {
    margin-top: 18px;

    color: var(--muted);

    line-height: 1.8;
}


/* =========================
   INTRO
========================= */

.intro-grid {
    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 25px;
}


.luxury-card {
    min-height: 300px;

    padding: 40px;

    border-radius: 32px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff2f6
        );

    border:
        1px solid var(--border);

    box-shadow: var(--shadow);

    transition: .4s ease;
}


.luxury-card:hover {
    transform: translateY(-8px);
}


.card-decoration {
    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    right: -120px;
    top: -120px;

    background:
        radial-gradient(
            circle,
            rgba(232, 138, 169, .28),
            transparent 70%
        );
}


.card-small-title {
    position: relative;

    font-size: 10px;

    letter-spacing: .22em;

    color: #a13b60;

    font-weight: 700;
}


.luxury-card h3 {
    position: relative;

    font-family:
        "Playfair Display",
        serif;

    color: var(--wine);

    font-size: 32px;

    line-height: 1.25;

    margin-top: 18px;

    max-width: 650px;
}


.luxury-card p {
    position: relative;

    margin-top: 20px;

    color: var(--muted);

    line-height: 1.8;
}


.rating-card {
    min-height: 300px;

    border-radius: 32px;

    position: relative;

    overflow: hidden;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #4b1028,
            #781d43
        );

    color: white;

    box-shadow:
        0 30px 80px
        rgba(75, 16, 40, .25);
}


.rating-circle {
    position: absolute;

    width: 320px;
    height: 320px;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 50%;

    animation:
        spinSlow 15s linear infinite;
}


.rating-circle::after {
    content: "";

    position: absolute;

    inset: 40px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 50%;
}


.rating-content {
    position: relative;

    z-index: 2;

    text-align: center;
}


.rating-number {
    font-family:
        "Playfair Display",
        serif;

    font-size: 76px;

    line-height: 1;
}


.stars,
.summary-stars,
.review-stars {
    color: #ffd5e2;

    letter-spacing: 5px;
}


.rating-card .stars {
    margin: 10px 0 7px;
}


.rating-text {
    display: block;

    font-size: 10px;

    letter-spacing: .18em;

    color: #efc8d6;
}


.rating-content small {
    display: block;

    margin-top: 7px;

    color: #d6acbc;
}


/* =========================
   CATEGORIAS
========================= */

.categories-section {
    padding-top: 80px;
}


.categories-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.category-card {
    min-height: 270px;

    padding: 25px;

    border-radius: 28px;

    background:
        rgba(255,255,255,.76);

    border:
        1px solid var(--border);

    box-shadow:
        0 18px 45px
        rgba(75, 16, 40, .07);

    position: relative;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.category-card::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    right: -90px;
    bottom: -90px;

    background:
        radial-gradient(
            circle,
            rgba(232,138,169,.25),
            transparent 70%
        );
}


.category-card:hover {
    transform:
        translateY(-10px);

    box-shadow:
        0 30px 65px
        rgba(75,16,40,.14);
}


.category-icon {
    height: 105px;

    display: grid;

    place-items: center;

    perspective: 600px;
}


/* ÍCONE VESTIDO */

.dress-icon {
    width: 70px;
    height: 90px;

    position: relative;

    transform:
        rotateX(12deg)
        rotateY(-15deg);

    animation:
        iconFloat 4s ease-in-out infinite;
}


.dress-top {
    position: absolute;

    width: 25px;
    height: 28px;

    left: 22px;
    top: 0;

    background:
        linear-gradient(
            145deg,
            #fff,
            #dfa0b7
        );

    border-radius:
        7px 7px 4px 4px;
}


.dress-body {
    position: absolute;

    left: 7px;
    top: 20px;

    width: 57px;
    height: 67px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #d77f9f
        );

    clip-path:
        polygon(
            27% 0,
            73% 0,
            100% 100%,
            0 100%
        );

    box-shadow:
        12px 14px 0
        rgba(75,16,40,.09);
}


/* CONJUNTOS */

.set-icon {
    width: 80px;
    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    transform:
        rotateX(10deg)
        rotateY(-15deg);

    animation:
        iconFloat 4s ease-in-out infinite;

    animation-delay: .4s;
}


.set-icon div {
    width: 34px;
    height: 70px;

    border-radius:
        14px 14px 18px 18px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #d887a7
        );

    box-shadow:
        10px 12px 0
        rgba(75,16,40,.08);
}


/* BLUSA */

.shirt-icon {
    width: 90px;
    height: 65px;

    position: relative;

    background:
        linear-gradient(
            145deg,
            #fff,
            #e09ab3
        );

    border-radius:
        18px 18px 25px 25px;

    transform:
        rotateX(12deg)
        rotateY(-15deg);

    box-shadow:
        12px 15px 0
        rgba(75,16,40,.08);

    animation:
        iconFloat 4s ease-in-out infinite;

    animation-delay: .8s;
}


.shirt-icon::before,
.shirt-icon::after {
    content: "";

    position: absolute;

    top: 0;

    width: 28px;
    height: 32px;

    background:
        #df9ab3;
}


.shirt-icon::before {
    left: -16px;

    transform:
        rotate(35deg);

    border-radius: 10px;
}


.shirt-icon::after {
    right: -16px;

    transform:
        rotate(-35deg);

    border-radius: 10px;
}


.shirt-icon span {
    position: absolute;

    width: 18px;
    height: 8px;

    background:
        rgba(75,16,40,.13);

    border-radius: 20px;

    top: 10px;
    left: 36px;
}


/* CALÇAS */

.pants-icon {
    width: 62px;
    height: 92px;

    position: relative;

    background:
        linear-gradient(
            145deg,
            #fff,
            #d687a5
        );

    clip-path:
        polygon(
            5% 0,
            95% 0,
            85% 100%,
            55% 100%,
            50% 47%,
            45% 100%,
            15% 100%
        );

    transform:
        rotateX(12deg)
        rotateY(-15deg);

    animation:
        iconFloat 4s ease-in-out infinite;

    animation-delay:
        1.2s;

    box-shadow:
        12px 15px 0
        rgba(75,16,40,.08);
}


.category-number {
    position: absolute;

    top: 22px;
    right: 22px;

    font-size: 10px;

    color: #c19aa8;

    letter-spacing: .15em;
}


.category-card h3 {
    font-family:
        "Playfair Display",
        serif;

    color: var(--wine);

    font-size: 25px;

    margin-bottom: 8px;
}


.category-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================
   EXPERIÊNCIA
========================= */

.experience-section {
    background:
        linear-gradient(
            135deg,
            #fff,
            #fff1f6
        );

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}


.features-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.feature-card {
    padding: 30px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 26px;

    box-shadow:
        0 15px 40px
        rgba(75,16,40,.06);

    transition: .3s ease;
}


.feature-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 25px 55px
        rgba(75,16,40,.11);
}


.feature-icon {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background:
        var(--pink-soft);

    color: var(--wine);

    font-size: 21px;

    margin-bottom: 20px;
}


.feature-card h3 {
    font-family:
        "Playfair Display",
        serif;

    color: var(--wine);

    font-size: 27px;

    margin-bottom: 10px;
}


.feature-card p {
    color: var(--muted);

    line-height: 1.75;

    font-size: 14px;
}


/* =========================
   REVIEWS
========================= */

.reviews-layout {
    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 28px;

    align-items: start;
}


.reviews-summary {
    padding: 38px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #4b1028,
            #781d43
        );

    color: white;

    box-shadow:
        0 25px 65px
        rgba(75,16,40,.22);

    position: sticky;

    top: 100px;
}


.summary-number {
    font-family:
        "Playfair Display",
        serif;

    font-size: 70px;

    line-height: 1;
}


.summary-stars {
    margin:
        10px 0 5px;

    font-size: 19px;
}


.reviews-summary p {
    color: #efc7d5;

    font-size: 13px;
}


.reviews-summary small {
    display: block;

    margin-top: 6px;

    color: #cfa5b5;
}


.reviews-list {
    display: grid;

    gap: 15px;
}


.review-card {
    padding: 25px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 25px;

    box-shadow:
        0 12px 35px
        rgba(75,16,40,.06);

    transition: .3s ease;
}


.review-card:hover {
    transform:
        translateX(6px);
}


.review-stars {
    font-size: 14px;

    margin-bottom: 10px;
}


.review-card p {
    color: #624d57;

    line-height: 1.75;

    font-size: 14px;
}


/* =========================
   FINAL CTA
========================= */

.final-section {
    padding:
        120px 6vw
        75px;

    text-align: center;
}


.final-card {
    max-width: 900px;

    margin: auto;

    padding:
        75px 35px;

    border-radius: 40px;

    background:
        radial-gradient(
            circle at 50% 0%,
            #8d2c54,
            #4b1028 52%,
            #250711
        );

    color: white;

    box-shadow:
        0 35px 100px
        rgba(75,16,40,.28);

    position: relative;

    overflow: hidden;
}


.final-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    left: 50%;
    top: -280px;

    transform:
        translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.12),
            transparent 65%
        );

    filter: blur(15px);

    animation:
        glowPulse 5s ease-in-out infinite;
}


.final-label {
    position: relative;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .25em;

    color: #f3afc4;
}


.final-card h2 {
    position: relative;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(38px, 6vw, 65px);

    line-height: 1.05;

    margin:
        18px auto;

    max-width: 750px;

    letter-spacing: -.04em;
}


.final-card p {
    position: relative;

    max-width: 580px;

    margin:
        0 auto
        30px;

    color: #efd3dd;

    line-height: 1.8;
}


/* WHATSAPP */

.whatsapp-button {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 11px;

    padding:
        17px 25px;

    border-radius: 999px;

    background: white;

    color: var(--wine);

    font-weight: 800;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.22);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.whatsapp-button:hover {
    transform:
        translateY(-5px)
        scale(1.02);

    box-shadow:
        0 23px 50px
        rgba(0,0,0,.3);
}


.whatsapp-icon {
    width: 22px;
    height: 22px;

    display: flex;
}


.whatsapp-icon svg {
    width: 100%;
    height: 100%;

    fill: #4b1028;
}


.arrow {
    font-size: 18px;
}


/* LOCALIZAÇÃO */

.location-button {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 16px;

    padding:
        12px 19px;

    border:
        1px solid
        rgba(255,255,255,.22);

    border-radius: 999px;

    color: #f5dce5;

    font-size: 12px;

    transition: .3s ease;
}


.location-button:hover {
    background:
        rgba(255,255,255,.08);

    transform:
        translateY(-2px);
}


/* INSTAGRAM */

.instagram-link {
    position: relative;

    display: block;

    margin-top: 25px;

    color: #cba7b5;

    font-size: 12px;

    opacity: .8;

    transition: .3s ease;
}


.instagram-link:hover {
    opacity: 1;

    color: white;
}


/* =========================
   FOOTER
========================= */

footer {
    padding:
        28px 6vw
        35px;

    text-align: center;

    color: #9a7d89;

    font-size: 10px;

    letter-spacing: .15em;
}


/* =========================
   ANIMAÇÕES
========================= */

.reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}


.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


.delay-1 {
    transition-delay: .08s;
}


.delay-2 {
    transition-delay: .16s;
}


.delay-3 {
    transition-delay: .24s;
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}


@keyframes loadingLine {
    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(300%);
    }
}


@keyframes loaderLogo {

    0%,
    100% {
        transform: scale(.98);
        opacity: .82;
    }

    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}


@keyframes logoFloat {

    0%,
    100% {
        transform:
            perspective(1000px)
            rotateX(4deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1000px)
            rotateX(4deg)
            translateY(-8px);
    }
}


@keyframes glowPulse {

    0%,
    100% {
        opacity: .45;
        transform: scale(.95);
    }

    50% {
        opacity: .85;
        transform: scale(1.05);
    }
}


@keyframes iconFloat {

    0%,
    100% {
        transform:
            rotateX(12deg)
            rotateY(-15deg)
            translateY(0);
    }

    50% {
        transform:
            rotateX(18deg)
            rotateY(-8deg)
            translateY(-8px);
    }
}


@keyframes scrollLine {

    50% {
        opacity: .2;

        transform:
            translateY(7px);
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .categories-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .intro-grid {
        grid-template-columns: 1fr;
    }


    .features-grid {
        grid-template-columns: 1fr;
    }


    .reviews-layout {
        grid-template-columns: 1fr;
    }


    .reviews-summary {
        position: relative;

        top: auto;
    }

}


/* =========================
   CELULAR
========================= */

@media (max-width: 560px) {

    header {
        padding:
            15px 5vw;
    }


    .brand-mini {
        font-size: 9px;
    }


    .header-button {
        font-size: 9px;

        padding:
            9px 12px;
    }


    main {
        padding-top: 65px;
    }


    .hero {
        min-height: auto;

        padding:
            70px 5vw
            90px;
    }


    .logo-container {
        width: 95vw;

        margin-bottom: 25px;
    }


    .hero h1 {
        font-size: 43px;
    }


    .hero-description {
        font-size: 14px;
    }


    .section {
        padding:
            82px 5vw;
    }


    .section-heading h2 {
        font-size: 37px;
    }


    .luxury-card,
    .rating-card {
        border-radius: 26px;

        padding: 28px;
    }


    .luxury-card h3 {
        font-size: 27px;
    }


    .categories-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;
    }


    .category-card {
        min-height: 225px;

        padding: 19px;

        border-radius: 22px;
    }


    .category-icon {
        height: 90px;
    }


    .category-card h3 {
        font-size: 20px;
    }


    .category-card p {
        font-size: 12px;
    }


    .category-number {
        font-size: 8px;

        top: 17px;
        right: 17px;
    }


    .final-section {
        padding:
            85px 5vw
            55px;
    }


    .final-card {
        padding:
            55px 22px;

        border-radius: 30px;
    }


    .final-card h2 {
        font-size: 40px;
    }


    .whatsapp-button {
        font-size: 13px;

        padding:
            15px 18px;
    }

}


/* =========================
   ACESSIBILIDADE
========================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .001ms !important;
    }

}