/* ═══════════════════════════════════════════════════════════
   MONTADOR FARIAS — Design System
   Tipografia: Montserrat | Paleta: Terrosa & Off-White
═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
    /* Cores Base */
    --white: #ffffff;
    --offwhite: #f9f5ef;
    --offwhite-2: #f2ebe0;
    --sand-light: #ede0cc;
    --sand: #d9c9ac;
    --sand-dark: #c4956a;

    /* Cores de Madeira */
    --wood-light: #c8956a;
    --wood: #a8733e;
    --wood-dark: #7a4f28;

    /* Marrons Terrosos */
    --clay: #8b4513;
    --brown: #6b3a2a;
    --brown-deep: #3d1f0f;

    /* Tipografia */
    --text-dark: #2c1810;
    --text-body: #4a2e1a;
    --text-muted: #8a6a52;
    --text-light: #b89880;

    /* Funcionais */
    --success: #4caf6e;
    --border: rgba(107, 58, 42, 0.12);
    --shadow-sm: 0 2px 12px rgba(107, 58, 42, 0.08);
    --shadow-md: 0 8px 32px rgba(107, 58, 42, 0.12);
    --shadow-lg: 0 20px 60px rgba(107, 58, 42, 0.16);

    /* Espaçamento & Layout */
    --container: 1280px;
    --section-py: clamp(80px, 10vw, 140px);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    /* Transições */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

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

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: var(--text-body);
    background: var(--offwhite);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--offwhite-2);
}
::-webkit-scrollbar-thumb {
    background: var(--sand-dark);
    border-radius: 3px;
}

/* ─── TYPOGRAPHY SCALE ──────────────────────────────────── */
h1,
h2,
h3,
h4 {
    line-height: 1.1;
}
em {
    font-style: normal;
    color: var(--brown);
}

/* ─── SECTION TAG ───────────────────────────────────────── */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wood);
    background: rgba(168, 115, 62, 0.1);
    border: 1px solid rgba(168, 115, 62, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-tag-light {
    color: var(--sand);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brown);
    color: var(--offwhite);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--brown);
    transition: all 0.35s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--wood);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-smooth);
    z-index: 0;
    border-radius: inherit;
}

.btn-primary:hover::before {
    transform: scaleX(1);
}
.btn-primary:hover {
    border-color: var(--wood);
    box-shadow: 0 8px 28px rgba(107, 58, 42, 0.35);
    transform: translateY(-2px);
}
.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-smooth);
}
.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--brown);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--brown);
    transition: all 0.3s var(--ease-smooth);
}

.btn-secondary:hover {
    background: var(--brown);
    color: var(--offwhite);
    transform: translateY(-2px);
}
.btn-sm {
    padding: 12px 24px;
    font-size: 12px;
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─── NAVBAR ────────────────────────────────────────────── */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s var(--ease-smooth);
}

.nav-header.scrolled {
    background: transparent;
    box-shadow: none;
}

.nav-header.scrolled .nav-container {
    background: rgba(249, 245, 239, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(107, 58, 42, 0.12),
                0 0 0 1px rgba(196, 149, 106, 0.2);
    padding: 12px 36px;
    margin-top: 10px;
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    transition: padding 0.4s var(--ease-smooth),
                border-radius 0.4s var(--ease-smooth),
                box-shadow 0.4s var(--ease-smooth),
                margin 0.4s var(--ease-smooth);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
}
.logo-icon-sm {
    width: 40px;
    height: 40px;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-img-footer {
    height: 60px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--wood);
    letter-spacing: 0.06em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-body);
    padding: 8px 4px;
    position: relative;
    transition: color 0.25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--brown);
    border-radius: 1px;
    transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover {
    color: var(--brown);
    background: none;
}

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

.nav-cta {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--offwhite);
    background: var(--brown);
    padding: 10px 22px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-smooth);
    margin-left: auto;
}

