/* ═══════════════════════════════════════════
   AUTHENTIC SALON — style.css
   Responsivo premium
   ═══════════════════════════════════════════ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #F5F0EB;
    --linen: #EDE7DF;
    --warm-white: #FAF8F5;
    --mink: #C4AFA0;
    --taupe: #9B8B80;
    --bark: #5C4A40;
    --espresso: #2E1F18;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;

    --nav-h: 78px;
    --section-gap: clamp(60px, 8vw, 110px);
    --px: clamp(20px, 5vw, 64px);
    --container: 1240px;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--espresso);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--font-body);
}

.ann-bar {
    background: var(--espresso);
    color: var(--gold-light);
    text-align: center;
    font-size: clamp(9px, 1.8vw, 11px);
    letter-spacing: .18em;
    padding: 9px var(--px);
    font-weight: 300;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 248, 245, .96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196, 175, 160, .2);
    padding: 0 var(--px);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 102;
}

.nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--bark);
    font-weight: 400;
    transition: color .3s;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .35s ease;
}

.nav-links a:hover {
    color: var(--espresso);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto;
}

.nav-icons a {
    color: var(--bark);
    transition: color .3s, transform .3s;
    display: flex;
    align-items: center;
}

.nav-icons a:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.nav-icons svg {
    width: 20px;
    height: 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px 4px;
    background: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 102;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--bark);
    transition: all .3s ease;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: calc(100svh - 42px);
    background: linear-gradient(180deg, #efe7df 0%, #ede7df 100%);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 35%, rgba(201, 169, 110, .08), transparent 28%),
        radial-gradient(circle at 30% 70%, rgba(92, 74, 64, .05), transparent 35%);
    pointer-events: none;
}

.hero-image-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    filter:
        drop-shadow(20px 0 60px rgba(46, 31, 24, .22)) drop-shadow(-4px 0 18px rgba(46, 31, 24, .1));
}

.hero-bg-text {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(60px, 14vw, 190px);
    font-weight: 300;
    color: rgba(196, 175, 160, .12);
    letter-spacing: .04em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-left: auto;
    width: 52%;
    text-align: right;
    padding: 110px clamp(24px, 8%, 100px) 12vh 24px;
}

.hero-eyebrow {
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 400;
    margin-bottom: 18px;
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 6.5vw, 96px);
    font-weight: 300;
    line-height: .95;
    color: var(--espresso);
    letter-spacing: -.01em;
    margin-bottom: 10px;
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold);
    font-size: .85em;
    display: block;
    font-weight: 400;
}

.hero-sub {
    font-size: 12px;
    letter-spacing: .12em;
    color: var(--taupe);
    font-weight: 300;
    margin: 24px 0 36px;
    text-transform: uppercase;
}

.btn-outline {
    display: inline-block;
    padding: 14px 38px;
    border: 1px solid var(--espresso);
    color: var(--espresso);
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 400;
    transition: background .4s ease, color .4s ease, transform .3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--espresso);
    color: var(--warm-white);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--taupe);
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
    pointer-events: none;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--taupe), transparent);
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.section-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 52px);
    padding: 0 var(--px);
}

.section-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 54px);
    font-weight: 300;
    color: var(--espresso);
    letter-spacing: .02em;
}

.section-rule {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
}

.carousel-wrap {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 0 var(--px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    padding: 0 var(--px);
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--mink);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bark);
    border-radius: 50%;
    transition: background .3s, border-color .3s, color .3s, transform .3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
    background: var(--espresso);
    border-color: var(--espresso);
    color: var(--warm-white);
    outline: none;
    transform: translateY(-2px);
}

.services {
    padding: var(--section-gap) 0;
    background: var(--warm-white);
}

.carousel-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 260px;
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 9 / 16;
    background: var(--linen);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .7s ease, filter .5s;
    filter: saturate(.85) brightness(.98);
}

.carousel-item:hover img {
    transform: scale(1.05);
    filter: saturate(1) brightness(1);
}

.testimonials {
    padding: var(--section-gap) 0;
    background: var(--linen);
}

.test-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    scroll-snap-align: start;
    background: var(--warm-white);
    padding: 40px 36px;
    position: relative;
    transition: transform .4s ease, box-shadow .4s ease;
}

.test-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--gold-light);
    position: absolute;
    top: 12px;
    left: 28px;
    line-height: 1;
    font-weight: 300;
}

.test-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(46, 31, 24, .08);
}

.stars {
    display: flex;
    gap: 3px;
    margin: 24px 0 20px;
}

.stars svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.test-text {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.7;
    color: var(--bark);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 24px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.test-avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--linen);
    border: 1px solid var(--mink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--taupe);
    font-weight: 500;
}

.test-name {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--espresso);
    font-weight: 500;
}

.test-role {
    font-size: 10px;
    color: var(--taupe);
    letter-spacing: .06em;
    margin-top: 2px;
    font-weight: 300;
}

.cta-section {
    display: flex;
    min-height: 520px;
    overflow: hidden;
    align-items: stretch;
}

.cta-left {
    flex: 1;
    background: var(--espresso);
    padding: clamp(48px, 6vw, 84px) clamp(32px, 6vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-label {
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 24px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 60px);
    font-weight: 300;
    color: var(--warm-white);
    line-height: 1.08;
    margin-bottom: 10px;
}

.cta-title em {
    font-style: italic;
    color: var(--gold);
}

.cta-perks {
    list-style: none;
    margin: 28px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .1em;
    color: var(--gold-light);
    font-weight: 300;
    line-height: 1.6;
}

.cta-perks li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 1px;
    background: var(--gold);
    margin-top: 0;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    align-self: flex-start;
    padding: 16px 42px;
    background: var(--gold);
    color: var(--espresso);
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background .4s ease, transform .4s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateX(4px);
}

.cta-right {
    flex: 1;
    overflow: hidden;
    min-height: 0;
    line-height: 0;
}

.cta-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.9) saturate(.85);
    display: block;
}

footer {
    background: #1A1008;
    padding: clamp(48px, 6vw, 72px) var(--px) 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .8fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto 52px;
}

.footer-logo-img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 20px;
    mix-blend-mode: lighten;
    opacity: .9;
}

.footer-tagline {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 300;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 16px;
    background: transparent;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(196, 175, 160, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mink);
    transition: border-color .3s, color .3s, transform .3s;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-col h4 {
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 22px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--taupe);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: .06em;
    transition: color .3s;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.footer-contact p {
    color: var(--taupe);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: .06em;
    line-height: 1.9;
}

.footer-contact a {
    color: var(--taupe);
    transition: color .3s;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(196, 175, 160, .12);
    padding-top: 28px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 1100px;
}

.footer-bottom p {
    font-size: 10px;
    color: rgba(155, 139, 128, .5);
    letter-spacing: .1em;
    font-weight: 300;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp .9s ease forwards;
}

.delay-1 {
    animation-delay: .15s;
}

.delay-2 {
    animation-delay: .3s;
}

.delay-3 {
    animation-delay: .45s;
}

.delay-4 {
    animation-delay: .6s;
}

@media (max-width: 1100px) {
    .hero-image-wrap {
        width: 50%;
    }

    .hero-content {
        width: 50%;
        padding-right: clamp(24px, 6vw, 60px);
    }
}

@media (max-width: 900px) {
    .carousel-item {
        flex: 0 0 calc(50% - 10px);
    }

    .test-card {
        flex: 0 0 calc(50% - 10px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-grid>div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {

    :root {
        --nav-h: 72px;
    }

    .hero-image-wrap {
        position: relative;
        overflow: hidden;
    }

    .hero-image-wrap::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 120px;
        background: linear-gradient(to bottom, rgba(237, 231, 223, 0) 0%, rgba(237, 231, 223, 1) 100%);
        pointer-events: none;
    }

    .main-nav {
        position: sticky;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-logo {
        position: static;
        transform: none;
        z-index: 102;
    }

    .nav-logo img {
        height: 34px;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-icons {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: calc(42px + var(--nav-h));
        left: 0;
        width: 100%;
        height: calc(100dvh - (42px + var(--nav-h)));
        background: rgba(250, 248, 245, .98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 48px;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s ease, visibility .3s ease;
        z-index: 101;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 15px;
        letter-spacing: .22em;
    }

    .hero {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
        padding-top: 18px;
    }

    .hero-image-wrap {
        position: relative;
        left: auto;
        bottom: auto;
        width: min(86%, 560px);
        height: 72vw;
        min-height: 320px;
        max-height: 620px;
        margin: 0 auto;
    }

    .hero-image-wrap img {
        object-position: center top;
        filter: drop-shadow(0 10px 30px rgba(46, 31, 24, .14));
    }

    .hero-content {
        width: 100%;
        text-align: center;
        padding: 30px var(--px) 58px;
        margin: 0;
    }

    .hero-bg-text,
    .hero-scroll {
        display: none;
    }

    .btn-outline {
        width: min(100%, 320px);
        text-align: center;
    }

    .carousel-item {
        flex: 0 0 78%;
    }

    .test-card {
        flex: 0 0 84%;
    }

    .cta-section {
        flex-direction: column;
    }

    .cta-right {
        order: 1;
        height: 320px;
        min-height: 0;
        flex: none;
        line-height: 0;
    }

    .cta-left {
        order: 2;
        padding: clamp(40px, 6vw, 64px) var(--px);
    }

    .btn-gold {
        align-self: stretch;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 24px;
    }

    .cta-title {
        font-size: 28px;
    }

    .carousel-item {
        flex: 0 0 92%;
    }

    .test-card {
        flex: 0 0 94%;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ═══════════════════════════════════════════
   CONVERSION UPDATES — Authentic Salon
   ═══════════════════════════════════════════ */

