/* ==========================================
   BARBEARIA CASTELLO FORTE - DESIGN SYSTEM
   Baseado no Manual da Marca Oficial (Codex Castello Forte)
   
   PALETA OFICIAL:
   - Preto Castello: #050505 (60% - Domina)
   - Ouro Castello:  #C9972B (25% - Identifica)
   - Ouro Claro:     #E5C56A (destaques metálicos)
   - Bordô Castello: #5A0F16 (5% - Diferencia)
   - Marfim:         #F1E7D2 (10% - Comunica)
   - Branco:         #FFFFFF (textos)
   ========================================== */

:root {
    /* === CORES OFICIAIS DO MANUAL DA MARCA === */
    --preto-castello: #050505;
    --bg-darker: #050505;
    --bg-dark: #0e0e0e;
    --bg-card: #181818;
    --bg-card-hover: #1f1f1f;

    /* Ouro Castello Oficial */
    --gold-primary: #C9972B;
    --gold-light: #E5C56A;
    --gold-dark: #8C6415;
    --gold-gradient: linear-gradient(135deg, #8C6415 0%, #D4A93A 35%, #F2D477 60%, #A97617 100%);
    --gold-gradient-h: linear-gradient(90deg, #8C6415 0%, #D4A93A 35%, #F2D477 60%, #A97617 100%);

    /* Bordô Castello Oficial */
    --bordeaux: #5A0F16;
    --bordeaux-light: #7a1820;

    /* Marfim Institucional */
    --ivory: #F1E7D2;
    --ivory-muted: rgba(241, 231, 210, 0.7);

    /* Cores de texto */
    --text-light: #FFFFFF;
    --text-ivory: #F1E7D2;
    --text-muted: #999999;
    --text-dark: #050505;

    /* Bordas */
    --border-gold: rgba(201, 151, 43, 0.3);
    --border-gold-strong: rgba(201, 151, 43, 0.55);
    --border-subtle: rgba(255, 255, 255, 0.07);

    /* Sombras */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 0 28px rgba(201, 151, 43, 0.3);
    --shadow-bordeaux: 0 0 20px rgba(90, 15, 22, 0.4);

    /* Tipografia Oficial - Cinzel + Montserrat */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-display: 'Oswald', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.text-gold {
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-ivory {
    color: var(--ivory);
}

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

/* ==========================================
   BOTÕES
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: 0 4px 18px rgba(201, 151, 43, 0.35);
    border-color: transparent;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(201, 151, 43, 0.55);
    filter: brightness(1.08);
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline:hover {
    background: rgba(201, 151, 43, 0.1);
    color: var(--gold-light);
    transform: translateY(-3px);
    border-color: var(--gold-light);
}

.btn-bordeaux {
    background-color: var(--bordeaux);
    color: var(--ivory);
    border-color: var(--bordeaux);
}

.btn-bordeaux:hover {
    background-color: var(--bordeaux-light);
    transform: translateY(-2px);
}

.btn-dark-outline {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(241, 231, 210, 0.25);
    color: var(--text-ivory);
}

.btn-dark-outline:hover {
    background: rgba(241, 231, 210, 0.1);
    border-color: var(--ivory);
}

.btn-dark {
    background-color: var(--bg-darker);
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
}

.btn-dark:hover {
    background-color: var(--gold-primary);
    color: var(--text-dark);
}

.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-xl { padding: 20px 44px; font-size: 1.2rem; }
.btn-block { width: 100%; }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.9);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-gold);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    border-radius: var(--radius-sm);
    object-fit: contain;
    border: 1px solid var(--border-gold);
    transition: var(--transition);
}

.brand-logo:hover .logo-img {
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    letter-spacing: 0.5px;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.93) 70%, rgba(5, 5, 5, 1) 100%),
        radial-gradient(circle at 70% 30%, rgba(90, 15, 22, 0.2) 0%, rgba(5, 5, 5, 0.85) 70%),
        url('barber_background.png') center/cover no-repeat;
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.95);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9972B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

/* Efeito Shimmer nas fontes - ouro oficial */
.title-shimmer-gold {
    background: linear-gradient(
        110deg,
        #8C6415 0%,
        #D4A93A 20%,
        #F2D477 50%,
        #D4A93A 80%,
        #8C6415 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3.5s linear infinite;
    display: inline-block;
}

.title-shimmer-white {
    background: linear-gradient(
        110deg,
        #ffffff 0%,
        #F1E7D2 25%,
        #ffffff 45%,
        #C9972B 55%,
        #ffffff 75%,
        #dddddd 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4.5s linear infinite;
    display: inline-block;
}

@keyframes textShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--ivory-muted);
    margin-bottom: 35px;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.7;
}

/* Tagline secundária */
.hero-tagline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(201, 151, 43, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(201, 151, 43, 0.4), transparent);
}

/* Hero Shield/Logo Box */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
}

.card-hero-logo {
    position: relative;
    background: #000;
    border: 1px solid rgba(201, 151, 43, 0.45);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.95),
        0 0 30px rgba(201, 151, 43, 0.15);
    text-align: center;
    max-width: 380px;
    transform: rotate(-1deg) perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.card-hero-logo:hover {
    transform: rotate(0deg) perspective(1000px) rotateY(0deg) scale(1.03);
    box-shadow:
        inset 0 1px 0 rgba(241, 231, 210, 0.2),
        0 30px 70px rgba(0, 0, 0, 1),
        0 0 40px rgba(201, 151, 43, 0.35);
}

.hero-shield-img {
    width: 100%;
    max-width: 260px;
    height: auto;
    background: #000;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-md);
    box-shadow: none;
}

.shield-badge-tag {
    margin-top: 15px;
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 2px;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    text-transform: uppercase;
}

/* ==========================================
   MARQUEE TICKER (faixa de palavras-chave)
   ========================================== */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: var(--preto-castello);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 14px 0;
    position: relative;
    user-select: none;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.8);
    z-index: 5;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeRight 35s linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-primary);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.marquee-content span::before {
    content: "◆";
    color: var(--bordeaux);
    font-size: 0.6rem;
    opacity: 0.8;
}