.nav-cta:hover {
    background: var(--wood);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(107, 58, 42, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: rgba(249, 245, 239, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    border-top: 1px solid var(--border);
}

.mobile-menu.open {
    display: block;
}
.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.mobile-menu a:hover {
    color: var(--brown);
    background: rgba(107, 58, 42, 0.07);
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--offwhite);
    position: relative;
    overflow: hidden;
    padding-top: 88px;
    display: flex;
    align-items: center;
}

/* Wood shavings decorative */
.shaving {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.35;
}

.shaving-1 {
    width: 180px;
    height: 60px;
    background: linear-gradient(135deg, var(--sand-light), var(--sand));
    top: 12%;
    right: 3%;
    transform: rotate(-15deg);
    border-radius: 0 50% 50% 0;
    clip-path: path(
        "M10,30 Q40,5 80,8 Q130,12 170,20 Q175,25 170,35 Q130,42 80,38 Q40,40 10,30 Z"
    );
    filter: blur(1px);
}

.shaving-2 {
    width: 120px;
    height: 40px;
    background: linear-gradient(135deg, var(--sand), var(--sand-dark));
    top: 20%;
    right: 8%;
    transform: rotate(20deg);
    clip-path: path(
        "M8,20 Q30,5 60,6 Q100,8 115,14 Q118,18 115,24 Q100,30 60,28 Q30,30 8,20 Z"
    );
    filter: blur(0.5px);
}

.shaving-3 {
    width: 90px;
    height: 30px;
    background: linear-gradient(135deg, var(--sand-light), var(--sand));
    top: 60%;
    right: 2%;
    transform: rotate(-8deg);
    clip-path: path(
        "M5,15 Q22,3 45,4 Q75,6 88,12 Q90,15 88,20 Q75,24 45,22 Q22,24 5,15 Z"
    );
    filter: blur(0.5px);
}

.shaving-4 {
    width: 70px;
    height: 25px;
    background: linear-gradient(135deg, var(--sand), var(--wood-light));
    top: 35%;
    left: 2%;
    transform: rotate(10deg);
    clip-path: path(
        "M4,12 Q18,3 35,4 Q58,5 68,10 Q70,12 68,16 Q58,20 35,18 Q18,20 4,12 Z"
    );
    filter: blur(0.5px);
    opacity: 0.25;
}

.grain-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.grain-circle.grain-1 {
    width: 280px;
    height: 280px;
    bottom: -60px;
    right: -40px;
    background: radial-gradient(circle, var(--sand-light) 0%, transparent 70%);
    opacity: 0.5;
}

.grain-circle.grain-2 {
    width: 200px;
    height: 200px;
    top: 40px;
    left: -60px;
    background: radial-gradient(circle, var(--sand-light) 0%, transparent 70%);
    opacity: 0.4;
}

.hero-content {
    max-width: var(--container);
    margin: 0 auto;
    padding: 40px 48px 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 88px);
}

/* Furniture visuals */
.hero-furniture {
    position: relative;
}

.hero-furniture-left {
    align-self: stretch;
    display: flex;
    align-items: flex-end;
}
.hero-furniture-right {
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.furniture-img-wrap {
    position: relative;
    width: 100%;
}

.furniture-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(107, 58, 42, 0.2));
}

/* CSS-drawn furniture placeholder (when no image) */
.furniture-placeholder {
    display: none;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/5;
    align-items: flex-end;
    justify-content: center;
}

.furniture-placeholder-large .placeholder-inner {
    width: 85%;
    height: 85%;
    position: relative;
}

.placeholder-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4a96a 0%, #c4956a 40%, #a87840 100%);
    border-radius: 4px;
    position: relative;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 6px;
}

.ph-top-rail {
    height: 8px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    margin: 4px;
}

