/*
Theme Name: OPJ Advocacia e Consultoria Jurídica
Theme URI: https://opjadvocaciaeconsultoriajuridica.com.br
Description: Tema elegante e minimalista para escritório de advocacia - Odair Pereira Junior
Author: Jurídico Visual
Author URI: https://juridicovisual.com.br
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: opj-advocacia
*/

/* ===================================
   CSS VARIABLES & BASE
=================================== */
:root {
    /* Colors */
    --color-gold: #D4AF37;
    --color-gold-dark: #B8941E;
    --color-gold-light: #E5C158;
    --color-black: #000000;
    --color-black-light: #1a1a1a;
    --color-white: #ffffff;
    --color-gray: #333333;
    --color-gray-light: #666666;
    --color-gray-lighter: #999999;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max-width: 1400px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   RESET & BASE
=================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   CSS VARIABLES
=================================== */
:root {
    --color-primary: #000000;
    --color-secondary: #D4AF37;
    --color-accent: #D4AF37;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gold: #D4AF37;
    --color-dark-bg: #000000;
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Montserrat', sans-serif;
}

/* ===================================
   ADVANCED GLASSMORPHISM NAVIGATION BAR
=================================== */
.navbar-container {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1100px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar {
    background: rgb(81 81 81 / 70%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.8s ease;
}

.navbar:hover::before {
    left: 100%;
}

.navbar:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Logo Section */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 2;
    position: relative;
}

.navbar-logo {
    height: 36px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.mobile-menu-logo {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.brand-text {
    background: linear-gradient(135deg, #ffffff, #d4d4d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    z-index: 2;
    position: relative;
}

@media (min-width: 993px) {
    .navbar-nav {
        display: flex !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        flex-direction: row !important;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--color-secondary), #B8941E);
    color: #000;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 5px;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
    justify-content: center;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 1600;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.3rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-nav {
    padding: 40px 30px;
    list-style: none;
}

.mobile-menu-item {
    margin-bottom: 8px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.mobile-menu-icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.mobile-cta {
    margin: 30px 30px 40px;
}

.mobile-cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--color-secondary), #B8941E);
    color: #000;
    text-decoration: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

/* ===================================
   LIQUID GLASS HERO SECTION
=================================== */
.glass-reflect {
    position: relative;
    overflow: hidden;
}

.glass-reflect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s ease;
}

.glass-reflect:hover::before {
    left: 100%;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Fullscreen background image with dark overlay */
    background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
}

/* Animated Background Grid */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

.grid-line {
    position: absolute;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--color-secondary) 50%, 
        transparent 100%);
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
    left: var(--line-position);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    top: var(--line-position);
}

/* Hero Content */
.hero-content {
    width: min(94%, 1100px);
    max-width: 1100px;
    margin: 0 0 0 5%;
    text-align: left;
    position: relative;
    z-index: 10;
    padding: 4rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Hero Logo above text */
.hero-logo {
    height: 130px;
    width: auto;
    max-width: 90%;
    margin: 0 0 1rem 0;
    object-fit: contain;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-secondary);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.badge-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
}

.badge-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(2.25rem, 5.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(30px);
    max-width: 100%;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, 
        #FFFFFF 0%, 
        var(--color-secondary) 50%, 
        #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.hero-title .highlight {
    display: block;
    color: var(--color-white);
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.5);
    font-size: 0.8em; /* menor que a linha de cima */
}

/* Hero Areas Cards */
.hero-areas-cards {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 2.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-area-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    transition: all 0.3s ease;
    cursor: default;
}

.hero-area-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.hero-area-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
}

.hero-area-icon svg {
    width: 100%;
    height: 100%;
}

.hero-area-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.hero-area-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
    font-weight: 300;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 0 0 3rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-secondary), #B8941E);
    color: #000000;
    border: none;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-logo {
        height: 64px;
        max-width: 95%;
    }
    .hero-content {
        width: 90%;
        margin-left: 5%;
        text-align: left;
        align-items: flex-start;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-areas-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin: 1.5rem 0 2rem;
    }
    
    .hero-area-card {
        padding: 1.25rem 1rem;
    }
    
    .hero-area-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
    }
    
    .hero-area-title {
        font-size: 0.9rem;
    }
    
    .hero-area-desc {
        font-size: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin: 0 auto 3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

/* ===================================
   SCROLL PINNING SECTION
=================================== */
.pinning-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    margin-bottom: -5vh;
}

