/* ==========================================================================
   DONA CHICA BUFFET & EVENTOS — DESIGN SYSTEM (ESTILO CASA BERTOLAZZI LUXO)
   Paleta Warm Chocolate Brown & Champagne Gold Nobre
   ========================================================================== */

:root {
    /* Paleta Warm Dark Brown (Inspirada na Casa Bertolazzi) */
    --bg-main: #1A1111;
    --bg-surface: #231717;
    --bg-surface-elevated: #2C1D1D;
    --bg-card: rgba(44, 29, 29, 0.72);
    --bg-card-hover: rgba(58, 38, 38, 0.88);
    
    /* Ouro e Acentos Nobres Champagne */
    --gold-primary: #C5A059;
    --gold-light: #EBD4A7;
    --gold-dark: #967433;
    --gold-gradient: linear-gradient(135deg, #F5DFB8 0%, #C5A059 50%, #9B7835 100%);
    --gold-gradient-subtle: linear-gradient(135deg, rgba(197, 160, 89, 0.18) 0%, rgba(197, 160, 89, 0.04) 100%);
    --gold-glow: 0 0 25px rgba(197, 160, 89, 0.28);
    
    /* Tipografia de Alto Padrão */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-brand: 'Cinzel', serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Textos Clássicos & Acolhedores */
    --text-main: #FAF5EE;
    --text-muted: #D5C1B1;
    --text-dim: #9E8778;
    
    /* Bordas & Glassmorphism Nobre */
    --border-gold: rgba(197, 160, 89, 0.3);
    --border-gold-strong: rgba(235, 212, 167, 0.6);
    --border-glass: rgba(250, 240, 225, 0.08);
    --glass-blur: blur(16px);
    
    /* Sombras Profundas & Transições Suaves */
    --shadow-deep: 0 20px 45px rgba(10, 6, 6, 0.65);
    --shadow-card: 0 10px 30px rgba(12, 8, 8, 0.45);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Dimensões */
    --container-width: 1200px;
    --header-height: 64px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-gold-italic {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ==================== DIVIDER TAGS (ESTILO BERTOLAZZI) ==================== */
.section-divider-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-primary);
}

.section-divider-tag::before,
.section-divider-tag::after {
    content: '';
    display: block;
    height: 1px;
    width: 60px;
    background: var(--gold-gradient);
    opacity: 0.5;
}

.section-divider-tag.align-left {
    justify-content: flex-start;
}

.section-divider-tag.align-left::before {
    display: none;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.section-header-wrapper {
    margin-bottom: 50px;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #1A1111;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
    background: linear-gradient(135deg, #FAF0D8 0%, #D4AF37 50%, #A67E30 100%);
}

.btn-outline {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
}

.btn-outline:hover {
    background: rgba(197, 160, 89, 0.12);
    border-color: var(--gold-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 34px;
    font-size: 1rem;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.icon-svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn:hover .icon-svg {
    transform: translateX(4px);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* ==================== HEADER (SLEEK NOBRE AUTO-HIDE) ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(250, 240, 225, 0.04);
    will-change: transform;
}

/* Estado oculto ao rolar para baixo */
.header.header-hidden {
    transform: translateY(-100%);
}

/* Estado visível ao rolar para cima ou no topo */
.header.header-visible,
.header.scrolled {
    background: rgba(26, 17, 17, 0.94);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    height: 58px;
}

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

/* Brand Logo Delicado */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: var(--gold-gradient);
    color: #1A1111;
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.25);
}

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

.brand-title {
    font-family: var(--font-brand);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #FFFFFF;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.58rem;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
    font-weight: 600;
    line-height: 1.2;
}

/* Nav Menu Compacto */
.nav-list {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    padding: 6px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Botão Header Compacto e Delicado */
.btn-header {
    padding: 7px 18px;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(197, 160, 89, 0.25);
}

.btn-header .icon-svg {
    width: 12px;
    height: 12px;
}

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

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #FFFFFF;
    transition: var(--transition);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-media-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    transform: scale(1.01);
    transition: transform 12s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero:hover .hero-img-bg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(26, 17, 17, 0.96) 0%, 
        rgba(26, 17, 17, 0.88) 32%, 
        rgba(26, 17, 17, 0.40) 58%, 
        rgba(26, 17, 17, 0.08) 85%, 
        transparent 100%),
        linear-gradient(180deg, 
        rgba(26, 17, 17, 0.4) 0%, 
        transparent 35%, 
        rgba(26, 17, 17, 0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--border-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
    box-shadow: 0 0 8px var(--gold-primary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-quick-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: var(--gold-primary);
}

/* ==================== SEÇÃO AUTORIDADE & NÚMEROS ==================== */
.section-stats {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.stats-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.stats-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.stats-lead strong {
    color: var(--gold-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    padding: 36px 24px;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-card);
}

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

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-prefix, .stat-suffix {
    font-size: 2rem;
    color: var(--gold-primary);
}

.stat-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ==================== SEÇÃO "VAMOS COMEÇAR" ==================== */
.section-start {
    padding: 120px 0;
    background: var(--bg-main);
}

.start-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.start-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.start-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.start-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

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

.feature-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.feature-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.start-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-deep);
}

.start-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.start-img-wrapper:hover .start-img {
    transform: scale(1.03);
}

.img-badge-floating {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(26, 17, 17, 0.88);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-gold);
    padding: 16px 24px;
    border-radius: 4px;
}

.img-badge-floating .badge-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-light);
}

.img-badge-floating .badge-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==================== BANNER DE VÍDEO / EXPERIÊNCIA ==================== */
.section-video-banner {
    padding: 80px 0 0;
    background: var(--bg-surface);
}

.video-banner-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.video-banner-wrapper {
    position: relative;
    max-width: 1300px;
    height: 500px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-deep);
}