.ph-shelf {
    flex: 1;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.05)
    );
    border-radius: 2px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.ph-door {
    position: absolute;
    right: 8px;
    top: 8px;
    bottom: 40px;
    width: 38%;
    background: linear-gradient(135deg, #5a3a20 0%, #3d1f0f 100%);
    border-radius: 2px;
    transform-origin: right center;
    transform: perspective(300px) rotateY(-25deg);
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
}

.ph-door-open {
    transform: perspective(300px) rotateY(-45deg);
}

.ph-drawer {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    height: 48px;
    background: linear-gradient(135deg, #c4956a, #a87840);
    border-radius: 3px;
    transform: translateX(20px);
    box-shadow: 4px 2px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-drawer-handle {
    width: 40px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

/* Hotspots */
.hotspot {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 10;
}

.hotspot-bl {
    bottom: 12%;
    left: -10px;
}
.hotspot-tr {
    top: 20%;
    right: -10px;
    flex-direction: row-reverse;
}
.hotspot-br {
    bottom: 25%;
    right: -10px;
    flex-direction: row-reverse;
}

.hotspot-dot {
    width: 28px;
    height: 28px;
    background: var(--white);
    border-radius: 50%;
    border: 2px solid var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.hotspot-dot span {
    width: 10px;
    height: 10px;
    background: var(--brown);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.hotspot:hover .hotspot-dot {
    transform: scale(1.2);
    background: var(--brown);
}
.hotspot:hover .hotspot-dot span {
    background: var(--offwhite);
}

.hotspot-label {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    max-width: 180px;
    box-shadow: var(--shadow-md);
    line-height: 1.3;
    transform: translateX(0);
    transition: all 0.3s var(--ease-smooth);
}

.hotspot-label strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 3px;
}

.hotspot-label p {
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.4;
}

.hotspot-label-right {
    text-align: right;
}

/* Connector line */
.hotspot-tr .hotspot-label::after,
.hotspot-br .hotspot-label::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--brown);
    opacity: 0.3;
}

/* Center headline */
.hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    z-index: 5;
    position: relative;
    max-width: 720px;
    width: 100%;
}

.hero-headline h1 {
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.headline-line {
    display: block;
}
.headline-accent {
    color: var(--brown);
}

.hero-sub {
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 380px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    width: 100%;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat strong {
    font-size: 26px;
    font-weight: 900;
    color: var(--brown);
    letter-spacing: -0.03em;
}

.stat span {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ─── HERO FLOATING FURNITURE ───────────────────────────── */
.hero-img-left,
.hero-img-right {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    will-change: transform;
}

.hero-img-left {
    bottom: 15%;
    left: 0;
    width: clamp(400px, 33vw, 1000px);
    transform: translateY(var(--parallax-y, 0px));
}

.hero-img-right {
    right: 0;
    top: 40%;
    width: clamp(260px, 30vw, 800px);
    transform: translateY(calc(-50% + var(--parallax-y, 0px)));
}

.hero-img-left img,
.hero-img-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(107, 58, 42, 0.22));
}

.furniture-float {
    animation: furniture-bob 5.5s ease-in-out infinite;
}

.hero-img-right .furniture-float {
    animation-duration: 7s;
    animation-delay: -2s;
}

@keyframes furniture-bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* ─── SOBRE ─────────────────────────────────────────────── */
.sobre-section {
    padding: var(--section-py) 48px;
    background: var(--offwhite);
}

.sobre-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-images {
    position: relative;
}

.sobre-img-main-wrap {
    border-radius: calc(var(--radius-lg) + 6px);
    border: 5px solid rgba(107, 58, 42, 0.12);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sobre-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.img-craft-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.image-overlay-premium {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.5) 0%, transparent 55%);
    pointer-events: none;
}

.img-craft {
    width: 100%;
    height: 100%;
}

.img-craft-main {
    background: linear-gradient(
        135deg,
        var(--sand-light) 0%,
        var(--sand) 50%,
        var(--sand-dark) 100%
    );
}

.img-craft-secondary {
    background: linear-gradient(
        135deg,
        var(--wood-light) 0%,
        var(--wood) 50%,
        var(--wood-dark) 100%
    );
}

.craft-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 12px;
}

.craft-icon {
    font-size: 48px;
}

.craft-placeholder span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.06em;
}

/* Wrapper replaces the old secondary image position */
.sobre-img-secondary-wrap {
    position: absolute;
    bottom: -100px;
    right: -24px;
    z-index: 4;
}

/* ─── FOUNDER CARD ──────────────────────────────────────── */
.founder-card {
    width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    animation: founder-float 6s ease-in-out infinite;
}