/* Hero badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 0;
    justify-content: flex-end;
    margin: 20px 0 28px;
    align-items: center;
}

.hero-badge {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 300;
}

.hero-badge-sep {
    display: inline-block;
    width: 1px;
    height: 10px;
    background: var(--mink);
    margin: 0 12px;
    vertical-align: middle;
    opacity: .5;
}

/* Quebra de objeção */
.objection {
    background: var(--espresso);
    padding: clamp(40px, 5vw, 68px) var(--px);
}

.objection-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.objection-headline {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    letter-spacing: .02em;
    margin-bottom: 18px;
}

.objection-body {
    font-size: clamp(12px, 1.4vw, 14px);
    color: rgba(232, 213, 176, .7);
    font-weight: 300;
    line-height: 1.85;
    letter-spacing: .06em;
    max-width: 600px;
    margin: 0 auto;
}

/* Service cards */
.service-cards-wrap {
    padding: 0 var(--px);
    max-width: var(--container);
    margin: 0 auto;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--linen);
    border: 1px solid var(--linen);
}

.service-card {
    background: var(--warm-white);
    padding: clamp(28px, 3vw, 44px) clamp(20px, 2.5vw, 36px);
    position: relative;
    transition: background .35s;
}

.service-card:hover {
    background: var(--cream);
}

