/* ============================================================
#c5bb9a   
BOX SALES · CONSULTORIA COMERCIAL
   style.css — base · layout · components · pages
   Paleta: branco, marrom e creme
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* paleta */
    --white:        #ffffff;
    --cream:        #f6f2ea;
    --cream-2:      #efe9dd;
    --sand:         #e4dccc;
    --taupe:        #c2b39c;
    --brown:        #6f5942;
    --brown-dk:     #523f2c;
    --brown-soft:   rgba(111, 89, 66, 0.55);
    --brown-fade:   rgba(111, 89, 66, 0.10);
    --line:         rgba(111, 89, 66, 0.16);
    --line-soft:    rgba(111, 89, 66, 0.07);
    --on-dark:      #f3ece0;
    --on-dark-soft: rgba(243, 236, 224, 0.72);
    --ink:          #36281b;

    /* tipografia */
    --font-display: 'Fraunces', Georgia, serif;
    --font-sans:    'Manrope', system-ui, -apple-system, sans-serif;

    /* layout */
    --container: 1240px;
    --gutter: 1.3rem;

    /* easing */
    --ease:     cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 0.25s;
    --t-med:  0.5s;
    --t-slow: 0.9s;

    --radius: 14px;
    --radius-sm: 10px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--brown); color: var(--cream); }

/* ---------- CONTAINER ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- SECTION HEAD ---------- */
.section { padding: clamp(4rem, 9vw, 7rem) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark  { background: var(--brown-dk); color: var(--on-dark); }

.tag {
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-family: var(--font-sans);
    font-size: 1.1rem; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--brown);
}
.tag::before {
    content: ""; width: 0px; height: 1px; background: var(--brown-soft);
}
.tag--light { color: var(--on-dark-soft); }
.tag--light::before { background: var(--on-dark-soft); }
.tag--center { justify-content: center; }

.title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.9rem, 5vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-top: 1rem;
}
.title em { font-style: italic; color: var(--brown); }
.title--light { color: var(--white); }
.title--light em { color: var(--taupe); }

.lead {
    font-size: 1.02rem; font-weight: 300; line-height: 1.75;
    color: var(--brown-dk); max-width: 56ch; margin-top: 1.4rem;
}
.lead--light { color: var(--on-dark-soft); }

.head { max-width: 760px; }
.head--center { margin: 0 auto; text-align: center; }
.head--center .tag { justify-content: center; }
.head--center .lead { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 1.0rem; font-weight: 500;
    letter-spacing: 0.04em;
    padding: 1rem 1.8rem;
    border-radius: 4px;
    border: 1px solid var(--brown);
    background: var(--brown);
    color: var(--cream);
    transition: all var(--t-med) var(--ease);
    text-align: center;
}
.btn svg { width: 15px; height: 15px; transition: transform var(--t-med) var(--ease); }
.btn:hover { background: var(--brown-dk); border-color: var(--brown-dk); transform: translateY(-2px); }
.btn:hover svg { transform: translateX(4px); }