@keyframes founder-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.founder-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.founder-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--wood-light), var(--brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: var(--offwhite);
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.founder-info strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.founder-info span {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    line-height: 1.4;
    display: block;
    margin-top: 2px;
}

.founder-stats-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--offwhite-2);
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 16px;
}

.founder-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

.founder-stat strong {
    font-size: 20px;
    font-weight: 900;
    color: var(--brown);
    letter-spacing: -0.03em;
    line-height: 1;
}

.founder-stat span {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 3px;
    line-height: 1.3;
}

.founder-stat-div {
    width: 1px;
    height: 32px;
    background: var(--border);
    flex-shrink: 0;
}

.founder-brands-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.founder-brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.brand-tag {
    font-size: 10px;
    font-weight: 600;
    color: var(--brown);
    background: rgba(107, 58, 42, 0.07);
    border: 1px solid rgba(107, 58, 42, 0.14);
    padding: 3px 9px;
    border-radius: 100px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand-tag.brand-luxury {
    color: var(--wood-dark);
    background: rgba(122, 79, 40, 0.08);
    border-color: rgba(122, 79, 40, 0.22);
}

.brand-tag.brand-more {
    color: var(--text-muted);
    background: transparent;
    border-style: dashed;
    border-color: var(--border);
}

.sobre-text h2 {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sobre-lead {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.7;
}

.sobre-text p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.sobre-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.pill {
    font-size: 12px;
    font-weight: 600;
    color: var(--brown);
    background: rgba(107, 58, 42, 0.08);
    border: 1px solid rgba(107, 58, 42, 0.15);
    padding: 6px 14px;
    border-radius: 100px;
    transition: all 0.2s;
}

.pill:hover {
    background: var(--brown);
    color: var(--offwhite);
}

/* ─── SERVIÇOS ──────────────────────────────────────────── */
.servicos-section {
    padding: var(--section-py) 48px;
    background: var(--offwhite-2);
}

.servicos-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}

.servicos-header h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.servicos-header p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
}

.servicos-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.servico-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    animation-delay: var(--delay, 0s);
}

.servico-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--brown), var(--wood));
    transition: width 0.4s var(--ease-smooth);
}

.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.servico-card:hover::before {
    width: 100%;
}

.sc-icon {
    width: 56px;
    height: 56px;
    background: rgba(168, 115, 62, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.servico-card:hover .sc-icon {
    background: rgba(107, 58, 42, 0.12);
    transform: scale(1.1);
}
.sc-icon svg {
    width: 32px;
    height: 32px;
}

.servico-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.servico-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

.sc-line {
    height: 1px;
    background: var(--border);
    margin-top: 24px;
}

.sc-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wood);
    background: rgba(168, 115, 62, 0.1);
    border: 1px solid rgba(168, 115, 62, 0.2);
    padding: 4px 10px;
    border-radius: 100px;
}

.servico-card-cta {
    background: linear-gradient(
        135deg,
        var(--brown) 0%,
        var(--brown-deep) 100%
    );
    border-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servico-card-cta::before {
    display: none;
}
.servico-card-cta:hover {
    transform: translateY(-6px);
}

.sc-cta-content {
    text-align: center;
}

.servico-card-cta h3 {
    color: var(--offwhite);
    margin-bottom: 12px;
}

.servico-card-cta p {
    color: rgba(245, 237, 224, 0.7);
    margin-bottom: 24px;
}

/* ─── DIFERENCIAIS STRIP ────────────────────────────────── */
.diferenciais-strip {
    background: linear-gradient(145deg, #3d1f0f 0%, var(--brown) 55%, #4e2a1a 100%);
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

.diferenciais-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(196, 149, 106, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.diferenciais-strip::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 149, 106, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.strip-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
    position: relative;
    z-index: 1;
}

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

.strip-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sand-dark);
    margin-bottom: 12px;
}

.strip-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: var(--offwhite);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.strip-title em {
    font-style: italic;
    color: var(--sand);
}

.strip-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.strip-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.3s, transform 0.3s ease, box-shadow 0.3s, border-color 0.3s;
}

.strip-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(196, 149, 106, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.strip-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(196, 149, 106, 0.18);
    border: 1px solid rgba(196, 149, 106, 0.28);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strip-card-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.strip-card-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.01em;
}

