/* ============================================
   VARIÁVEIS DE CORES
   ============================================ */
:root {
    --brown-deep: #2e2117;
    --brown-dark: #3d2e1f;
    --brown-mid: #6d4f38;
    --brown-warm: #9a7355;
    --brown-light: #b8926d;
    --gold: #d4b07a;
    --gold-light: #e6c994;
    --gold-bright: #f0ddb5;
    --cream: #f8f1e8;
    --cream-dark: #e0d4c5;
    --glass: rgba(255,255,255,0.07);
    --glass-border: rgba(212,176,122,0.18);
    --glass-hover: rgba(212,176,122,0.1);
    --text-primary: #f8f1e8;
    --text-secondary: #c8b8a4;
    --text-muted: #9e8e7c;
}

/* ============================================
   RESET E BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--brown-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: default;
}

/* ============================================
   CURSOR GLOW (BRILHO DO MOUSE)
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,176,122,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
    background: rgba(46,33,23,0.95);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

.topbar-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-contacts a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.topbar-contacts a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.topbar-contacts svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.topbar-btns {
    display: flex;
    gap: 10px;
}

.btn-top {
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s;
    letter-spacing: 0.5px;
}

.btn-whats {
    background: rgba(37,211,102,0.12);
    color: #25d366;
    border: 1px solid rgba(37,211,102,0.25);
}

.btn-whats:hover {
    background: rgba(37,211,102,0.25);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(37,211,102,0.2);
}

/* ============================================
   HEADER
   ============================================ */
header {
    background: rgba(46,33,23,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.4s;
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* ============================================
   LOGO
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.4s;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-icon {
    width: 48px;
    height: 48px;
    position: relative;
    transition: all 0.5s;
    border-radius: 8px;
    overflow: hidden;
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 0 8px rgba(212,176,122,0.5));
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

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

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 2px;
    text-transform: uppercase;
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0;
}

nav ul li a {
    display: block;
    padding: 10px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

nav ul li a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 12px rgba(212,176,122,0.3);
}

nav ul li a:hover::after {
    width: 70%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    /* =============================================
       >>> IMAGEM 1: FUNDO DO HERO (PRINCIPAL) <<<
       ============================================= */
    background:
        url('./fundos.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30,20,12,0.55);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--brown-deep), transparent);
}

/* Partículas flutuantes no hero */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 8s infinite;
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 32px;
}

/* ============================================
   HERO TAG / TÍTULO / SUBTÍTULO
   ============================================ */
.hero-tag {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 28px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeUp 1s ease-out 0.3s both;
}

.hero-tag::before,
.hero-tag::after {
    content: '——';
    margin: 0 12px;
    color: rgba(212,176,122,0.4);
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 28px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    animation: fadeUp 1s ease-out 0.5s both;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
    display: block;
}

.hero-title span::after {
    display: none;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 44px;
    font-weight: 300;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 1s ease-out 0.7s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

/* ============================================
   BOTÕES
   ============================================ */
.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeUp 1s ease-out 0.9s both;
}

.btn-primary {
    background: var(--gold);
    color: var(--brown-deep);
    padding: 18px 44px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,176,122,0.35);
}

.btn-secondary {
    color: var(--cream);
    padding: 18px 44px;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(212,176,122,0.4);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(212,176,122,0.08);
    transition: height 0.4s;
}

.btn-secondary:hover::before {
    height: 100%;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ============================================
   PÍLULAS DE SERVIÇOS (NO HERO)
   ============================================ */
.services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    animation: fadeUp 1s ease-out 1.1s both;
}

.service-pill {
    background: rgba(212,176,122,0.1);
    border: 1px solid rgba(212,176,122,0.2);
    color: var(--text-secondary);
    font-size: 12px;
    padding: 6px 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.service-pill:hover {
    background: rgba(212,176,122,0.2);
    color: var(--gold);
}

/* Seta de scroll */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(212,176,122,0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 1px solid rgba(212,176,122,0.5);
    border-bottom: 1px solid rgba(212,176,122,0.5);
    transform: rotate(45deg);
}

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

/* ============================================
   BANNER DOURADO
   ============================================ */
.banner-bv {
    background: var(--gold);
    padding: 22px 32px;
    position: relative;
    overflow: hidden;
}

.banner-bv::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.banner-bv::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.banner-bv-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.banner-bv span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--brown-deep);
    letter-spacing: 0.5px;
}

.btn-orcamento {
    background: var(--brown-deep);
    color: var(--gold-light);
    padding: 12px 28px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.4s;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-orcamento:hover {
    background: #1a120b;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */
section {
    padding: 100px 32px;
}

.section-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    transition: width 0.6s;
}

.section-tag:hover::before {
    width: 50px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.section-title span {
    color: var(--gold);
    font-style: italic;
    transition: text-shadow 0.4s;
}

.section-title:hover span {
    text-shadow: 0 0 20px rgba(212,176,122,0.3);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    max-width: 560px;
    font-weight: 300;
}

/* ============================================
   SOBRE NÓS
   ============================================ */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 24px;
}

.sobre-text p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
    font-weight: 300;
}