.btn--ghost { background: transparent; color: var(--brown); border-color: var(--line); }
.btn--ghost:hover { background: transparent; color: var(--brown-dk); border-color: var(--brown); }
.btn--light { background: var(--cream); color: var(--brown); border-color: var(--cream); }
.btn--light:hover { background: var(--white); border-color: var(--white); color: var(--brown-dk); }
.btn--wa { background: #1faa55; border-color: #1faa55; color: #fff; }
.btn--wa:hover { background: #178a44; border-color: #178a44; }
.btn--lg { padding: 1.15rem 2.2rem; font-size: 0.82rem; }
.btn--full { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.btn-row--center { justify-content: center; }

/* ---------- PRELOADER ---------- */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--cream);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.1rem;
    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.pre__mono {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(2.6rem, 9vw, 3.6rem); color: var(--brown);
    display: flex; align-items: center; gap: 0.1em;
    position: relative;
}
.pre__mono span { opacity: 0; transform: translateY(14px); animation: preUp 1s var(--ease-out) forwards; }
.pre__mono span:nth-child(2) { animation-delay: 0.14s; }
.pre__bracket { color: var(--taupe); font-weight: 400; }
.pre__cap {
    font-family: var(--font-sans); font-size: 0.66rem; font-weight: 500;
    letter-spacing: 0.42em; text-transform: uppercase; color: var(--brown-soft);
    opacity: 0; animation: preFade 0.7s var(--ease) 0.4s forwards;
}
.pre__bar { width: 120px; height: 2px; background: var(--line); overflow: hidden; border-radius: 2px; }
.pre__bar span { display: block; height: 100%; width: 0; background: var(--brown); animation: preLine 1.3s var(--ease-out) 0.2s forwards; }
@keyframes preUp { to { opacity: 1; transform: translateY(0); } }
@keyframes preFade { to { opacity: 1; } }
@keyframes preLine { to { width: 100%; } }

/* ---------- SCROLL PROGRESS ---------- */
.progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0;
    background: linear-gradient(90deg, var(--taupe), var(--brown));
    z-index: 999; transition: width 0.1s linear;
}

/* ---------- NAV ---------- */
.nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
    transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), padding var(--t-med) var(--ease);
    padding: 1.1rem 0;
}
.nav.is-scrolled {
    background: rgba(246, 242, 234, 0.88);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
    padding: 0.7rem 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav__brand { display: flex; align-items: center; gap: 0.65rem; }
.nav__mark {
    font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--brown);
    letter-spacing: 0.02em; position: relative; padding: 0 0.32em;
}
.nav__mark::before, .nav__mark::after {
    content: ""; position: absolute; top: 4px; bottom: 4px; width: 6px;
    border: 1.5px solid var(--taupe);
}
.nav__mark::before { left: 0; border-right: none; }
.nav__mark::after  { right: 0; border-left: none; }
.nav__brand-text {
    font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.26em; text-transform: uppercase; color: var(--brown-soft);
}
.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__link {
    font-size: 1.0rem; font-weight: 400; color: var(--brown-dk);
    position: relative; transition: color var(--t-fast) var(--ease);
}
.nav__link::after {
    content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
    background: var(--brown); transition: width var(--t-med) var(--ease);
}
.nav__link:hover { color: var(--brown); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.76rem; font-weight: 500; letter-spacing: 0.03em;
    padding: 0.7rem 1.3rem; border-radius: 100px;
    background: var(--brown); color: var(--cream);
    transition: all var(--t-med) var(--ease);
}
.nav__cta svg { width: 14px; height: 14px; }
.nav__cta:hover { background: var(--brown-dk); }
.nav__toggle { display: none; width: 30px; height: 22px; position: relative; }
.nav__toggle span {
    position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--brown);
    transition: all var(--t-med) var(--ease);
}
.nav__toggle span:nth-child(1) { top: 3px; }
.nav__toggle span:nth-child(2) { bottom: 3px; }
.nav__toggle.is-active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { bottom: 10px; transform: rotate(-45deg); }

/* ---------- MOBILE MENU ---------- */
.nav-mobile {
    position: fixed; inset: 0; z-index: 880;
    background: var(--cream);
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem var(--gutter) 2rem;
    transform: translateY(-100%); transition: transform var(--t-slow) var(--ease-out);
    visibility: hidden;
}
.nav-mobile.is-open { transform: translateY(0); visibility: visible; }
.nav-mobile__list { display: flex; flex-direction: column; gap: 0.2rem; }
.nav-mobile__list a {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--brown-dk);
    padding: 0.5rem 0; border-bottom: 1px solid var(--line-soft);
    transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}