.strip-card-text span {
    font-size: 13px;
    font-weight: 400;
    color: rgba(245, 237, 224, 0.58);
    line-height: 1.55;
}

.strip-sep {
    display: none;
}

.strip-item {
    display: none;
}

/* ─── PORTFOLIO ─────────────────────────────────────────── */
.portfolio-section {
    padding: var(--section-py) 48px;
    background: var(--offwhite);
}

.portfolio-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
}

.portfolio-header h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.portfolio-header p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
}

.portfolio-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.pf-btn {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: transparent;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    transition: all 0.25s;
    cursor: pointer;
}

.pf-btn:hover {
    color: var(--brown);
    border-color: var(--brown);
}
.pf-btn.active {
    background: var(--brown);
    color: var(--offwhite);
    border-color: var(--brown);
}

.portfolio-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.4s var(--ease-smooth);
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.pi-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease-smooth);
}

.portfolio-item:hover .portfolio-real-img {
    transform: scale(1.07);
}

.pi-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pi-wood-1 {
    background: linear-gradient(135deg, #d4a96a, #a87840, #7a4f28);
}
.pi-wood-2 {
    background: linear-gradient(135deg, #c4956a, #8b5a30, #5a3520);
}
.pi-wood-3 {
    background: linear-gradient(135deg, #b8814a, #7a4f28, #4a2a10);
}
.pi-wood-4 {
    background: linear-gradient(135deg, #e0b880, #c4956a, #8b5a30);
}
.pi-wood-5 {
    background: linear-gradient(135deg, #c8a060, #9a6a38, #6a3a18);
}

.pi-furniture {
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pi-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s;
}

.portfolio-item:hover .pi-overlay {
    opacity: 1;
}

.pi-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.pi-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sand);
    background: rgba(196, 149, 106, 0.2);
    border: 1px solid rgba(196, 149, 106, 0.35);
    padding: 4px 12px;
    border-radius: 100px;
}

.pi-overlay-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.pi-action {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}

.portfolio-item.hidden {
    display: none;
}

/* ─── DEPOIMENTOS ───────────────────────────────────────── */
.depoimentos-section {
    padding: var(--section-py) 48px;
    background: var(--offwhite-2);
    overflow: hidden;
}

.dep-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}

.dep-header h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.dep-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dep-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.dep-stars {
    font-size: 16px;
    color: var(--wood);
    letter-spacing: 2px;
}

.dep-card p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}

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

.dep-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--wood-light), var(--brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--offwhite);
    flex-shrink: 0;
}

.dep-author strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}
.dep-author span {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
}


/* ─── CONTATO ───────────────────────────────────────────── */
.contato-section {
    padding: var(--section-py) 48px;
    background: linear-gradient(
        135deg,
        var(--brown-deep) 0%,
        var(--brown) 100%
    );
    position: relative;
    overflow: hidden;
}

.contato-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(196, 149, 106, 0.15) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.contato-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.contato-info h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--offwhite);
    margin-bottom: 16px;
}

.contato-info h2 em {
    color: var(--sand-dark);
}

.contato-info > p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(245, 237, 224, 0.65);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contato-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contato-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.3s;
    cursor: pointer;
}

.contato-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.cl-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cl-icon svg {
    width: 20px;
    height: 20px;
}
.cl-green {
    background: rgba(76, 175, 110, 0.2);
    color: #4caf6e;
}
.cl-brown {
    background: rgba(196, 149, 106, 0.2);
    color: var(--sand-dark);
}
.cl-sand {
    background: rgba(196, 149, 106, 0.2);
    color: var(--sand-dark);
}

.contato-link strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--offwhite);
    display: block;
}
.contato-link span {
    font-size: 13px;
    font-weight: 300;
    color: rgba(245, 237, 224, 0.6);
}