.video-banner-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,17,17,0.1) 0%, rgba(26,17,17,0.55) 100%);
    pointer-events: none;
}

/* ==================== SOBRE NÓS ==================== */
.section-about {
    padding: 120px 0;
    background: var(--bg-main);
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-img-frame {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-deep);
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.about-subtitle {
    font-size: 1.15rem;
    color: var(--gold-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.35rem;
    color: #FFFFFF;
    border-left: 3px solid var(--gold-primary);
    padding-left: 20px;
    margin-top: 20px;
}

/* ==================== TIPOS DE EVENTOS ==================== */
.section-events {
    padding: 120px 0;
    background: var(--bg-surface);
}

.event-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
}

.event-row:last-child {
    margin-bottom: 0;
}

.event-row.reverse .event-img-col {
    order: 2;
}

.event-row.reverse .event-text-col {
    order: 1;
}

.event-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-deep);
}

.event-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-img-wrap:hover img {
    transform: scale(1.04);
}

.event-number {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.25;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.event-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ==================== DIFERENCIAIS (01 A 06) ==================== */
.section-diffs {
    padding: 120px 0;
    background: var(--bg-main);
}

.diffs-header-wrapper {
    max-width: 700px;
    margin-bottom: 60px;
}

.diffs-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.diffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.diff-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    padding: 40px 30px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.diff-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.diff-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.diff-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.diff-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== FORMATOS & ESPAÇOS ==================== */
.section-formats {
    padding: 120px 0;
    background: var(--bg-surface);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.format-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.format-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
}

.format-img-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.format-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.format-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(26, 17, 17, 0.88);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
}

.format-tag.gold {
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

.format-content {
    padding: 36px 30px;
}

.format-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.format-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.format-list {
    margin-bottom: 30px;
}

.format-list li {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
}

.format-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

/* ==================== CARDÁPIOS & GASTRONOMIA ==================== */
.section-menus {
    padding: 120px 0;
    background: var(--bg-main);
}

.menu-tabs-wrapper {
    margin-top: 40px;
}

.menu-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    color: #FFFFFF;
    border-color: var(--border-gold);
}

.tab-btn.active {
    background: var(--gold-gradient);
    color: #1A1111;
    border-color: var(--gold-primary);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.35);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tab-panel.active {
    display: block;
}

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