.service-num {
    display: block;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 16px;
}

.service-name {
    font-family: var(--font-display);
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 400;
    color: var(--espresso);
    letter-spacing: .02em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-desc {
    font-size: 11px;
    color: var(--taupe);
    letter-spacing: .06em;
    line-height: 1.7;
    font-weight: 300;
}

/* Differentials section */
.differentials {
    padding: var(--section-gap) var(--px);
    background: var(--linen);
}

.differentials-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.diff-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 52px);
}

.diff-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 36px) clamp(24px, 4vw, 56px);
    max-width: 900px;
    margin: 0 auto;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.diff-icon {
    flex-shrink: 0;
    width: 28px;
    height: 1px;
    background: var(--gold);
    margin-top: 10px;
}

.diff-item-title {
    display: block;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--espresso);
    font-weight: 500;
    margin-bottom: 8px;
}

.diff-item-desc {
    font-size: 12px;
    color: var(--taupe);
    line-height: 1.75;
    font-weight: 300;
    letter-spacing: .04em;
}

/* About / Autoridade */
.about {
    display: flex;
    overflow: hidden;
    align-items: stretch;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    background: var(--cream);
}

.about-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(.9) saturate(.85);
}

.about-content {
    flex: 1;
    background: var(--cream);
    padding: clamp(48px, 6vw, 84px) clamp(32px, 6vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    font-family: var(--font-display);
    font-size: clamp(15px, 1.5vw, 19px);
    line-height: 1.8;
    color: var(--bark);
    font-weight: 300;
    font-style: italic;
    margin: 28px 0 36px;
    max-width: 480px;
}

/* CTA body text */
.cta-body {
    font-size: 12px;
    color: rgba(232, 213, 176, .65);
    font-weight: 300;
    letter-spacing: .06em;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 400px;
}

/* WhatsApp float button */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35), 0 2px 8px rgba(0, 0, 0, .15);
    transition: transform .35s ease, box-shadow .35s ease;
    color: #fff;
}

