/* =============================================
   RESET
============================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #ffffff;
    color: #332b30;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

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

button {
    font-family: inherit;
}

:root {
    --black: #ffffff;
    --black-soft: #fff7fa;
    --black-card: #ffffff;

    --gold: #d94f82;
    --gold-light: #f29abb;
    --gold-dark: #b83264;

    --white: #ffffff;
    --cream: #3d3439;

    --gray: #746b70;
    --border: rgba(217, 79, 130, 0.18);

    --container: 1220px;
}


/* =============================================
   GLOBAL
============================================= */

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.section {
    padding: 120px 0;
}

.subtitle {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

h2 {
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -2px;
}

h2 span {
    color: var(--gold);
}

p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.98rem;
}


/* =============================================
   BUTTONS
============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 25px;

    border: 1px solid transparent;

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition: 0.35s ease;

    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(217, 79, 130, 0.20);
}

.btn-secondary {
    border-color: rgba(214, 179, 106, 0.4);
    color: var(--cream);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-large {
    padding: 19px 32px;
}


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

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    padding: 18px 0;

    transition: 0.35s ease;

    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    padding: 12px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    color: var(--gold);
    letter-spacing: 5px;
    font-size: 1.05rem;
}

.brand-text span {
    margin-top: 3px;
    font-size: 0.48rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #8a7f85;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    position: relative;

    font-size: 0.72rem;
    font-weight: 700;
    color: #5f555b;

    transition: 0.3s;
}

.nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: 0.3s;
}

.nav a:hover {
    color: var(--gold);
}

.nav a:hover::after {
    width: 100%;
}

.btn-header {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.menu-toggle {
    display: none;

    background: transparent;
    border: 0;

    width: 32px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    margin: 6px 0;
    background: var(--gold);
    transition: 0.3s;
}


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

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(214, 179, 106, 0.08),
            transparent 30%
        ),
        #ffffff;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.25;

    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size: 70px 70px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 80px;

    position: relative;
    z-index: 2;

    padding-top: 100px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 25px;

    color: var(--gold);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.eyebrow span {
    width: 45px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(3.4rem, 7vw, 6.8rem);
    line-height: 0.93;

    letter-spacing: -5px;

    max-width: 750px;

    margin-bottom: 30px;
}

.hero h1 span {
    display: block;
    color: var(--gold);
}

.hero-content > p {
    max-width: 580px;

    font-size: 1.05rem;

    color: #62585e;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 36px;
}

.hero-info {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 60px;
}

.hero-info > div {
    display: flex;
    flex-direction: column;
}

.hero-info strong {
    color: var(--cream);
    font-size: 1.1rem;
}

.hero-info span {
    margin-top: 5px;
    color: #8a7f85;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-info .separator {
    width: 1px;
    height: 30px;
    background: var(--border);
}


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

.hero-logo-area {
    min-height: 580px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-card {
    width: min(430px, 90%);
    aspect-ratio: 0.82;

    position: relative;
    z-index: 3;

    padding: 50px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.005)
        );

    border: 1px solid rgba(217,79,130,0.30);

    backdrop-filter: blur(10px);
}

.hero-logo-card::before {
    content: "";

    position: absolute;

    inset: 13px;

    border: 1px solid rgba(217,79,130,0.12);

    pointer-events: none;
}

.hero-logo-card img {
    max-height: 230px;
    object-fit: contain;
}

.mini-text {
    position: absolute;
    top: 30px;

    color: var(--gold);

    font-size: 0.58rem;
    font-weight: 800;

    letter-spacing: 4px;
}

.hero-logo-line {
    width: 60px;
    height: 1px;

    background: var(--gold);

    margin-top: 30px;
    margin-bottom: 20px;
}

.hero-logo-card p {
    color: #8a7f85;

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-logo-card p span {
    margin: 0 10px;
    color: var(--gold);
}

.gold-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(217,79,130,0.16);
}

.gold-circle-1 {
    width: 520px;
    height: 520px;
}

.gold-circle-2 {
    width: 650px;
    height: 650px;

    border-color: rgba(217,79,130,.07);
}

.scroll-down {
    position: absolute;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #8a7f85;

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 3px;
}

.scroll-down i {
    color: var(--gold);

    animation: bounce 1.8s infinite;
}

@keyframes bounce {
    50% {
        transform: translateY(8px);
    }
}


/* =============================================
   MARQUEE
============================================= */

.marquee {
    overflow: hidden;

    padding: 24px 0;

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

    background: var(--gold);
}

.marquee-track {
    width: max-content;

    display: flex;
    align-items: center;
    gap: 35px;

    animation: marquee 25s linear infinite;
}