.sobre-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.stat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212,176,122,0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sobre-img {
    position: relative;
    overflow: hidden;
    transition: transform 0.6s;
}

.sobre-img:hover {
    transform: scale(1.02);
}

.sobre-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: brightness(1) saturate(1);
    transition: all 0.8s;
}

.sobre-img:hover img {
    filter: brightness(1.05) saturate(1.05);
    transform: scale(1.03);
}

.sobre-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--glass-border);
    pointer-events: none;
    transition: border-color 0.4s;
}

.sobre-img:hover::after {
    border-color: var(--gold);
}

/* ============================================
   SERVIÇOS - SLIDER FULL
   ============================================ */
.servicos {
    background: var(--brown-dark);
}

.slider {
    position: relative;
    max-width: 900px;
    margin: 48px auto 0;
}

.slider-viewport {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 800 / 533;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px;
    background: linear-gradient(to top, rgba(30,20,12,0.95) 0%, rgba(30,20,12,0.5) 60%, transparent 100%);
}

.slide-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.slide-desc {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Controles do slider */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212,176,122,0.3);
    background: transparent;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: rgba(212,176,122,0.15);
    border-color: var(--gold);
    transform: scale(1.1);
}

.slider-counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--gold);
    min-width: 60px;
    text-align: center;
}

.slider-current {
    font-size: 24px;
    font-weight: 700;
}

.slider-total {
    color: var(--text-muted);
}

/* Barra de progresso */
.slider-progress {
    width: 100%;
    margin-top: 16px;
    height: 2px;
    background: rgba(212,176,122,0.1);
}

.slider-progress-bar {
    height: 100%;
    background: var(--gold);
    transition: width 0.4s;
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 48px;
    background: var(--glass-border);
}

.dif-card {
    background: var(--brown-deep);
    padding: 44px 36px;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.dif-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,176,122,0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s;
}

.dif-card:hover::before {
    opacity: 1;
}

.dif-card:hover {
    background: rgba(212,176,122,0.04);
    transform: translateY(-4px);
}

.dif-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
    transition: all 0.5s;
}

.dif-card:hover .dif-icon {
    transform: scale(1.2) rotate(-5deg);
}

.dif-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.dif-card:hover .dif-title {
    color: var(--gold-light);
}

.dif-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================
   GALERIA
   ============================================ */
.galeria {
    background: var(--brown-dark);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 48px;
}

.galeria-item {
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s;
    filter: brightness(1) saturate(1);
}

.galeria-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.05) saturate(1.1);
}

.galeria-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.4s;
}

.galeria-item:hover::after {
    opacity: 0;
}

/* ============================================
   CONTATO
   ============================================ */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
    max-width: 600px;
}

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

.contato-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.4s;
    text-decoration: none;
}

.contato-card:hover {
    border-color: var(--gold);
    background: var(--glass-hover);
    transform: translateX(8px);
    box-shadow: -4px 0 20px rgba(212,176,122,0.1);
}

.contato-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid var(--glass-border);
    transition: all 0.4s;
}

.contato-card:hover .contato-card-icon {
    transform: scale(1.15) rotate(-5deg);
}

.contato-card-icon.phone {
    background: rgba(212,176,122,0.1);
    border-color: rgba(212,176,122,0.2);
}

.contato-card-icon.whats {
    background: rgba(37,211,102,0.08);
    border-color: rgba(37,211,102,0.15);
}

.contato-card-icon.email {
    background: rgba(212,176,122,0.1);
    border-color: rgba(212,176,122,0.2);
}

.contato-card-icon.map {
    background: rgba(212,176,122,0.1);
    border-color: rgba(212,176,122,0.2);
}

.contato-card-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contato-card-value {
    font-size: 15px;
    color: var(--cream);
    font-weight: 400;
    margin-top: 4px;
}

/* ============================================
   FORMULÁRIO
   ============================================ */
.form-orcamento {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 44px;
    position: relative;
    transition: all 0.5s;
}