.nav-mobile__list a:hover { color: var(--brown); padding-left: 0.5rem; }
.nav-mobile__foot { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 0.9rem; }
.nav-mobile__sub { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--brown-soft); text-align: center; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: clamp(8rem, 16vw, 11rem) 0 clamp(4rem, 8vw, 6rem); overflow: hidden; }
.hero__grid {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero__badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--brown); background: var(--white);
    padding: 0.55rem 1rem 0.55rem 0.9rem; border-radius: 100px;
    border: 1px solid var(--line);
}
.hero__badge b { color: var(--brown-dk); font-weight: 600; }
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #1faa55; box-shadow: 0 0 0 4px rgba(31,170,85,0.16); }
.hero__title {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(2.4rem, 6.4vw, 4.4rem); line-height: 1.04; letter-spacing: -0.015em;
    color: var(--ink); margin-top: 1.4rem;
}
.hero__title em { font-style: italic; color: var(--brown); }
.hero__sub { font-size: 1.05rem; font-weight: 300; line-height: 1.7; color: var(--brown-dk); max-width: 52ch; margin-top: 1.6rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.4rem; }
.hero__trust-item { display: flex; flex-direction: column; gap: 0.1rem; }
.hero__trust-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--brown); line-height: 1; }
.hero__trust-lbl { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--brown-soft); }

.hero__media { position: relative; }
.hero__photo {
    position: relative; border-radius: 4px;
    overflow: hidden; box-shadow: 0 30px 70px -30px rgba(82,63,44,0.45);
    aspect-ratio: 3 / 3.6;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__frame {
    position: absolute; inset: -14px; border: 0px solid var(--taupe); border-radius: 230px 230px 20px 20px;
    pointer-events: none; z-index: -1;
}
.hero__chip {
    position: absolute; bottom: 1.3rem; left: -1rem;
    background: var(--white); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem;
    box-shadow: 0 14px 36px -16px rgba(82,63,44,0.4); border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 0.15rem; max-width: 220px;
}
.hero__chip b { font-family: var(--font-display); font-size: 1.4rem; color: var(--brown); line-height: 1; }
.hero__chip span { font-size: 0.72rem; color: var(--brown-dk); line-height: 1.4; }

/* ---------- AUTHORITY STRIP ---------- */
.strip { background: var(--brown-dk); color: var(--on-dark); padding: 1.4rem 0; }
.strip__track { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.strip__item { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--on-dark-soft); display: flex; align-items: center; gap: 0.6rem; }
.strip__item svg { width: 16px; height: 16px; color: var(--taupe); flex-shrink: 0; }

/* ---------- ECOSYSTEM PILLARS ---------- */
.eco__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; margin-top: 3rem; }
.eco__pill {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
    padding: 1.3rem 1.2rem; transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.eco__pill:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -22px rgba(82,63,44,0.4); }
.eco__pill-ic { width: 36px; height: 36px; color: var(--brown); margin-bottom: 0.8rem; }
.eco__pill h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--ink); margin-bottom: 0.3rem; }
.eco__pill p { font-size: 0.84rem; color: var(--brown-soft); line-height: 1.55; }