.marquee-track span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 4px;

    color: #332b30;
}

.marquee-track i {
    color: #332b30;
    font-size: 0.55rem;
}

@keyframes marquee {
    to {
        transform: translateX(-40%);
    }
}


/* =============================================
   ABOUT
============================================= */

.about {
    background: #fff7fa;
}

.section-grid {
    display: grid;
    grid-template-columns: 0.35fr 1fr;

    gap: 100px;
}

.section-label {
    color: #8a7f85;

    font-size: 0.65rem;
    font-weight: 800;

    letter-spacing: 3px;
}

.section-label span {
    display: block;

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 2rem;
}

.about-content {
    max-width: 830px;
}

.about-content h2 {
    margin-top: 20px;
}

.large-text {
    margin-top: 35px;

    color: var(--cream);

    font-size: 1.35rem;

    max-width: 700px;
}

.about-content > p:not(.large-text) {
    margin-top: 20px;
    max-width: 700px;
}

.about-features {
    margin-top: 60px;

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

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

.about-features > div {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 30px 20px 20px 0;
}

.about-features i {
    color: var(--gold);
    font-size: 1.4rem;
}

.about-features strong {
    display: block;

    color: var(--cream);

    font-size: 0.85rem;
}

.about-features span {
    display: block;

    margin-top: 7px;

    color: #8a7f85;

    font-size: 0.72rem;
}


/* =============================================
   QUOTE
============================================= */

.quote-section {
    padding: 130px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(217,79,130,.08),
            transparent 42%
        ),
        #ffffff;
}

.quote-mark {
    display: block;

    height: 60px;

    color: var(--gold);

    font-family: Georgia, serif;

    font-size: 6rem;

    line-height: 1;
}

.quote-section h2 {
    max-width: 1000px;

    margin: 25px auto 30px;

    font-size: clamp(2rem, 4vw, 4.2rem);
}

.quote-line {
    width: 80px;
    height: 1px;

    margin: 0 auto 18px;

    background: var(--gold);
}

.quote-section p {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 5px;

    color: #8a7f85;
}


/* =============================================
   SECTION HEADING
============================================= */

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 60px;

    margin-bottom: 65px;
}

.section-heading h2 {
    margin-top: 15px;

    max-width: 800px;
}

.section-heading > p {
    max-width: 400px;
}


/* =============================================
   PROCEDURES
============================================= */

.procedures {
    background: #ffffff;
}

.procedure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.procedure-card {
    position: relative;

    overflow: hidden;

    background: var(--black-card);

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

    transition: 0.45s ease;
}

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

    border-color: rgba(217,79,130,.5);
}

.procedure-image {
    height: 440px;

    position: relative;

    overflow: hidden;

    background: #f9edf2;
}

.procedure-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: brightness(0.82);

    transition: transform 0.7s ease;
}

.procedure-card:hover img {
    transform: scale(1.05);
}

.procedure-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        transparent 50%,
        rgba(70,30,45,.12)
    );
}

.procedure-number {
    position: absolute;

    top: 20px;
    right: 20px;

    z-index: 2;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: rgba(70,30,45,.65);

    border: 1px solid rgba(217,79,130,.4);

    color: var(--gold);

    font-weight: 800;

    backdrop-filter: blur(8px);
}

.procedure-content {
    padding: 30px;
}

.procedure-content > span {
    color: var(--gold);

    font-size: 0.6rem;
    font-weight: 800;

    letter-spacing: 3px;
}

.procedure-content h3 {
    margin: 12px 0;

    font-size: 1.45rem;
    color: var(--cream);
}

.procedure-content p {
    font-size: 0.83rem;
}


/* =============================================
   EXPERIENCE
============================================= */

 .experience {
    padding: 120px 0;

    background: var(--gold);

    color: #332b30;
}

.experience .subtitle {
    color: #32250d;
}

.experience-header h2 {
    margin-top: 16px;

    color: #332b30;
}

.experience-header h2 span {
    color: rgba(70,30,45,.55);
}