@keyframes marqueeRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

/* ==========================================
   BANNER STRIP - BORDEAUX CASTELLO
   ========================================== */
.banner-club-strip {
    background: linear-gradient(90deg, #3a0a0e 0%, var(--bordeaux) 40%, #7a1820 65%, #3a0a0e 100%);
    color: var(--ivory);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(201, 151, 43, 0.2);
    border-bottom: 1px solid rgba(201, 151, 43, 0.2);
}

.strip-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.strip-text {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ivory);
}

.strip-icon {
    font-size: 1.4rem;
    color: var(--gold-light);
}

/* ==========================================
   SEÇÕES GERAIS
   ========================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.88rem;
    color: var(--gold-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Linha decorativa de seção */
.section-title::after {
    display: none;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ==========================================
   PLANOS DE ASSINATURA
   ========================================== */
.plans-section {
    background-color: var(--bg-dark);
}

/* Plan Cards Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.plan-card {
    background: linear-gradient(160deg, #1c1c1c 0%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow:
        inset 0 1px 0 rgba(241, 231, 210, 0.06),
        inset 0 -2px 4px rgba(0,0,0,0.7),
        0 15px 40px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow:
        inset 0 1px 0 rgba(241, 231, 210, 0.12),
        0 25px 55px rgba(0, 0, 0, 0.95),
        var(--shadow-gold);
}

.plan-featured {
    background: linear-gradient(160deg, #1e1a0f 0%, #0d0b05 100%);
    border: 2px solid var(--gold-primary);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(201, 151, 43, 0.2);
    transform: scale(1.03);
}

.plan-featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 15px 55px rgba(0, 0, 0, 0.95), var(--shadow-gold);
}

.featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
}

.plan-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.plan-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(201, 151, 43, 0.15);
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-primary);
    vertical-align: top;
}

.amount {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.amount.hidden { display: none; }

.period {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.plan-features {
    margin-bottom: 35px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    margin-bottom: 14px;
    color: var(--ivory-muted);
}

.club-guarantee {
    text-align: center;
    margin-top: 40px;
    font-size: 0.92rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ==========================================
   SEÇÃO UNIDADES
   ========================================== */
.units-section {
    background-color: var(--bg-darker);
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.unit-card {
    background: linear-gradient(160deg, #181818 0%, #0c0c0c 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(241, 231, 210, 0.07),
        inset 0 -2px 4px rgba(0,0,0,0.8),
        0 15px 40px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.unit-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow:
        inset 0 1px 0 rgba(241, 231, 210, 0.15),
        0 25px 55px rgba(0, 0, 0, 1),
        var(--shadow-gold);
}

.unit-header-bar {
    background-color: #141414;
    padding: 12px 20px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(201, 151, 43, 0.1);
}

.unit-badge {
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.unit-image-box {
    height: 140px;
    background: linear-gradient(135deg, #180d05 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(201, 151, 43, 0.12);
}

.unit-icon-big {
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.75;
}

.unit-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.unit-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-light);
}

.unit-city {
    font-size: 0.88rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.unit-details {
    margin-bottom: 25px;
    flex-grow: 1;
}

.unit-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.unit-details li i { margin-top: 3px; }

.unit-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ==========================================
   SERVIÇOS & PREÇOS
   ========================================== */
.services-section {
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--border-gold-strong);
    background-color: var(--bg-card-hover);
    transform: translateX(4px);
}

.highlight-service {
    border: 1px solid var(--gold-primary);
    background: linear-gradient(90deg, rgba(201, 151, 43, 0.1) 0%, rgba(24, 24, 24, 1) 100%);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-light);
}

.service-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-primary);
    white-space: nowrap;
}