.pin-container {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Fixed Image Left Side */
.fixed-image-side {
    width: 40%;
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.side-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.3) 0%,
        rgba(26, 26, 26, 0.7) 100%
    );
    z-index: 1;
}

.image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
    width: 100%;
}

.image-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.image-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--color-silver-metallic);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Scrolling Content Right */
.scroll-content {
    width: 60%;
    position: relative;
    padding: 0 4rem 0 2rem;
    overflow: visible;
}

.content-panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: relative;
}

.panel-inner {
    max-width: 600px;
    width: 100%;
}

.panel-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    letter-spacing: 2px;
        border: 1px solid;
}

.panel-title {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--font-display);
    color: var(--color-white);
}

.panel-text {
    font-size: clamp(1.1rem, 2vw, 1rem);
    line-height: 1.7;
    color: var(--color-silver);
    max-width: 600px;
    font-weight: 300;
}

/* Responsive for Scroll Pinning */
@media (max-width: 1024px) {
    .pinning-section {
        min-height: auto;
    }
    
    .pin-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .fixed-image-side {
        width: 100%;
        height: 60vh;
        position: relative;
    }
    
    .image-content {
        padding: 3rem 2rem;
    }
    
    .scroll-content {
        width: 100%;
        padding: 0 5%;
    }
    
    .content-panel {
        min-height: 70vh;
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .fixed-image-side {
        height: 50vh;
    }
    
    .image-content {
        padding: 2rem 1.5rem;
    }
    
    .image-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .image-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }
    
    .content-panel {
        min-height: 60vh;
        padding: 2.5rem 0;
    }
    
    .panel-title {
        margin-bottom: 1.5rem;
    }
    
    .panel-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .fixed-content {
        padding: 1.5rem 0 1rem;
    }
    
    .fixed-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .content-panel {
        min-height: 50vh;
        padding: 2rem 0;
    }
}

/* ===================================
   VARIABLE HEIGHT STACKED PINNING SECTION
=================================== */
.stacked-section {
    position: relative;
    background: #0a0a0a;
    margin: 0;
    padding: 0;
    margin-top: -10vh;
}

.stack-panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stack-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
}