.tab-panel-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-deep);
}

.tab-img-wrap {
    border-radius: 6px;
    overflow: hidden;
    height: 420px;
}

.tab-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.tab-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.menu-items-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 34px;
}

.menu-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-col ul li {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.menu-col ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 1.2rem;
    line-height: 1;
}

/* ==================== GALERIA DE EXPERIÊNCIAS ==================== */
.section-gallery {
    padding: 120px 0;
    background: var(--bg-surface);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover {
    border-color: var(--gold-primary);
    color: #FFFFFF;
}

.gallery-filter-btn.active {
    background: rgba(197, 160, 89, 0.18);
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-card {
    position: relative;
    height: 320px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-glass);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,17,17,0) 0%, rgba(26,17,17,0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover img,
.gallery-card:hover video {
    transform: scale(1.08);
}

.gallery-card-video {
    position: relative;
    cursor: pointer;
}

.gallery-video-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-video-play-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(26, 17, 17, 0.75);
    border: 1px solid var(--gold-primary);
    backdrop-filter: var(--glass-blur);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.gallery-video-play-badge svg {
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.gallery-card-video:hover .gallery-video-play-badge {
    background: var(--gold-gradient);
    color: #1A1111;
    transform: scale(1.15);
}

.gallery-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
    margin-bottom: 6px;
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #FFFFFF;
}

/* ==================== TIMELINE (COMO FUNCIONA) ==================== */
.section-how-it-works {
    padding: 120px 0;
    background: var(--bg-main);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.timeline-step {
    text-align: center;
    position: relative;
}

.timeline-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background: var(--gold-primary);
    opacity: 0.35;
    z-index: 1;
}

.timeline-step:last-child .timeline-line {
    display: none;
}

.timeline-number {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.timeline-step:hover .timeline-number {
    background: var(--gold-primary);
    color: #1A1111;
    transform: scale(1.1);
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.timeline-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* ==================== DEPOIMENTOS (GOOGLE REVIEWS ESTILO CASA BERTOLAZZI) ==================== */
.section-testimonials {
    padding: 120px 0;
    background: var(--bg-surface);
    position: relative;
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: center;
}

/* Coluna Esquerda: Badge Geral Google */
.reviews-badge-card {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reviews-badge-rating {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    line-height: 1.1;
}

.reviews-badge-stars {
    color: #F59E0B;
    font-size: 1.8rem;
    letter-spacing: 4px;
    margin: 8px 0 4px;
}

.reviews-badge-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.reviews-badge-count strong {
    color: #FFFFFF;
}

.reviews-badge-google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-full-logo {
    width: 110px;
    height: auto;
}

/* Coluna Direita: Slider com Flechas */
.reviews-slider-container {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    width: 100%;
    min-width: 0;
}

.slider-arrow {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-arrow:hover {
    color: var(--gold-light);
    transform: scale(1.15);
}

.reviews-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 4px;
    width: 100%;
}

.reviews-slider-track::-webkit-scrollbar {
    display: none;
}

/* Review Card Google */
.review-google-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 260px;
    background: #241717;
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 8px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.review-google-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.review-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

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

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #FFFFFF;
    position: relative;
    flex-shrink: 0;
}

.avatar-purple {
    background: #7C3AED;
}

.avatar-teal {
    background: #0D9488;
}

.avatar-gold {
    background: var(--gold-primary);
    color: #1A1111;
}

.avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-verified {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
}

.avatar-verified svg {
    width: 100%;
    height: 100%;
}

.review-user-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.review-time {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-google-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars-gold {
    color: #F59E0B;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.badge-verified-check {
    display: flex;
    align-items: center;
}

.badge-verified-check svg {
    width: 16px;
    height: 16px;
}

.review-comment {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    text-transform: uppercase;
    font-weight: 500;
}

.review-read-more {
    font-size: 0.75rem;
    color: var(--gold-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    display: inline-block;
    margin-top: auto;
}

.review-read-more:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* ==================== FAQ ==================== */
.section-faq {
    padding: 120px 0;
    background: var(--bg-main);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.faq-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.faq-accordion-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: var(--border-gold);
}

.faq-question {
    padding: 22px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon-toggle {
    font-size: 1.4rem;
    color: var(--gold-primary);
    font-weight: 300;
}

.faq-item .icon-minus {
    display: none;
}

.faq-item[open] .icon-plus {
    display: none;
}

.faq-item[open] .icon-minus {
    display: inline;
}

.faq-answer {
    padding: 0 28px 24px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* ==================== SIMULADOR DE ORÇAMENTO ==================== */
.section-form {
    padding: 120px 0;
    background: var(--bg-surface);
    position: relative;
    scroll-margin-top: 70px;
}

.form-card-wrapper {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 60px 40px;
    box-shadow: var(--shadow-deep);
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    word-break: break-word;
}

.form-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    word-break: break-word;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: var(--bg-main);
    border: 1px solid var(--border-glass);
    color: #FFFFFF;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 6px;
    outline: none;
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C5A059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 40px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.25);
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 14px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #120A0A;
    border-top: 1px solid var(--border-glass);
    padding: 90px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-about {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 20px 0 24px;
}

.footer-contact-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-contact-item strong {
    color: var(--gold-light);
}

.footer-title {
    font-family: var(--font-brand);
    font-size: 1.05rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
    margin-top: 8px;
}

.footer-links li,
.footer-cities li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-cities li {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.footer-social-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    padding: 10px 18px;
    border-radius: 4px;
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
}

.footer-socials a:hover {
    background: var(--gold-gradient);
    color: #1A1111;
    border-color: var(--gold-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 24px 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ==================== FLOATING WHATSAPP ==================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .start-container,
    .about-container,
    .tab-panel-grid,
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .diffs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
    }

    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .header-cta-wrapper {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(26, 17, 17, 0.98);
        backdrop-filter: var(--glass-blur);
        padding: 30px 20px;
        transform: translateX(-100%);
        transition: var(--transition);
        overflow-y: auto;
        visibility: hidden;
        pointer-events: none;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    
    .nav-link {
        font-size: 1.05rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 7.5vw, 2.75rem);
        word-break: break-word;
    }

    .hero-img-bg {
        object-position: center center;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, 
            rgba(26, 17, 17, 0.78) 0%, 
            rgba(26, 17, 17, 0.68) 45%, 
            rgba(26, 17, 17, 0.96) 100%);
    }
    
    .section-title,
    .start-title,
    .about-title,
    .video-banner-title,
    .faq-title,
    .form-title {
        font-size: clamp(1.75rem, 6.5vw, 2.25rem);
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-quick-badges {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .stats-grid,
    .start-features-grid,
    .diffs-grid,
    .formats-grid,
    .timeline-grid,
    .footer-container,
    .form-grid,
    .menu-items-columns {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-card {
        height: 200px;
    }

    .gallery-filters {
        gap: 8px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .gallery-filters::-webkit-scrollbar {
        display: none;
    }

    .gallery-filter-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .menu-tabs-nav {
        gap: 8px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .menu-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .tab-panel-grid {
        padding: 24px 16px;
    }

    .tab-img-wrap {
        height: 240px;
    }
    
    .reviews-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .reviews-badge-card {
        padding: 0 0 20px;
        border-bottom: 1px solid var(--border-glass);
    }

    .reviews-slider-container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .reviews-slider-track {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 6px 0;
    }

    .review-google-card {
        flex: 0 0 85%;
        min-width: 250px;
        max-width: 300px;
    }
    
    .event-row,
    .event-row.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .event-row.reverse .event-img-col {
        order: 1;
    }
    
    .event-row.reverse .event-text-col {
        order: 2;
    }
    
    .form-card-wrapper {
        padding: 30px 18px;
    }

    .section-divider-tag::before,
    .section-divider-tag::after {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-card {
        height: 240px;
    }

    .review-google-card {
        flex: 0 0 92%;
        min-width: 240px;
    }

    .stat-card {
        padding: 24px 16px;
    }
}