.experience-grid {
    margin-top: 70px;

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

.experience-item {
    min-height: 300px;

    padding: 35px;

    border-top: 1px solid rgba(120,60,85,.25);
    border-right: 1px solid rgba(120,60,85,.20);
}

.experience-item > span {
    font-size: 0.7rem;
    font-weight: 800;
}

.experience-item i {
    display: block;

    margin: 55px 0 25px;

    font-size: 1.8rem;
}

.experience-item h3 {
    font-size: 1.1rem;
}

.experience-item p {
    margin-top: 12px;

    color: rgba(70,30,45,.65);

    font-size: 0.8rem;
}


/* =============================================
   BEFORE AFTER
============================================= */

.results {
    background: #ffffff;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 70px 1fr;

    gap: 20px;

    align-items: center;
}

.result-card {
    position: relative;

    height: 600px;

    overflow: hidden;

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

    background: #ffffff;
}

.result-card img {
    height: 100%;
    object-fit: cover;

    transition: 0.6s ease;
}

.result-card:hover img {
    transform: scale(1.025);
}

.result-label {
    position: absolute;
    z-index: 3;

    top: 25px;
    left: 25px;

    padding: 10px 17px;

    background: #ffffff;

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.result-label.gold {
    background: var(--gold);
    color: #332b30;
}

.result-divider {
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.result-divider span {
    writing-mode: vertical-rl;

    color: var(--gold);

    font-weight: 800;

    letter-spacing: 5px;

    font-size: 0.62rem;
}

.result-divider-line {
    width: 1px;
    height: 130px;

    margin-top: 25px;

    background: linear-gradient(
        var(--gold),
        transparent
    );
}

.results-disclaimer {
    margin-top: 20px;

    text-align: right;

    font-size: 0.65rem;
    color: #8a7f85;
}


/* =============================================
   TESTIMONIALS
============================================= */

.testimonials {
    background: #ffffff;
}

.testimonials-header {
    text-align: center;
}

.testimonials-header h2 {
    margin: 15px auto 35px;
}

.rating-big {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 20px;

    margin-bottom: 60px;
}

.rating-big > strong {
    font-size: 3.5rem;
    color: var(--gold);
}

.stars {
    color: var(--gold);
    letter-spacing: 3px;
}

.rating-big span {
    display: block;

    margin-top: 7px;

    color: #8a7f85;

    font-size: 0.7rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.testimonial-card {
    min-height: 330px;

    padding: 40px;

    display: flex;
    flex-direction: column;

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

    background: #fff7fa;
}

.testimonial-card.featured {
    border-color: rgba(217,79,130,.5);

    background:
        linear-gradient(
            145deg,
            rgba(217,79,130,.07),
            #fff7fa
        );
}

.testimonial-card blockquote {
    margin-top: 30px;

    color: #43383e;

    font-size: 1rem;
    font-weight: 500;

    line-height: 1.8;

    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 30px;
}

.avatar {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

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

    color: var(--gold);

    font-weight: 800;
}

.testimonial-author strong {
    display: block;

    font-size: 0.82rem;
}

.testimonial-author span {
    display: block;

    margin-top: 5px;

    color: #8a7f85;

    font-size: 0.67rem;
}


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

.cta {
    position: relative;

    overflow: hidden;

    padding: 150px 0;

    text-align: center;

    background: #fff7fa;
}

.cta-content {
    position: relative;
    z-index: 3;
}

.cta-content > span {
    color: var(--gold);

    font-size: 0.67rem;
    font-weight: 800;

    letter-spacing: 4px;
}

.cta h2 {
    max-width: 900px;

    margin: 20px auto 25px;
}

.cta h2 strong {
    display: block;
    color: var(--gold);
}

.cta p {
    max-width: 550px;

    margin: 0 auto 35px;
}

.cta-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(217,79,130,.08);
}

.cta-circle-one {
    width: 650px;
    height: 650px;

    top: -350px;
    left: -220px;
}

.cta-circle-two {
    width: 500px;
    height: 500px;

    bottom: -300px;
    right: -150px;
}


/* =============================================
   LOCATION
============================================= */

.location {
    background: #ffffff;
}

.location-grid {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;

    gap: 50px;
}

.location-info {
    padding: 30px 0;
}

.location-number {
    color: var(--gold);

    font-size: 0.65rem;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 40px;
}

.location-info h3 {
    color: var(--gold);

    font-size: 2.5rem;

    letter-spacing: 8px;
}

.location-name {
    margin-top: 7px;

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 2px;
}

.address {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    margin-top: 35px;
}

.address i {
    color: var(--gold);

    margin-top: 5px;
}

.address p {
    font-size: 0.83rem;
}

.location-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 40px;
}

.map {
    min-height: 500px;

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

    filter: grayscale(1) contrast(1.1);
}

.map iframe {
    width: 100%;
    height: 100%;

    min-height: 500px;

    border: 0;
}


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

.footer {
    padding: 70px 0 30px;

    background: #fff7fa;

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

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 50px;

    border-bottom: 1px solid rgba(217,79,130,.10);
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 15px;
}

.footer-brand img {
    width: 65px;
    height: 65px;

    object-fit: contain;
}

.footer-brand strong {
    display: block;

    color: var(--gold);

    letter-spacing: 6px;
}

.footer-brand span {
    display: block;

    margin-top: 5px;

    font-size: 0.52rem;

    letter-spacing: 2px;

    color: #8a7f85;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #8a7f85;

    font-size: 0.7rem;
    font-weight: 700;

    transition: .3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 30px;
}

.footer-bottom p,
.footer-bottom span {
    font-size: 0.62rem;
    color: #9a9095;
}


/* =============================================
   FLOATING WHATSAPP
============================================= */

.floating-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 13px 18px;

    background: var(--gold);

    color: #332b30;

    font-size: 0.7rem;
    font-weight: 800;

    box-shadow: 0 10px 40px rgba(0,0,0,.4);

    transition: .3s;
}

.floating-whatsapp i {
    font-size: 1.25rem;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);

    background: var(--gold-light);
}