.form-orcamento:hover {
    border-color: rgba(212,176,122,0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.form-orcamento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.form-group:focus-within label {
    color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    padding: 14px 18px;
    color: var(--cream);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: all 0.4s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: rgba(212,176,122,0.04);
    box-shadow: 0 0 15px rgba(212,176,122,0.08);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group select option {
    background: var(--brown-dark);
}

.btn-enviar {
    width: 100%;
    background: var(--gold);
    color: var(--brown-deep);
    border: none;
    padding: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.btn-enviar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-enviar:hover::before {
    width: 400px;
    height: 400px;
}

.btn-enviar:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,176,122,0.3);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #1a120b;
    border-top: 1px solid var(--glass-border);
    padding: 60px 32px 24px;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand .logo {
    padding: 0;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.footer-col h4 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 5px 0;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
}

.footer-copy strong {
    color: var(--gold);
    font-weight: 500;
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.whats-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all 0.4s;
    animation: whats-pulse 2.5s infinite;
}

/* ============================================
   BARRA FIXA MOBILE (Ligar + WhatsApp)
   ============================================ */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30,20,12,0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212,176,122,0.2);
    padding: 10px 16px;
    gap: 10px;
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-bar-call {
    background: var(--gold);
    color: var(--brown-deep);
}

.mobile-bar-call:hover {
    background: var(--gold-light);
}

.mobile-bar-whats {
    background: #25d366;
    color: #fff;
}

.mobile-bar-whats:hover {
    background: #20bd5a;
}

@keyframes whats-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.5), 0 0 0 10px rgba(37,211,102,0.08); }
}

.whats-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    animation: none;
}

/* ============================================
   DIVIDER
   ============================================ */
.divider-center {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 24px auto;
    transition: width 0.6s;
}

.section-inner:hover .divider-center {
    width: 100px;
}

/* ============================================
   ANIMAÇÕES DE SCROLL
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.35s; }
.fade-up:nth-child(6) { transition-delay: 0.4s; }

/* Efeito 3D tilt */
.tilt-card {
    transition: transform 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ============================================
   PROJETO EXCLUSIVO — ANTES & DEPOIS
   ============================================ */
.projeto-section { background: var(--brown-dark); }

.ba-wrapper { max-width: 860px; margin: 48px auto 0; }

.ba-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.ba-layer { position: absolute; inset: 0; }

.ba-layer img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.88);
    pointer-events: none;
    display: block;
}

.ba-sketchup { clip-path: inset(0 50% 0 0); }

.ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: var(--gold);
    z-index: 10;
    pointer-events: none;
}

.ba-handle-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    color: var(--brown-deep);
    pointer-events: none;
}

.ba-badge {
    position: absolute;
    top: 16px;
    z-index: 8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    pointer-events: none;
}

.ba-badge-left {
    left: 16px;
    background: rgba(30,20,12,0.82);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.ba-badge-right {
    right: 16px;
    background: var(--gold);
    color: var(--brown-deep);
}

.ba-drag-tip {
    position: absolute;
    bottom: 18px; left: 50%;
    transform: translateX(-50%);
    background: rgba(30,20,12,0.82);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 11px; font-weight: 500;
    letter-spacing: 1.5px;
    padding: 7px 16px;
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
    z-index: 9;
    transition: opacity 0.5s;
    pointer-events: none;
}

.ba-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.ba-footer-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--text-muted);
    font-weight: 400; letter-spacing: 0.5px;
}

.ba-footer-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ba-footer-dot--before { background: var(--brown-mid); border: 1px solid var(--gold); }
.ba-footer-dot--after  { background: var(--gold); }
.ba-footer-divider { width: 40px; height: 1px; background: var(--glass-border); }

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 968px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-card {
        min-width: auto;
    }
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(46,33,23,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 32px;
        border-bottom: 1px solid var(--glass-border);
    }
    nav ul.open {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
    .topbar-contacts {
        display: none;
    }
    .hero {
        min-height: 80vh;
    }
    .hero-content {
        padding: 0 24px;
    }
    section {
        padding: 60px 24px;
    }
    .slider-viewport {
        height: 350px;
    }
    .ba-container { aspect-ratio: 4 / 3; }
    .ba-badge { font-size: 9px; padding: 5px 10px; }
    .ba-handle-btn { width: 38px; height: 38px; }
    .slide-name {
        font-size: 24px;
    }
    .slide-info {
        padding: 28px 24px;
    }
    .galeria-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sobre-stats {
        grid-template-columns: 1fr 1fr;
    }
    .cursor-glow {
        display: none;
    }
    .mobile-bar {
        display: flex;
    }
    .whats-float {
        display: none;
    }
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .slider-viewport {
        height: 280px;
    }
    .slide-name {
        font-size: 20px;
    }
    .slide-desc {
        font-size: 12px;
    }
    .slide-info {
        padding: 20px 16px;
    }
    .slider-btn {
        width: 38px;
        height: 38px;
    }
    .slider-counter {
        font-size: 16px;
    }
    .slider-current {
        font-size: 20px;
    }
    .galeria-grid {
        grid-template-columns: 1fr;
    }
}
/* CORREÇÃO: badges antes/depois no mobile — ficam na parte inferior da imagem */
@media (max-width: 500px) {
    .ba-badge {
        font-size: 10px !important;
        padding: 4px 7px !important;
        max-width: 44%;
        white-space: normal;
        line-height: 1.3;
        text-align: center;
        top: auto !important;
        bottom: 10px !important;
    }
    .ba-badge-left  { left: 6px !important; }
    .ba-badge-right { right: 6px !important; left: auto !important; }
}