.stack-purple {
    background-color: #1a0a2e;
    background-image: 
        linear-gradient(135deg, rgba(26, 10, 46, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.stack-blue {
    background-color: #0a1a2e;
    background-image: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.stack-green {
    background-color: #0a2e1a;
    background-image: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.stack-gold {
    background-color: #2e1a0a;
    background-image: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.stack-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.stack-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 1px solid var(--color-secondary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-silver-metallic);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.stack-title {
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2rem;
    font-family: var(--font-display);
    line-height: 1.1;
    letter-spacing: 1px;
}

.stack-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: var(--color-silver);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

@media (max-width: 768px) {
    .stacked-section {
        position: relative;
    }
    
    .stack-panel {
        min-height: auto;
        padding: 4rem 5%;
        position: relative;
    }
    
    .stack-panel::before {
        position: absolute;
    }
    
    .stack-content {
        position: relative;
        z-index: 2;
    }
    
    .stack-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .stack-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .stack-text {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
}

/* ===================================
   ACCORDION SLIDER SECTION - ÁREAS DE ATUAÇÃO
=================================== */
.areas-atuacao-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 0 4rem;
    position: relative;
    overflow: hidden;
    margin: 13vh 0 13vh; /* Espaço de respiro após Quem Somos/Stacked Section */
}

.areas-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100vh;
    position: relative;
    padding: 0 5%;
}

.section-main-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-display);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--color-silver);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.accordion-slider {
    display: flex;
    height: calc(100vh - 280px);
    min-height: 500px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.slide {
    flex: 1;
    position: relative;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    filter: grayscale(0.7) brightness(0.7);
}

.slide:hover {
    filter: grayscale(0.3) brightness(0.85);
}

.slide.active {
    flex: 2.8;
    filter: grayscale(0) brightness(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 75%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: white;
    z-index: 2;
}

.slide.active .slide-content {
    bottom: 60px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide-number {
    font-size: 64px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    position: absolute;
    bottom: 40px;
    left: 40px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-display);
}

.slide.active .slide-number {
    bottom: auto;
    top: -60px;
    font-size: 48px;
    left: 0;
    color: rgba(212, 175, 55, 0.6);
}

.area-badge {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 8px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    position: absolute;
    bottom: 120px;
    left: 40px;
    white-space: nowrap;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 2px;
}

.slide.active .area-badge {
    transform: rotate(0deg);
    position: static;
    transform-origin: unset;
    display: block;
}

.area-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.slide.active .area-name {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.area-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .area-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.area-services {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .area-services {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 15px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .service-row {
    opacity: 1;
    transform: translateX(0);
}

.slide.active .service-row:nth-child(1) { transition-delay: 0.6s; }
.slide.active .service-row:nth-child(2) { transition-delay: 0.65s; }
.slide.active .service-row:nth-child(3) { transition-delay: 0.7s; }
.slide.active .service-row:nth-child(4) { transition-delay: 0.75s; }

.service-icon {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 18px;
}

.service-text {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.navigation-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-weight: 300;
}

.nav-prev {
    left: 20px;
}

.nav-next {
    right: 20px;
}

.navigation-arrows:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--color-secondary);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Accordion Slider */
@media (max-width: 1024px) {
    .areas-atuacao-section {
        padding: 6rem 0 0;
        margin-top: 4vh; /* Respiro menor em tablets */
    }
    
    .areas-container {
        height: auto;
        min-height: 100vh;
    }
    
    .accordion-slider {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }
    
    .slide {
        flex: none;
        min-height: 120px;
        filter: grayscale(0.5) brightness(0.8);
    }
    
    .slide.active {
        flex: none;
        min-height: 400px;
    }
    
    .slide-number {
        font-size: 36px;
        bottom: 30px;
        left: 30px;
    }
    
    .slide.active .slide-number {
        top: -45px;
        font-size: 32px;
    }
    
    .area-badge {
        transform: none;
        position: static;
        bottom: auto;
        left: auto;
        font-size: 12px;
    }
    
    .slide-content {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    
    .slide.active .slide-content {
        bottom: 40px;
    }
    
    .navigation-arrows {
        display: none;
    }
}

@media (max-width: 768px) {
    .areas-atuacao-section {
        margin-top: 3vh; /* Respiro ainda menor em mobile */
    }
    .section-main-title {
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        margin-bottom: 2rem;
    }
    
    .slide {
        min-height: 100px;
    }
    
    .slide.active {
        min-height: 350px;
    }
    
    .area-name {
        font-size: 22px;
    }
    
    .area-subtitle {
        font-size: 14px;
    }
    
    .service-row {
        font-size: 13px;
        margin-bottom: 8px;
    }
}

/* ===================================
   INFINITE SCROLLING GALLERY SECTION
=================================== */
.gallery-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 6rem 0;
    overflow: visible;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-header {
    text-align: center;
    padding: 2rem 5% 3rem;
    z-index: 2;
}

.gallery-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-display);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.gallery-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--color-silver);
    font-weight: 300;
    margin-bottom: 0;
}

.gallery-wrapper {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 2rem 0;
}

.gallery-cards {
    position: relative;
    width: 500px;
    height: 650px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-card {
    position: absolute;
    width: 500px;
    height: 650px;
    top: 0;
    left: 0;
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0);
    opacity: 0;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.95) 100%
    );
    padding: 3rem 2rem 2rem;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.gallery-card:hover .card-overlay {
    transform: translateY(-10px);
}

.card-category {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.card-description {
    font-size: 1rem;
    color: var(--color-silver);
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
}

.gallery-actions {
    position: relative;
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    z-index: 10;
    justify-content: center;
}

.gallery-btn {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.gallery-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gallery-btn:active {
    transform: translateY(0);
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .gallery-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .gallery-header {
        padding: 2rem 5% 2rem;
    }
    
    .gallery-wrapper {
        min-height: 500px;
        padding: 2rem 0;
    }
    
    .gallery-cards {
        width: 380px;
        height: 520px;
    }
    
    .gallery-card {
        width: 380px;
        height: 520px;
    }
    
    .gallery-actions {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-header {
        padding: 2rem 5% 1.5rem;
    }
    
    .gallery-cards {
        width: 280px;
        height: 380px;
    }
    
    .gallery-card {
        width: 280px;
        height: 380px;
    }
    
    .card-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .gallery-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* ===================================
   TESTIMONIALS SECTION
=================================== */
.testimonials-section {
    position: relative;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 8rem 5% 6rem;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-header .section-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #D4AF37;
    margin-bottom: 1.5rem;
}

.testimonials-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.quote-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941E 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.quote-icon svg {
    width: 28px;
    height: 28px;
    color: #1a1a1a;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.author-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating .star {
    color: #D4AF37;
    font-size: 1.1rem;
}

/* Stats Section */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 5rem 5% 4rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-header {
        margin-bottom: 3rem;
    }
    
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* ===================================
   GOOGLE REVIEWS SECTION
=================================== */
.google-reviews-section {
    position: relative;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 8rem 5%;
    overflow: hidden;
}

.reviews-container {
    max-width: 900px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-header .section-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.reviews-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-display);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.reviews-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-silver);
    font-weight: 300;
}

/* Google Review Card */
.google-review-card {
    position: relative;
    perspective: 1000px;
}

.review-card-inner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.review-card-inner:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.1);
}

.review-card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent, rgba(212, 175, 55, 0.2));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card-inner:hover::before {
    opacity: 1;
}

/* Google Logo */
.google-logo {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-logo svg {
    filter: drop-shadow(0 4px 12px rgba(66, 133, 244, 0.3));
}

/* Rating Display */
.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rating-stars {
    display: flex;
    gap: 0.3rem;
}

.rating-stars .star {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.rating-stars .star.filled {
    color: #FBBC05;
    text-shadow: 0 2px 8px rgba(251, 188, 5, 0.4);
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

/* Reviews Count */
.reviews-count {
    margin-bottom: 2.5rem;
}

.count-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #D4AF37;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.count-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 1px;
}

/* CTA Button */
.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941E 100%);
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.google-reviews-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.google-reviews-btn svg {
    transition: transform 0.3s ease;
}

.google-reviews-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .google-reviews-section {
        padding: 5rem 5%;
    }
    
    .review-card-inner {
        padding: 3rem 2rem;
    }
    
    .google-logo svg {
        width: 100px;
        height: 33px;
    }
    
    .rating-stars .star {
        font-size: 1.5rem;
    }
    
    .rating-score {
        font-size: 2rem;
    }
    
    .count-number {
        font-size: 2.5rem;
    }
    
    .count-label {
        font-size: 0.95rem;
    }
    
    .google-reviews-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .review-card-inner {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .rating-display {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===================================
   FAQ SECTION
=================================== */
.faq-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    padding: 8rem 5% 6rem;
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-header .section-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #D4AF37;
    margin-bottom: 1.5rem;
}

.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.faq-content {
    margin-bottom: 4rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    user-select: none;
    gap: 2rem;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: #D4AF37;
}

.faq-icon {
    font-size: 2rem;
    color: #D4AF37;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
    background: rgba(212, 175, 55, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 2.5rem 2rem 2.5rem;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #000000);
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941E 100%);
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-cta:hover::before {
    left: 100%;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-primary-cta:hover .btn-arrow {
    transform: translateX(5px);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 5rem 5% 4rem;
    }
    
    .faq-header {
        margin-bottom: 3rem;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 1.75rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-cta {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .btn-primary-cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* ===================================
   CONTACT SECTION
=================================== */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 8rem 5% 6rem;
    overflow: hidden;
}

/* ===================================
   KEYWORDS CLOUD SECTION
=================================== */
.keywords-section {
    width: 100%;
    padding: 8rem 5% 6rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(10, 10, 10, 1) 100%);
    position: relative;
    overflow: hidden;
}

.keywords-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 50%, 
        transparent 100%);
}

.keywords-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.keywords-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.keywords-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.badge-icon {
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
}

.keywords-section .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.keywords-section .title-line {
    display: block;
    color: var(--color-white);
}

.keywords-section .gradient-text {
    background: linear-gradient(135deg, 
        var(--color-secondary) 0%, 
        var(--color-white) 50%, 
        var(--color-secondary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-keywords 3s linear infinite;
}

@keyframes shimmer-keywords {
    to {
        background-position: 200% center;
    }
}

.keywords-section .section-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-silver);
    line-height: 1.6;
    font-weight: 300;
}

/* Keywords Cloud */
.keywords-cloud {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    min-height: 450px;
    padding: 3rem 2rem;
}

.keyword-tag {
    position: relative;
    padding: 0.85rem 1.75rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: var(--color-silver);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    user-select: none;
}

.keyword-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.keyword-tag:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-8px) scale(1.1) !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--color-white);
}

.keyword-tag:hover::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .keywords-section {
        padding: 6rem 5% 5rem;
    }
    
    .keywords-section .section-header {
        margin-bottom: 4rem;
    }
    
    .keywords-cloud {
        min-height: 350px;
        padding: 2rem 1rem;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .keywords-section {
        padding: 5rem 5% 4rem;
    }
    
    .keywords-cloud {
        min-height: 300px;
        padding: 1.5rem 0.5rem;
        gap: 0.85rem;
    }
    
    .keyword-tag {
        padding: 0.7rem 1.4rem;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .keywords-cloud {
        min-height: 250px;
        gap: 0.75rem;
    }
    
    .keyword-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.82rem;
    }
}

/* ===================================
   CONTACT SECTION
=================================== */
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    position: relative;
    z-index: 2;
}

/* Left Side - Contact Info */
.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-wrapper {
    position: relative;
}

.contact-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.contact-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: var(--color-silver);
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--color-secondary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-secondary);
    transform: rotate(5deg) scale(1.1);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--color-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--color-white);
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: var(--color-secondary);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.social-link {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: var(--color-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-silver), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-silver);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
}