/* ---------- FLAGSHIP (3 carros-chefe) ---------- */
.flag__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3rem; }
.flag__card {
    position: relative; background: var(--cream); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 2rem 1.7rem 1.8rem;
    display: flex; flex-direction: column;
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.section--dark .flag__card { background: rgba(255,255,255,0.04); border-color: rgba(243,236,224,0.16); }
.flag__card:hover { transform: translateY(-6px); box-shadow: 0 26px 56px -30px rgba(82,63,44,0.55); border-color: var(--taupe); }
.flag__card.is-featured { background: var(--brown); color: var(--on-dark); border-color: var(--brown); }
.flag__num {
    font-family: var(--font-display); font-size: 0.9rem; color: var(--brown-soft);
    letter-spacing: 0.1em; margin-bottom: 1rem;
}
.is-featured .flag__num, .section--dark .flag__num { color: var(--taupe); }
.flag__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; line-height: 1.15; color: var(--ink); }
.is-featured .flag__name, .section--dark .flag__name { color: var(--white); }
.flag__kicker { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.4rem; }
.is-featured .flag__kicker, .section--dark .flag__kicker { color: var(--taupe); }
.flag__desc { font-size: 0.9rem; line-height: 1.65; color: var(--brown-dk); margin-top: 0.8rem; }
.is-featured .flag__desc, .section--dark .flag__desc { color: var(--on-dark-soft); }
.flag__list { list-style: none; margin: 1.3rem 0 1.6rem; display: flex; flex-direction: column; gap: 0.55rem; }
.flag__list li { font-size: 0.85rem; line-height: 1.45; padding-left: 1.5rem; position: relative; color: var(--brown-dk); }
.is-featured .flag__list li, .section--dark .flag__list li { color: var(--on-dark-soft); }
.flag__list li::before {
    content: ""; position: absolute; left: 0; top: 0.5em; width: 8px; height: 8px;
    border: 1.5px solid var(--brown); border-right: none; border-top: none;
}
.is-featured .flag__list li::before { border-color: var(--taupe); }
.flag__foot { margin-top: auto; }
.flag__time { font-size: 0.74rem; letter-spacing: 0.08em; color: var(--brown-soft); margin-bottom: 0.9rem; display: block; }
.is-featured .flag__time { color: var(--on-dark-soft); }
.flag__link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.03em; color: var(--brown);
    transition: gap var(--t-fast) var(--ease);
}
.is-featured .flag__link { color: var(--white); }
.flag__link svg { width: 14px; height: 14px; }
.flag__link:hover { gap: 0.85rem; }

/* ---------- SERVICES (cards) ---------- */
.serv__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.serv__card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.7rem 1.5rem; display: flex; flex-direction: column;
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.serv__card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -26px rgba(82,63,44,0.45); }
.serv__ic { width: 40px; height: 40px; color: var(--brown); margin-bottom: 1rem; }
.serv__card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; }
.serv__card p { font-size: 0.88rem; line-height: 1.6; color: var(--brown-dk); flex: 1; }
.serv__more {
    display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.2rem;
    font-size: 0.76rem; font-weight: 500; letter-spacing: 0.04em; color: var(--brown);
    transition: gap var(--t-fast) var(--ease);
}
.serv__more svg { width: 13px; height: 13px; }
.serv__more:hover { gap: 0.8rem; }