/* =============================================
   REVEAL
============================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


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

@media (max-width: 1050px) {

    .nav,
    .btn-header {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav.active {
        position: absolute;

        top: 76px;
        left: 4%;
        right: 4%;

        display: flex;
        flex-direction: column;

        gap: 0;

        padding: 20px;

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

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

        backdrop-filter: blur(20px);
    }

    .nav.active a {
        padding: 16px 5px;

        border-bottom: 1px solid rgba(217,79,130,.10);
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-top: 140px;
        padding-bottom: 100px;
    }

    .hero {
        min-height: auto;
    }

    .hero-logo-area {
        min-height: 480px;
    }

    .hero-logo-card {
        max-width: 380px;
    }

    .scroll-down {
        display: none;
    }

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

    .procedure-card:last-child {
        grid-column: span 2;
    }

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

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

}


/* =============================================
   MOBILE
============================================= */

@media (max-width: 720px) {

    .section {
        padding: 80px 0;
    }

    .brand-text span {
        display: none;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 5rem);

        letter-spacing: -3px;
    }

    .hero-content > p {
        font-size: .9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-info {
        gap: 15px;

        justify-content: space-between;
    }

    .hero-info strong {
        font-size: .9rem;
    }

    .hero-info span {
        font-size: .52rem;
    }

    .hero-logo-area {
        min-height: 390px;
    }

    .hero-logo-card {
        width: 90%;

        padding: 35px;
    }

    .gold-circle-1 {
        width: 370px;
        height: 370px;
    }

    .gold-circle-2 {
        width: 450px;
        height: 450px;
    }

    .section-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .section-label {
        display: none;
    }

    h2 {
        font-size: 2.3rem;

        letter-spacing: -1px;
    }

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

    .section-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
    }

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

    .procedure-card:last-child {
        grid-column: auto;
    }

    .procedure-image {
        height: 360px;
    }

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

    .experience-item {
        min-height: auto;
    }

    .experience-item i {
        margin: 35px 0 20px;
    }

    .before-after {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .result-card {
        height: 450px;
    }

    .result-divider {
        height: 60px;

        flex-direction: row;

        gap: 20px;
    }

    .result-divider span {
        writing-mode: horizontal-tb;
    }

    .result-divider-line {
        width: 100px;
        height: 1px;

        margin: 0;
    }

    .results-disclaimer {
        text-align: left;
    }

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

        padding: 30px;
    }

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

    .map,
    .map iframe {
        min-height: 400px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;

        gap: 35px;
    }

    .footer-links {
        flex-wrap: wrap;

        gap: 18px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 12px;
    }

    .floating-whatsapp {
        width: 55px;
        height: 55px;

        right: 18px;
        bottom: 18px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;
    }

    .floating-whatsapp span {
        display: none;
    }

}


/* =============================================
   REDUCED MOTION
============================================= */

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}


/* =========================================================
   BLISS BEAUTY — FUNDO DEGRADÊ PREMIUM
   ========================================================= */

html,
body {
    background: #fff8fb;
}

/* Fundo geral com manchas suaves de luz */
body {
    background:
        radial-gradient(
            ellipse 70% 45% at 8% 8%,
            rgba(242, 154, 187, 0.24) 0%,
            rgba(242, 154, 187, 0.08) 35%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 60% 50% at 92% 18%,
            rgba(255, 205, 222, 0.30) 0%,
            transparent 68%
        ),
        radial-gradient(
            ellipse 65% 45% at 75% 92%,
            rgba(217, 79, 130, 0.10) 0%,
            transparent 70%
        ),
        linear-gradient(
            135deg,
            #fff8fb 0%,
            #ffffff 42%,
            #fff5f8 72%,
            #ffeef4 100%
        );
}