.services-callout {
    background: rgba(201, 151, 43, 0.08);
    border: 1px dashed var(--border-gold);
    padding: 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================
   DIFERENCIAIS
   ========================================== */
.features-section {
    background-color: var(--bg-darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 35px 22px;
    background: linear-gradient(160deg, #181818 0%, #0d0d0d 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================
   DEPOIMENTOS
   ========================================== */
.testimonials-section {
    background-color: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: linear-gradient(160deg, #1a1a1a 0%, #0e0e0e 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 22px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.12;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.stars {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--ivory-muted);
    font-style: italic;
    margin-bottom: 22px;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-light);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--gold-primary);
    letter-spacing: 0.5px;
}

/* ==========================================
   CTA BANNER FINAL
   ========================================== */
.cta-banner {
    background:
        linear-gradient(135deg, #120808 0%, var(--preto-castello) 50%, #100408 100%);
    border-top: 2px solid var(--gold-primary);
    border-bottom: 1px solid var(--border-subtle);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(90, 15, 22, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 18px;
    color: var(--text-light);
    position: relative;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--ivory-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
    position: relative;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: #020202;
    padding-top: 70px;
    border-top: 1px solid var(--border-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    border: 1px solid var(--border-gold);
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    color: var(--text-light);
}

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

.footer-links li, .footer-units-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.link-gold {
    color: var(--gold-primary);
}

.footer-bottom {
    background-color: #010101;
    padding: 20px 0;
    border-top: 1px solid rgba(201, 151, 43, 0.1);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Marfim no rodapé */
.footer-units-list li {
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* ==========================================
   MAPAS NO RODAPÉ - GOOGLE MAPS
   ========================================== */
.maps-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #020202 0%, #080808 100%);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.maps-header {
    text-align: center;
    margin-bottom: 45px;
}

.maps-header .section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    background: rgba(201, 151, 43, 0.1);
    border: 1px solid var(--border-gold);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
}

.maps-header .section-tag i {
    margin-right: 8px;
}

.maps-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.maps-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

.map-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.map-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.map-card.featured {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(201, 151, 43, 0.15);
}

.map-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(201, 151, 43, 0.08) 0%, rgba(90, 15, 22, 0.08) 100%);
    border-bottom: 1px solid var(--border-gold);
}

.map-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--preto-castello);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.map-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.map-info p {
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 500;
}

.map-embed {
    position: relative;
    width: 100%;
    height: 250px;
    border-bottom: 1px solid var(--border-gold);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.6) brightness(0.85) contrast(1.1);
    transition: var(--transition);
}

.map-card:hover .map-embed iframe {
    filter: grayscale(0.2) brightness(0.95) contrast(1);
}

.map-card-footer {
    padding: 15px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-decoration: none;
    padding: 10px 22px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.map-btn i {
    font-size: 0.9rem;
}

.map-btn:hover {
    background: var(--gold-gradient);
    color: var(--preto-castello);
    border-color: var(--gold-primary);
    transform: scale(1.03);
}

/* ==========================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: var(--transition);
    animation: bouncePulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.7);
    color: #ffffff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #0e0e0e;
    color: var(--ivory);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: var(--font-body);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes bouncePulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-6px) scale(1.04); }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons  { justify-content: center; }
    .hero-stats    { justify-content: center; }

    .footer-content { grid-template-columns: 1fr 1fr; }

    .maps-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

    .plan-featured { transform: scale(1); }
    .plan-featured:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }

    .nav-links {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: rgba(5, 5, 5, 0.98);
        border-bottom: 1px solid var(--border-gold);
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.95);
    }

    .nav-btn { display: none; }

    .hero-title { font-size: 2.3rem; }

    .section-title { font-size: 2rem; }

    .strip-flex { flex-direction: column; text-align: center; }

    .footer-content { grid-template-columns: 1fr; }

    .maps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

    .cta-title { font-size: 1.9rem; }

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

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 15px; text-align: center; }
    .stat-divider { width: 40px; height: 1px; }
    .maps-title { font-size: 1.5rem; }
    .map-embed { height: 200px; }
}