.social-link:hover::before {
    opacity: 0.2;
}

.social-link:hover svg {
    transform: scale(1.1) rotate(-3deg);
}

/* Right Side - Google Maps */
.contact-right {
    display: flex;
    align-items: stretch;
}

.map-wrapper {
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    min-height: 600px;
}

.google-map {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: block;
    filter: grayscale(20%) brightness(0.9);
    transition: filter 0.4s ease;
}

.map-wrapper:hover .google-map {
    filter: grayscale(0%) brightness(1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.map-info {
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: inline-block;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.map-address {
    font-size: 1rem;
    color: var(--color-silver);
    margin: 0;
}

/* Background Animated Elements */
.contact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    filter: blur(40px);
}

.bg-circle-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -10%;
    animation: float 20s ease-in-out infinite;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -15%;
    left: -10%;
    animation: float 25s ease-in-out infinite reverse;
}

.bg-circle-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(30px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

/* Responsive Contact Section */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-section {
        padding: 6rem 5% 4rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 5% 3rem;
    }
    
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .map-wrapper {
        min-height: 400px;
    }
    
    .google-map {
        min-height: 400px;
    }
}

/* ===================================
   FOOTER
=================================== */
.footer {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98), rgba(15, 15, 25, 0.95));
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 80px 5% 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-silver), transparent);
    opacity: 0.3;
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 80px;
    color: white;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 30px;
}