/* Form */
.contato-form-wrap {
    background: var(--offwhite);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-lg);
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-body);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--offwhite-2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    outline: none;
    transition: all 0.25s;
    resize: vertical;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brown);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(107, 58, 42, 0.1);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B3A2A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-privacy {
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer {
    background: var(--brown-deep);
    padding: 60px 48px 0;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(245, 237, 224, 0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-brand .nav-logo {
    margin-bottom: 4px;
}
.footer-brand .logo-name {
    color: var(--offwhite);
}
.footer-brand .logo-sub {
    color: var(--sand-dark);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sand-dark);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(245, 237, 224, 0.55);
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--offwhite);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contact a,
.footer-contact span {
    font-size: 14px;
    font-weight: 300;
    color: rgba(245, 237, 224, 0.55);
    transition: color 0.2s;
    display: block;
}
.footer-contact a:hover {
    color: var(--offwhite);
}

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 300;
    color: rgba(245, 237, 224, 0.3);
}

/* ─── HOTSPOT MODAL ─────────────────────────────────────── */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.hotspot-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 360px;
    width: calc(100% - 48px);
    z-index: 2001;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s var(--ease-spring);
    text-align: center;
}

.hotspot-modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.hm-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--offwhite-2);
    color: var(--text-body);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.hm-close:hover {
    background: var(--brown);
    color: var(--offwhite);
}
.hm-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

#hotspotModalText {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.7;
}

/* ─── SCROLL TO TOP ─────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--brown);
    color: var(--offwhite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: all 0.35s var(--ease-smooth);
    border: none;
    cursor: pointer;
}

.scroll-top:hover {
    background: var(--wood);
    transform: translateY(0) scale(1.05);
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* ─── ANIMATIONS ────────────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s var(--ease-smooth);
}

.reveal-up {
    transform: translateY(40px);
}
.reveal-left {
    transform: translateX(-40px);
}
.reveal-right {
    transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Staggered delays */
.servico-card:nth-child(1) {
    transition-delay: 0s;
}
.servico-card:nth-child(2) {
    transition-delay: 0.1s;
}
.servico-card:nth-child(3) {
    transition-delay: 0.2s;
}
.servico-card:nth-child(4) {
    transition-delay: 0.3s;
}
.servico-card:nth-child(5) {
    transition-delay: 0.4s;
}
.servico-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-content {
        padding: 40px 32px 60px;
    }

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

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sobre-img-secondary-wrap {
        right: 0;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
        gap: 12px;
    }
    .nav-links,
    .nav-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .logo-img {
        height: 42px;
    }

    .hero-img-left,
    .hero-img-right {
        display: none;
    }

    .hero {
        padding-top: 72px;
    }
    .hero-content {
        padding: 24px 24px 40px;
    }
    .hero-headline h1 {
        font-size: clamp(22px, 7vw, 32px);
    }
    .hero-sub {
        font-size: 14px;
    }
    .hero-headline .btn-primary {
        padding: 14px 28px;
        font-size: 13px;
    }
    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat-divider {
        display: none;
    }

    .sobre-section,
    .servicos-section,
    .portfolio-section,
    .depoimentos-section,
    .contato-section {
        padding: 64px 24px;
    }

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

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    .contato-form-wrap {
        padding: 28px 24px;
    }

    .diferenciais-strip {
        padding: 56px 24px;
    }
    .strip-inner {
        gap: 36px;
    }
    .strip-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-img-secondary-wrap {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 24px;
    }

    .founder-card {
        width: 100%;
        animation: none;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .hero-headline h1 {
        font-size: clamp(18px, 5.5vw, 24px);
    }
    .strip-cards-row {
        grid-template-columns: 1fr;
    }
    .hero-headline h1 {
        font-size: clamp(20px, 6.5vw, 26px);
    }
}

/* ─── LOADER OVERRIDES ──────────────────────────────────── */
/* loader.css dispara ldBar imediatamente; seguramos até .run */
.ld-bar span      { animation: none !important; }
.ld-bar.run span  { animation: ldBar 1.1s cubic-bezier(.5,0,.2,1) forwards !important; }

/* Bloqueia scroll enquanto loader está visível */
body.loading { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════
   PREMIUM EXTENSIONS — Cursor, Animations, Glassmorphism
═══════════════════════════════════════════════════════════ */

/* ─── GLASS TOKENS ──────────────────────────────────────── */
:root {
    --glass-bg:     rgba(249, 245, 239, 0.72);
    --glass-border: rgba(196, 149, 106, 0.22);
    --glass-blur:   blur(24px);
}

/* ─── CUSTOM CURSOR ─────────────────────────────────────── */
@media (pointer: fine) {
    * { cursor: none !important; }
}

.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--brown);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
}