.wa-float svg {
    width: 26px;
    height: 26px;
}

.wa-float:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .45), 0 4px 12px rgba(0, 0, 0, .18);
}

/* ── Responsive additions ─────────────────────── */
@media (max-width: 900px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .about {
        flex-direction: column;
    }

    .about-image {
        height: 320px;
        min-height: 0;
        flex: none;
        line-height: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 72px;
    }

    .hero-image-wrap {
        position: relative;
        overflow: hidden;
    }

    .hero-image-wrap::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 120px;
        background: linear-gradient(to bottom, rgba(237, 231, 223, 0) 0%, rgba(237, 231, 223, 1) 100%);
        pointer-events: none;
    }

    .main-nav {
        position: sticky;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-logo {
        position: static;
        transform: none;
        z-index: 102;
    }

    .nav-logo img {
        height: 34px;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-icons {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: calc(42px + var(--nav-h));
        left: 0;
        width: 100%;
        height: calc(100dvh - (42px + var(--nav-h)));
        background: rgba(250, 248, 245, .98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 48px;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s ease, visibility .3s ease;
        z-index: 101;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 15px;
        letter-spacing: .22em;
    }

    .hero {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
        padding-top: 18px;
    }

    .hero-image-wrap {
        position: relative;
        left: auto;
        bottom: auto;
        width: min(86%, 560px);
        height: 72vw;
        min-height: 320px;
        max-height: 620px;
        margin: 0 auto;
    }

    .hero-image-wrap img {
        object-position: center top;
        filter: drop-shadow(0 10px 30px rgba(46, 31, 24, .14));
    }

    .hero-content {
        width: 100%;
        text-align: center;
        padding: 30px var(--px) 58px;
        margin: 0;
    }

    .hero-bg-text,
    .hero-scroll {
        display: none;
    }

    .btn-outline {
        width: min(100%, 320px);
        text-align: center;
    }

    .carousel-item {
        flex: 0 0 78%;
    }

    .test-card {
        flex: 0 0 84%;
    }

    .cta-section {
        flex-direction: column;
    }

    .cta-right {
        order: 1;
        height: 320px;
        min-height: 0;
        flex: none;
        line-height: 0;
    }

    .cta-left {
        order: 2;
        padding: clamp(40px, 6vw, 64px) var(--px);
    }

    .btn-gold {
        align-self: stretch;
    }

    .hero-badges {
        justify-content: center;
        gap: 4px 0;
    }

    .hero-badge-sep {
        margin: 0 8px;
    }

    .diff-list {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: clamp(40px, 6vw, 64px) var(--px);
    }

    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .wa-float svg {
        width: 23px;
        height: 23px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .ann-bar {
        white-space: normal;
        line-height: 1.5;
        letter-spacing: .12em;
    }

    .hero-image-wrap {
        width: 92%;
        height: 92vw;
        min-height: 280px;
    }

    .hero-h1 {
        font-size: clamp(36px, 12vw, 56px);
    }

    .hero-sub {
        font-size: 11px;
        line-height: 1.6;
    }

    .carousel-item {
        flex: 0 0 86%;
    }

    .test-card {
        flex: 0 0 90%;
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .hero-badge-sep {
        display: none;
    }

    .cta-perks li {
        font-size: 11px;
        line-height: 1.5;
        align-items: flex-start;
    }

    .cta-perks li::before {
        margin-top: 8px;
    }
}

@media (max-width: 560px) {
    .service-cards {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .hero-badge-sep {
        display: none;
    }
}

/* ═══════════════════════════════════════════
   INNER PAGES & SERVICE HOVER
   ═══════════════════════════════════════════ */

a.service-card {
    display: block;
    cursor: pointer;
    text-decoration: none;
    transition: background .35s, transform .35s ease, box-shadow .35s ease;
}

a.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(46, 31, 24, 0.08);
    z-index: 10;
}

.service-arrow {
    position: absolute;
    bottom: clamp(24px, 3vw, 36px);
    right: clamp(20px, 2.5vw, 36px);
    width: 22px;
    height: 22px;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity .35s ease, transform .35s ease;
}

.service-arrow svg {
    width: 100%;
    height: 100%;
}

a.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Inner Page Struct */
.inner-hero {
    min-height: clamp(30vh, 50vh, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #efe7df 0%, #ede7df 100%);
    padding: clamp(36px, 12vw, 160px) var(--px) clamp(48px, 8vw, 100px);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .inner-hero {
        align-items: flex-start;
        padding-top: 48px;
        padding-bottom: 32px;
        min-height: auto;
    }

    .inner-section {
        padding-top: 44px !important;
        padding-bottom: 44px !important;
    }

    .final-banner {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(201, 169, 110, .08), transparent 50%);
    pointer-events: none;
}

.inner-h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 56px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--espresso);
    letter-spacing: 0.02em;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.inner-section {
    padding: clamp(60px, 8vw, 100px) var(--px);
    display: flex;
    justify-content: center;
}

.inner-section.alt {
    background: var(--linen);
}

.inner-content {
    max-width: 760px;
    width: 100%;
    text-align: center;
}

.inner-label {
    display: block;
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 500;
}

.inner-text {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 28px);
    line-height: 1.6;
    color: var(--espresso);
    font-style: italic;
    font-weight: 300;
}

.inner-difs {
    list-style: none;
    margin: 40px auto 0;
    max-width: 500px;
    text-align: left;
}

.inner-difs li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: clamp(14px, 1.8vw, 16px);
    color: var(--bark);
    letter-spacing: .04em;
    line-height: 1.6;
    font-weight: 300;
}

.inner-difs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 14px;
    height: 1px;
    background: var(--gold);
}

.inner-price {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 54px);
    color: var(--gold);
    font-style: italic;
    margin-top: 16px;
    font-weight: 300;
}

.final-banner {
    background: var(--espresso);
    color: var(--warm-white);
    text-align: center;
    padding: clamp(48px, 6vw, 72px) var(--px);
}

.final-banner p {
    font-size: clamp(12px, 1.6vw, 14px);
    font-weight: 300;
    letter-spacing: .12em;
    line-height: 1.8;
    text-transform: uppercase;
    max-width: 800px;
    margin: 0 auto;
}

.final-banner em {
    color: var(--gold-light);
    font-style: italic;
    font-size: 1.1em;
    text-transform: none;
    letter-spacing: 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 40px;
    transition: color .3s ease;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.back-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.back-link svg {
    width: 16px;
    height: 16px;
}