/* Hero */
.hero {
    background:
        radial-gradient(
            ellipse 65% 75% at 82% 42%,
            rgba(242, 154, 187, 0.24) 0%,
            rgba(242, 154, 187, 0.08) 35%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 55% 55% at 10% 85%,
            rgba(255, 211, 226, 0.32) 0%,
            transparent 68%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fff9fb 45%,
            #ffeef4 100%
        );
}

/* Deixa a textura do hero mais elegante no fundo claro */
.hero::before {
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(217, 79, 130, 0.07) 0 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(217, 79, 130, 0.05) 0 1px,
            transparent 1px
        );
    background-size: 90px 90px, 120px 120px;
    opacity: 0.65;
}

/* Sobre */
.about {
    background:
        radial-gradient(
            ellipse 55% 70% at 0% 55%,
            rgba(242, 154, 187, 0.13),
            transparent 70%
        ),
        linear-gradient(
            120deg,
            #fff7fa 0%,
            #ffffff 55%,
            #fff9fb 100%
        );
}

/* Frase de impacto */
.quote-section {
    background:
        radial-gradient(
            ellipse 55% 70% at 50% 50%,
            rgba(242, 154, 187, 0.17),
            transparent 68%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fff6f9 50%,
            #fff0f5 100%
        );
}

/* Procedimentos */
.procedures {
    background:
        radial-gradient(
            ellipse 50% 70% at 95% 10%,
            rgba(242, 154, 187, 0.12),
            transparent 70%
        ),
        linear-gradient(
            135deg,
            #fffafc 0%,
            #ffffff 48%,
            #fff4f7 100%
        );
}

/* Faixa de experiência */
.experience {
    background:
        radial-gradient(
            ellipse 55% 100% at 15% 20%,
            rgba(255,255,255,0.45),
            transparent 65%
        ),
        linear-gradient(
            120deg,
            #f7b5ca 0%,
            #ee91b2 48%,
            #d94f82 100%
        );
}

/* Antes e depois */
.results {
    background:
        radial-gradient(
            ellipse 65% 50% at 80% 85%,
            rgba(242, 154, 187, 0.12),
            transparent 70%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fff9fb 55%,
            #fff1f5 100%
        );
}

/* Depoimentos */
.testimonials {
    background:
        radial-gradient(
            ellipse 60% 60% at 15% 20%,
            rgba(242, 154, 187, 0.14),
            transparent 70%
        ),
        linear-gradient(
            135deg,
            #fff7fa 0%,
            #ffffff 50%,
            #fff2f6 100%
        );
}

/* CTA */
.cta {
    background:
        radial-gradient(
            ellipse 70% 80% at 50% 100%,
            rgba(217, 79, 130, 0.20),
            transparent 65%
        ),
        radial-gradient(
            ellipse 50% 60% at 5% 10%,
            rgba(242, 154, 187, 0.20),
            transparent 70%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fff4f8 50%,
            #fce2eb 100%
        );
}

/* Localização */
.location {
    background:
        radial-gradient(
            ellipse 55% 65% at 5% 80%,
            rgba(242, 154, 187, 0.12),
            transparent 70%
        ),
        linear-gradient(
            120deg,
            #ffffff 0%,
            #fff9fb 60%,
            #fff0f5 100%
        );
}

/* Rodapé */
.footer {
    background:
        radial-gradient(
            ellipse 70% 100% at 90% 0%,
            rgba(242, 154, 187, 0.14),
            transparent 70%
        ),
        linear-gradient(
            135deg,
            #fff7fa 0%,
            #ffffff 55%,
            #ffeef4 100%
        );
}

/* Círculos decorativos do CTA ficam mais visíveis */
.cta-circle {
    border-color: rgba(217, 79, 130, 0.14);
}

/* Cards continuam limpos para preservar contraste */
.procedure-card,
.testimonial-card,
.result-card {
    box-shadow:
        0 18px 55px rgba(112, 47, 72, 0.06);
}

/* No celular, suaviza o degradê para não pesar */
@media (max-width: 720px) {
    body {
        background:
            radial-gradient(
                ellipse 100% 35% at 50% 0%,
                rgba(242, 154, 187, 0.20),
                transparent 70%
            ),
            linear-gradient(
                180deg,
                #fff8fb 0%,
                #ffffff 42%,
                #fff3f7 100%
            );
    }

    .hero {
        background:
            radial-gradient(
                ellipse 100% 55% at 50% 0%,
                rgba(242, 154, 187, 0.20),
                transparent 72%
            ),
            linear-gradient(
                180deg,
                #ffffff 0%,
                #fff5f8 100%
            );
    }
}