.custom-cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid var(--brown);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    opacity: 0.55;
    transition: width 0.3s var(--ease-spring),
                height 0.3s var(--ease-spring),
                border-color 0.2s,
                opacity 0.2s;
}

body.cursor-hover .custom-cursor {
    width: 14px; height: 14px;
    background: var(--wood);
}

body.cursor-hover .custom-cursor-follower {
    width: 54px; height: 54px;
    border-color: var(--wood);
    opacity: 0.35;
}

body.cursor-drag .custom-cursor-follower {
    width: 64px; height: 64px;
    border-color: var(--sand-dark);
    opacity: 0.5;
}

@media (pointer: coarse) {
    .custom-cursor, .custom-cursor-follower { display: none; }
}

/* ─── MESH GRADIENT BLOBS ───────────────────────────────── */
.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.mesh-blob-1 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(237, 224, 204, 0.75) 0%, transparent 70%);
    top: -120px; left: -120px;
    animation: blob-drift-1 16s ease-in-out infinite alternate;
}

.mesh-blob-2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(196, 149, 106, 0.18) 0%, transparent 70%);
    bottom: 40px; right: 240px;
    animation: blob-drift-2 20s ease-in-out infinite alternate;
}

.mesh-blob-3 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(217, 201, 172, 0.35) 0%, transparent 70%);
    top: 30%; right: -60px;
    animation: blob-drift-3 24s ease-in-out infinite alternate;
}

@keyframes blob-drift-1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(70px, 90px) scale(1.18); }
}
@keyframes blob-drift-2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-55px, -45px) scale(0.88); }
}
@keyframes blob-drift-3 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-35px, 65px) scale(1.12); }
}

/* ─── SCROLL DOWN INDICATOR ─────────────────────────────── */
.scroll-down-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.3s;
    -webkit-tap-highlight-color: transparent;
}

.scroll-down-indicator:hover { opacity: 1; }

.scroll-mouse {
    width: 22px; height: 36px;
    border: 2px solid var(--brown);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    display: block;
    width: 4px; height: 6px;
    background: var(--brown);
    border-radius: 2px;
    animation: wheel-scroll 1.8s ease-in-out infinite;
}

@keyframes wheel-scroll {
    0%   { transform: translateY(0);    opacity: 1; }
    80%  { transform: translateY(12px); opacity: 0; }
    100% { transform: translateY(0);    opacity: 0; }
}

.scroll-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .scroll-down-indicator { display: none; }
}

/* ─── HEADLINE CLIP-PATH REVEAL ─────────────────────────── */
.headline-line {
    display: block;
    overflow: hidden;
    line-height: 1.15;
}

.headline-line > span {
    display: block;
    transform: translateY(110%);
    transition: transform 0.9s var(--ease-spring);
}

.hero-headline.visible .headline-line > span {
    transform: translateY(0);
}

.hero-headline.visible .headline-line:nth-child(1) > span { transition-delay: 0.05s; }
.hero-headline.visible .headline-line:nth-child(2) > span { transition-delay: 0.2s;  }
.hero-headline.visible .headline-line:nth-child(3) > span { transition-delay: 0.35s; }
.hero-headline.visible .headline-line:nth-child(4) > span { transition-delay: 0.5s;  }