.footer-logo {
    height: 90px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    filter: brightness(1.15) drop-shadow(0 2px 8px rgba(192, 192, 192, 0.15));
    transition: all 0.4s ease;
}

.footer-logo:hover {
    filter: brightness(1.35) drop-shadow(0 4px 12px rgba(192, 192, 192, 0.25));
    transform: translateY(-2px);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-info {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-silver), transparent);
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.footer-list li a,
.footer-list li span {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-list li:hover,
.footer-list li:hover a {
    color: rgba(255, 255, 255, 0.95);
}

.footer-list li:has(a):hover {
    transform: translateX(3px);
}

.footer-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    flex-shrink: 0;
    margin-top: 4px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.footer-link::before {
    content: '›';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.footer-link:hover {
    color: white;
    padding-left: 20px;
}

.footer-link:hover::before {
    opacity: 1;
    left: 3px;
}

.footer-social {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 30px;
}

.footer-social::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-silver), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover {
    transform: translateY(-6px) scale(1.08);
    border-color: var(--color-silver);
    box-shadow: 0 10px 25px rgba(192, 192, 192, 0.3), 0 0 0 1px rgba(192, 192, 192, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover::before {
    opacity: 0.2;
}

.social-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.15) rotate(-5deg);
}

.footer-copy {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
=================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 992px) {
    .navbar-container {
        top: 20px;
        width: calc(100% - 40px);
    }

    .navbar {
        padding: 12px 20px;
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .navbar-nav {
        display: none;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-brand {
        text-align: center;
        padding-right: 0;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-social::before {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .creative-carousal--hero .swiper-button-prev {
        left: 30px;
        right: auto;
    }

    .creative-carousal--hero .swiper-button-next {
        right: 30px;
    }

    .panel-section {
        padding: 100px 5%;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        width: calc(100% - 30px);
        top: 15px;
    }

    .navbar {
        padding: 10px 15px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .brand-text {
        font-size: 1rem;
    }

    .creative-carousal--hero .carousel-slider .swiper-slide .inner h2 {
        font-size: 2rem;
    }
}

/* ===================================
   CINEMATIC LOGO SCROLL SECTION
=================================== */
.cinematic-scroll-section {
    height: 800vh;
    position: relative;
    background: #000;
    z-index: 1;
    overflow: hidden;
    margin-top: -1px;
}

.cinematic-scroll-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, #0a0a0a 100%);
    pointer-events: none;
    z-index: 2;
}

.cinematic-container {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    z-index: 1;
    will-change: transform;
}

/* Images - SEPARADAS VISUALMENTE */
.cinematic-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 800px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.cinematic-image img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    will-change: transform, filter, opacity;
}

/* Garantir que apenas uma cena seja visível por vez */
.logo-simple {
    z-index: 2;
    visibility: hidden;
}

.logo-complete {
    z-index: 3;
    visibility: hidden;
}

/* Responsive Cinematic */
@media (max-width: 1024px) {
    .cinematic-scroll-section {
        height: 600vh;
    }
    .cinematic-image {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .cinematic-scroll-section {
        height: 500vh;
    }
    .cinematic-image {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .cinematic-scroll-section {
        height: 450vh;
    }
    .cinematic-image {
        width: 90%;
    }
}


/* ================================================
   NOVO TEMA ELEGANTE - CSS ADICIONAL
================================================ */

/* Hero Elegant */
.hero-elegant {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    background: #000;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge-elegant {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #D4AF37;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
}

.hero-title-elegant {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.subtitle-elegant {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #D4AF37;
    font-weight: 400;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #999;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    font-family: 'Playfair Display', Georgia, serif;
}

.stat-label {
    font-size: 0.875rem;
    color: #999;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-gold-elegant {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #D4AF37;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold-elegant:hover {
    background: #B8941E;
    transform: translateY(-2px);
}

.btn-outline-elegant {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    color: #D4AF37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    border: 2px solid #D4AF37;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-elegant:hover {
    background: #D4AF37;
    color: #000;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border: 3px solid #D4AF37;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, transparent 50%);
    pointer-events: none;
}

.hero-logo-floating {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: #000;
    border: 3px solid #D4AF37;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-floating img {
    width: 100%;
    height: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #999;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #D4AF37, transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* Services Section */
.services-elegant {
    padding: 120px 0;
    background: #0a0a0a;
}

.container-elegant {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header-elegant {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge-gold {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #D4AF37;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-title-elegant {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #999;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-elegant {
    background: #000;
    padding: 3rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #D4AF37;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-elegant:hover {
    border-color: #D4AF37;
    transform: translateY(-10px);
}

.service-card-elegant:hover::before {
    transform: scaleX(1);
}

.service-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.1);
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-icon-elegant {
    margin-bottom: 1.5rem;
}

.service-icon-elegant svg {
    stroke: #D4AF37;
}

.service-title-elegant {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.service-description-elegant {
    font-size: 1rem;
    color: #999;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link-elegant {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.service-link-elegant:hover {
    gap: 1rem;
}

/* About Section */
.about-elegant {
    padding: 120px 0;
    background: #000;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-frame {
    position: relative;
    width: 100%;
    height: 600px;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frame-border {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #D4AF37;
    z-index: -1;
}

.about-accent-shape {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #D4AF37, #B8941E);
    opacity: 0.1;
    z-index: -2;
}

.about-credentials {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.credential-icon {
    font-size: 2rem;
}

.credential-item h4 {
    font-size: 1.1rem;
    color: #D4AF37;
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.credential-item p {
    font-size: 0.95rem;
    color: #999;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #999;
    margin-bottom: 1.5rem;
}

.about-values {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-item {
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid #D4AF37;
}

.value-item h4 {
    font-size: 1.1rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.value-item p {
    font-size: 0.9rem;
    color: #999;
}

/* New Office Section */
.new-office-elegant {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.new-office-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.new-office-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.new-office-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.new-office-image:hover img {
    transform: scale(1.05);
}

.office-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(212, 175, 55, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.new-office-content {
    padding: 2rem;
}

.new-office-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #999;
    margin-bottom: 2rem;
}

.new-office-info {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid #D4AF37;
    border-radius: 4px;
    margin-top: 2rem;
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
}

.new-office-info h4 {
    font-size: 1.1rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.new-office-info p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .new-office-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .new-office-image img {
        height: 400px;
    }
}

/* Contact Section */
.contact-elegant {
    padding: 120px 0;
    background: #0a0a0a;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #999;
    margin-bottom: 3rem;
}

.contact-items-elegant {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item-elegant {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.contact-item-elegant:hover {
    border-color: #D4AF37;
    transform: translateX(10px);
}

.contact-icon-elegant {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #D4AF37;
    border-radius: 50%;
}

.contact-icon-elegant svg {
    stroke: #D4AF37;
}

.contact-item-elegant h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.contact-item-elegant a {
    color: #D4AF37;
    transition: color 0.3s ease;
}

.contact-item-elegant a:hover {
    color: #B8941E;
}

.contact-item-elegant p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 3px solid #D4AF37;
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container,
    .about-container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image-wrapper,
    .about-image-frame {
        height: 400px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .value-item {
        padding: 1rem;
    }
}

/* Navbar Elegant */
.navbar-elegant {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar-elegant.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container-elegant {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo-elegant .logo-img {
    height: 50px;
    width: auto;
}

.navbar-menu-elegant {
    display: flex;
    gap: 3rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-elegant {
    list-style: none;
}

.nav-link-elegant {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link-elegant::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-link-elegant:hover::after,
.nav-link-elegant.active::after {
    width: 100%;
}

.nav-link-elegant:hover {
    color: #D4AF37;
}

.nav-cta-elegant {
    padding: 0.75rem 1.5rem;
    background: #D4AF37;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    border: none;
    transition: all 0.3s ease;
}

.nav-cta-elegant:hover {
    background: #B8941E;
}

.mobile-toggle-elegant {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: #D4AF37;
    transition: all 0.3s ease;
}

.mobile-menu-elegant {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #000;
    z-index: 999;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu-elegant.active {
    right: 0;
}

.mobile-menu-elegant ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu-elegant a {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.mobile-menu-elegant a:hover {
    color: #D4AF37;
}

@media (max-width: 992px) {
    .navbar-menu-elegant {
        display: none;
    }
    
    .mobile-toggle-elegant {
        display: flex;
    }
}

/* Footer Elegant */
.footer-elegant {
    background: #000;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 4rem 0 2rem;
}

.footer-container-elegant {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-brand-elegant {
    max-width: 300px;
}

.footer-logo-elegant {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-col h4 {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-elegant {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-elegant li {
    margin-bottom: 0.8rem;
}

.footer-links-elegant a {
    color: #999;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-elegant a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.footer-contact-elegant {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-elegant li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact-elegant svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #D4AF37;
}

.footer-contact-elegant a,
.footer-contact-elegant span {
    color: #999;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact-elegant a:hover {
    color: #D4AF37;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
}

.footer-oab span {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.95rem;
}

/* WhatsApp Button */
.whatsapp-btn-elegant {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    color: #000;
}

.whatsapp-btn-elegant:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.whatsapp-btn-elegant svg {
    width: 30px;
    height: 30px;
    fill: #000;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-btn-elegant {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn-elegant svg {
        width: 24px;
        height: 24px;
    }
}

/* Mobile Menu Elements */
.mobile-menu-header-elegant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-logo-elegant img {
    height: 40px;
    width: auto;
}

.mobile-close-elegant {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #D4AF37;
}

.mobile-close-elegant svg {
    stroke: #D4AF37;
}

.mobile-nav-list-elegant {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link-elegant {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav-link-elegant:hover,
.mobile-nav-link-elegant.active {
    color: #D4AF37;
}

.mobile-cta-elegant {
    margin-top: auto;
}

.mobile-cta-button-elegant {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: #D4AF37;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.mobile-cta-button-elegant:hover {
    background: #B8941E;
}

.mobile-overlay-elegant {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay-elegant.active {
    opacity: 1;
    visibility: visible;
}