/* ---------- PRODUCT (downsell band) ---------- */
.prod__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.prod__card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 2rem; box-shadow: 0 24px 54px -34px rgba(82,63,44,0.5);
}
.prod__pretag { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown-soft); }
.prod__name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; color: var(--ink); margin: 0.4rem 0 0.2rem; }
.prod__price { display: flex; align-items: baseline; gap: 0.7rem; margin: 1.2rem 0 0.2rem; }
.prod__price .old { font-size: 0.95rem; color: var(--brown-soft); text-decoration: line-through; }
.prod__price .now { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--brown); }
.prod__price .now small { font-size: 1rem; font-weight: 400; }
.prod__note { font-size: 0.76rem; letter-spacing: 0.04em; color: var(--brown-soft); }
.prod__inc { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.65rem; }
.prod__inc li { font-size: 0.88rem; padding-left: 1.7rem; position: relative; color: var(--brown-dk); }
.prod__inc li svg { position: absolute; left: 0; top: 2px; width: 15px; height: 15px; color: #1faa55; }
.prod__badge {
    display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem;
    font-size: 0.76rem; color: var(--brown-dk); background: var(--cream-2);
    padding: 0.5rem 0.9rem; border-radius: 100px;
}
.prod__badge svg { width: 15px; height: 15px; color: var(--brown); }

/* ---------- ABOUT (profissional) ---------- */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__media { position: relative; }
.about__photo {
   
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__media::before {
    content: ""; position: absolute; inset: -14px -14px 14px 14px;
   ; border-radius: 4PX; z-index: -1;
}
.about__name { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 500; color: var(--ink); margin-top: 1rem; }
.about__role { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); margin-top: 0.5rem; }
.about__text p { font-size: 0.98rem; line-height: 1.8; color: var(--brown-dk); margin-top: 1.2rem; }
.about__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.about__chip { font-size: 0.76rem; color: var(--brown-dk); background: var(--white); border: 1px solid var(--line); padding: 0.5rem 0.95rem; border-radius: 100px; }

/* ---------- FEEDBACKS ---------- */
.fb__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.fb__ctrls { display: flex; gap: 0.6rem; }
.fb__btn {
    width: 46px; height: 46px; border-radius: 4px; border: 1px solid var(--line);
    color: var(--brown); display: grid; place-items: center; transition: all var(--t-fast) var(--ease);
    background: var(--white);
}
.fb__btn:hover { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.fb__btn svg { width: 17px; height: 17px; }
.fb__track {
    display: flex; gap: 1.1rem; margin-top: 2.6rem; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem; scrollbar-width: none;
}
.fb__track::-webkit-scrollbar { display: none; }
.fb__card {
    flex: 0 0 clamp(280px, 80vw, 380px); scroll-snap-align: start;
    background: var(--white); border-radius: 4px; padding: 1.7rem;
    box-shadow: 0 16px 40px -28px rgba(82,63,44,0.4); border: 1px solid var(--line-soft);
    display: flex; flex-direction: column;
}
.fb__quote { width: 30px; height: 30px; color: var(--taupe); margin-bottom: 0.7rem; }
.fb__text { font-size: 0.92rem; line-height: 1.7; color: var(--ink); flex: 1; }
.fb__who { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line-soft); }
.fb__av {
    width: 40px; height: 40px; border-radius: 4px; background: var(--brown); color: var(--cream);
    display: grid; place-items: center; font-family: var(--font-display); font-size: 1rem; flex-shrink: 0;
}
.fb__meta b { display: block; font-size: 0.86rem; font-weight: 500; color: var(--ink); }
.fb__meta span { font-size: 0.74rem; color: var(--brown-soft); }
.fb__bar { display: flex; gap: 6px; margin-top: 2rem; justify-content: center; }
.fb__dot { width: 30px; height: 4px; border-radius: 4px; background: var(--line); transition: background var(--t-fast) var(--ease); }
.fb__dot.is-active { background: var(--brown); }

/* ---------- GUARANTEE ---------- */
.guar__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.guar__seal {
    width: 200px; height: 200px; border-radius: 4px; margin: 0 auto;
    display: grid; place-items: center; text-align: center;
    border: 2px solid var(--taupe); position: relative; background: var(--white);
}
.guar__seal::before { content: ""; position: absolute; inset: 12px; border: 1px solid var(--line); border-radius: 4px; }
.guar__seal b { font-family: var(--font-display); font-size: 2.8rem; font-weight: 600; color: var(--brown); line-height: 1; }
.guar__seal span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown-soft); margin-top: 0.3rem; }
.guar__note { font-size: 0.85rem; line-height: 1.7; color: var(--brown-soft); margin-top: 1.4rem; padding: 1rem 1.2rem; background: var(--white); border-radius: 4px; border: 1px solid var(--line-soft); }

/* ---------- FAQ ---------- */
.faq__list { max-width: 820px; margin: 3rem auto 0; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
    padding: 1.4rem 0; text-align: left;
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--ink);
    transition: color var(--t-fast) var(--ease);
}
.faq__q:hover { color: var(--brown); }
.faq__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--brown); transition: transform var(--t-med) var(--ease); }
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq__item.is-open .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--t-med) var(--ease); }
.faq__a-inner { padding: 0 0 1.4rem; font-size: 0.92rem; line-height: 1.75; color: var(--brown-dk); max-width: 70ch; }