/* Keep the hero-sub, btn and stats appearing via fade-up on same .visible */
.hero-headline .hero-sub,
.hero-headline .btn-primary,
.hero-headline .hero-stats {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.hero-headline.visible .hero-sub    { opacity: 1; transform: translateY(0); transition-delay: 0.6s;  }
.hero-headline.visible .btn-primary { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }
.hero-headline.visible .hero-stats  { opacity: 1; transform: translateY(0); transition-delay: 0.9s;  }

/* Override global reveal-up on hero-headline since we handle it inline */
.hero-headline.reveal-up { opacity: 1; transform: none; }

/* ─── SVG MICROINTERAÇÕES NOS CARDS ─────────────────────── */
.servico-card .sc-icon svg * {
    transition: all 0.35s var(--ease-smooth);
}

/* Guarda-roupas: porta direita desliza */
.servico-card:nth-child(1):hover .sc-icon svg rect:nth-of-type(3) {
    transform: translateX(6px);
    transform-box: fill-box;
    transform-origin: right center;
    opacity: 0.7;
}

/* Cozinha: linha central sobe */
.servico-card:nth-child(2):hover .sc-icon svg line:nth-of-type(1) {
    transform: translateY(-3px);
    transform-box: fill-box;
}

/* Closets: rect cresce */
.servico-card:nth-child(3):hover .sc-icon svg rect:nth-of-type(1) {
    transform: scaleY(1.08);
    transform-box: fill-box;
    transform-origin: bottom center;
}

/* Racks: círculo pulsa */
.servico-card:nth-child(4):hover .sc-icon svg circle {
    r: 5;
    transition: r 0.4s;
}

/* Desmontagem: ponteiro do relógio gira */
.servico-card:nth-child(5):hover .sc-icon svg path:nth-of-type(1) {
    animation: clock-spin 1.5s linear infinite;
    transform-box: view-box;
    transform-origin: 50% 50%;
}

@keyframes clock-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ─── FLOATING LABELS ───────────────────────────────────── */
.floating-group {
    position: relative;
}

.floating-group input,
.floating-group textarea {
    width: 100%;
    padding: 22px 16px 8px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--offwhite-2);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    resize: vertical;
    appearance: none;
    -webkit-appearance: none;
}

.floating-group textarea {
    padding-top: 24px;
    min-height: 100px;
}

.floating-group input:focus,
.floating-group textarea:focus {
    border-color: var(--brown);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(107, 58, 42, 0.1);
}

.floating-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    pointer-events: none;
    transition: top 0.25s var(--ease-smooth),
                font-size 0.25s,
                font-weight 0.25s,
                color 0.25s,
                transform 0.25s var(--ease-smooth);
    white-space: nowrap;
}

.floating-group textarea ~ label {
    top: 20px;
    transform: none;
}

/* Float the label up when focused or filled */
.floating-group input:focus ~ label,
.floating-group input:not(:placeholder-shown) ~ label {
    top: 7px;
    transform: translateY(0);
    font-size: 10px;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.floating-group textarea:focus ~ label,
.floating-group textarea:not(:placeholder-shown) ~ label {
    top: 7px;
    font-size: 10px;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* Select wrapper */
.floating-group.select-wrapper select {
    width: 100%;
    padding: 22px 40px 8px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--offwhite-2);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B3A2A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

.floating-group.select-wrapper select:focus {
    border-color: var(--brown);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(107, 58, 42, 0.1);
}

.floating-group.select-wrapper label {
    top: 7px;
    transform: none;
    font-size: 10px;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* ─── GLASSMORPHIC CONTACT FORM ─────────────────────────── */
.contato-form-wrap {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border) !important;
}

/* ─── SUBMIT BUTTON STATES ──────────────────────────────── */
.btn-submit-wrap {
    position: relative;
    overflow: hidden;
}

.submit-spinner {
    display: none;
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    position: relative; z-index: 1;
}

.submit-check {
    display: none;
    width: 18px; height: 18px;
    position: relative; z-index: 1;
}

.submit-check path {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: stroke-dashoffset 0.4s var(--ease-smooth);
}

.submit-check.animate path { stroke-dashoffset: 0; }

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

.btn-primary.sending .submit-spinner { display: block; }
.btn-primary.sending .btn-arrow      { display: none; }
.btn-primary.sent    .submit-check   { display: block; }
.btn-primary.sent    .btn-arrow      { display: none; }
.btn-primary.sent    { background: var(--success); border-color: var(--success); }
.btn-primary.sent:hover { background: var(--success); }

/* ─── MAGNETIC BUTTON ────────────────────────────────────── */
.btn-primary,
.btn-secondary {
    will-change: transform;
    transition: all 0.35s var(--ease-smooth), transform 0.2s var(--ease-out);
}