/* ---------- SOCIAL ---------- */
.social__row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; justify-content: center; }
.social__btn {
    display: inline-flex; align-items: center; gap: 0.7rem;
    padding: 0.9rem 1.4rem; border-radius: 4px; background: var(--white); border: 1px solid var(--line);
    font-size: 0.82rem; font-weight: 500; color: var(--brown-dk); transition: all var(--t-med) var(--ease);
}
.social__btn svg { width: 18px; height: 18px; color: var(--brown); }
.social__btn:hover { background: var(--brown); color: var(--cream); border-color: var(--brown); transform: translateY(-3px); }
.social__btn:hover svg { color: var(--cream); }

/* ---------- CTA FINAL ---------- */
.cta { text-align: center; }
.cta .title { margin-left: auto; margin-right: auto; }

/* ---------- FOOTER ---------- */
.footer { background: var(--brown-dk); color: var(--on-dark-soft); padding: 4rem 0 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer__mark { font-family: var(--font-display); font-size: 1.7rem; color: var(--white); letter-spacing: 0.04em; display: inline-block; }
.footer__mark span { color: var(--taupe); }
.footer__tag { font-size: 0.85rem; line-height: 1.6; margin-top: 0.9rem; max-width: 34ch; }
.footer__col h5 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); margin-bottom: 1rem; }
.footer__col a, .footer__col p { display: block; font-size: 0.85rem; color: var(--on-dark-soft); margin-bottom: 0.6rem; transition: color var(--t-fast) var(--ease); }
.footer__col a:hover { color: var(--white); }
.footer__line { height: 1px; background: rgba(243,236,224,0.14); margin: 2.6rem 0 1.6rem; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; align-items: center; justify-content: space-between; font-size: 0.78rem; }
.footer__bottom a { color: var(--taupe); }
.footer__bottom a:hover { color: var(--white); }
.footer__credit strong { color: var(--white); }
.footer__big { font-family: var(--font-display); font-size: clamp(2.5rem, 12vw, 8rem); font-weight: 500; color: rgba(243,236,224,0.07); text-align: center; line-height: 1; margin-top: 2rem; letter-spacing: 0.02em; }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
    position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 800;
    width: 56px; height: 56px; border-radius: 4px; background: #1faa55;
    display: grid; place-items: center; color: #fff;
    box-shadow: 0 12px 30px -8px rgba(31,170,85,0.6);
    transition: transform var(--t-med) var(--ease);
    animation: waPulse 2.6s var(--ease) infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
@keyframes waPulse { 0%,100% { box-shadow: 0 12px 30px -8px rgba(31,170,85,0.6), 0 0 0 0 rgba(31,170,85,0.4); } 50% { box-shadow: 0 12px 30px -8px rgba(31,170,85,0.6), 0 0 0 12px rgba(31,170,85,0); } }

/* ---------- BACK TO TOP ---------- */
.to-top {
    position: fixed; right: 1.45rem; bottom: 5.5rem; z-index: 800;
    width: 44px; height: 44px; border-radius: 4px; background: var(--brown); color: var(--cream);
    display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all var(--t-med) var(--ease); box-shadow: 0 10px 24px -10px rgba(82,63,44,0.6);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brown-dk); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- CONSENT POPUP ---------- */
.consent {
    position: fixed; left: 1.3rem; right: 1.3rem; bottom: 1.3rem; z-index: 850; max-width: 440px;
    background: var(--white); border: 1px solid var(--line); border-radius: 4px;
    padding: 1.5rem; box-shadow: 0 24px 60px -24px rgba(82,63,44,0.5);
    transform: translateY(140%); transition: transform var(--t-slow) var(--ease-out);
}
.consent.is-open { transform: translateY(0); }
.consent h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; }
.consent p { font-size: 0.84rem; line-height: 1.6; color: var(--brown-dk); }
.consent p a { color: var(--brown); text-decoration: underline; }
.consent__row { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.consent__row .btn { flex: 1; padding: 0.8rem 1rem; font-size: 0.76rem; }

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero { padding: clamp(8rem, 15vw, 10rem) 0 clamp(3rem, 6vw, 4.5rem); background: var(--brown-dk); color: var(--on-dark); position: relative; overflow: hidden; }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero .title { color: var(--white); }
.page-hero .title em { color: var(--taupe); }
.page-hero .lead { color: var(--on-dark-soft); }
.page-hero__crumb { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.74rem; letter-spacing: 0.08em; color: var(--taupe); }
.page-hero__crumb a:hover { color: var(--white); }
.page-hero__glow { position: absolute; top: -30%; right: -10%; width: 50%; height: 160%; background: radial-gradient(circle, rgba(194,179,156,0.18), transparent 70%); pointer-events: none; }

/* ---------- ARTICLE / LEGAL ---------- */
.prose { max-width: 800px; }
.prose h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 500; color: var(--ink); margin: 2.6rem 0 0.9rem; }
.prose h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--brown-dk); margin: 1.8rem 0 0.6rem; }
.prose p { font-size: 0.96rem; line-height: 1.8; color: var(--brown-dk); margin-bottom: 1rem; }
.prose ul { margin: 0 0 1.2rem 0; list-style: none; }
.prose li { font-size: 0.94rem; line-height: 1.7; color: var(--brown-dk); padding-left: 1.5rem; position: relative; margin-bottom: 0.5rem; }
.prose li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px; border: 1.5px solid var(--brown); border-right: none; border-top: none; }
.prose strong { color: var(--ink); font-weight: 500; }
.prose a { color: var(--brown); text-decoration: underline; }
.prose .updated { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--brown-soft); margin-bottom: 2rem; }

/* ---------- SERVICE DETAIL BLOCKS ---------- */
.detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 3rem; }
.detail__box { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 1.8rem; }
.detail__box.is-wide { grid-column: 1 / -1; }
.detail__box h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--ink); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.7rem; }
.detail__box h3 svg { width: 22px; height: 22px; color: var(--brown); }
.detail__box p { font-size: 0.92rem; line-height: 1.7; color: var(--brown-dk); }
.detail__box ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }
.detail__box li { font-size: 0.9rem; line-height: 1.5; color: var(--brown-dk); padding-left: 1.6rem; position: relative; }
.detail__box li::before { content: ""; position: absolute; left: 0; top: 0.45em; width: 8px; height: 8px; border: 1.5px solid var(--brown); border-right: none; border-top: none; }
.beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.4rem; }
.beforeafter__col { padding: 1.2rem 1.3rem; border-radius: 4px; }
.beforeafter__col.is-before { background: var(--cream-2); }
.beforeafter__col.is-after { background: var(--brown); color: var(--on-dark); }
.beforeafter__col h4 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.6rem; }
.beforeafter__col.is-before h4 { color: var(--brown-soft); }
.beforeafter__col.is-after h4 { color: var(--taupe); }
.beforeafter__col p { font-size: 0.88rem; line-height: 1.6; margin: 0; }
.beforeafter__col.is-after p { color: var(--on-dark-soft); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
    .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero__media { max-width: 420px; margin: 0 auto; width: 100%; }
    .eco__grid { grid-template-columns: repeat(2, 1fr); }
    .flag__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .serv__grid { grid-template-columns: repeat(2, 1fr); }
    .prod__grid, .about__grid, .guar__grid, .detail__grid { grid-template-columns: 1fr; }
    .about__media { max-width: 380px; margin: 0 auto; }
    .detail__box.is-wide { grid-column: auto; }
    .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .nav__menu, .nav__cta { display: none; }
    .nav__toggle { display: block; }
    .strip__track { gap: 1.2rem; }
    .serv__grid { grid-template-columns: 1fr; }
    .eco__grid { grid-template-columns: 1fr; }
    .beforeafter { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 2rem; }
    .hero__chip { left: 0; }
    .btn-row .btn { flex: 1 1 100%; }
    .fb__head { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    .wa-float { animation: none; }
}
