/* ==========================================================================
   R & CB Advogados - Design System
   ========================================================================== */

/* Custom Property for Animated Gradient Border */
@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

/* ==========================================================================
   CSS Variables - Design Tokens
   ========================================================================== */
:root {
    /* Color Palette - R & CB Advogados (Site Atual) */
    --primary-black: #1B1009;
    /* marrom muito escuro do site atual */
    --accent-gold: #C0B399;
    /* dourado champagne do site atual */
    --accent-gold-light: #EEE2D0;
    --accent-gold-dark: #995D27;
    --ivory: #FFF5E3;
    --white: #FFFFFF;
    --gray-light: #E5E5E5;
    --gray-dark: #593B23;
    --text-muted: #7D6B50;
    --dark: #1B1009;

    /* Shadows & Effects */
    --luxury-shadow: 0 25px 80px rgba(27, 16, 9, 0.2);
    --gold-gradient: linear-gradient(79deg, #C0B399 42%, #995D27 100%);
    --glass-bg: rgba(255, 245, 227, 0.98);
    --glass-border: rgba(192, 179, 153, 0.4);

    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-serif: 'Playfair Display', serif;

    /* Transitions - Smooth Easing */
    --transition-fast: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-normal: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-slow: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    /* Prevent horizontal scroll globally */
    width: 100%;
}

/* Smooth scrolling for all elements */
* {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-dark);
    background: var(--white) url('../assets/textures/law_paper_texture.png') repeat;
    /* paper texture background */
    line-height: 1.8;
    /* Editorial breathing room */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
    /* Editorial tightening */
}

/* Eyebrow / Subtitles */
.section-pretitle,
.hero-pretitle {
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

/* Cinematic Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

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

/* Global smooth transitions for interactive elements */
button,
input,
select,
textarea {
    transition: all var(--transition-fast);
}

/* Smooth transform transitions */
.smooth-transform {
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

/* ==========================================================================
   Parallax Effect
   ========================================================================== */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 160%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 0;
    pointer-events: none;
}

.parallax-content {
    position: relative;
    z-index: 1;
}

/* Parallax overlay for better text readability */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(27, 16, 9, 0.85) 0%, rgba(27, 16, 9, 0.95) 100%);
    z-index: 0;
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) {
    .parallax-bg {
        transform: none !important;
        top: 0;
        height: 100%;
        background-attachment: scroll;
    }
}

/* ==========================================================================
   Custom Scroll Animations (Like TGT Example Site)
   Works on both mobile and desktop
   ========================================================================== */

/* Elements that animate on scroll - start hidden */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Animated state - when element enters viewport */
.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Team cards should always be visible (content inside has own animations) */
.team-card.scroll-animate,
.team-card.scroll-animate.animate {
    opacity: 1 !important;
    transform: none !important;
}

/* No desktop, elementos com data-aos não devem ter scroll-animate aplicado */
/* Mas se tiverem por algum motivo, garantir que não fiquem invisíveis */
@media (min-width: 769px) {
    [data-aos].scroll-animate {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Staggered delays for grid items */
.scroll-animate.delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate.delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate.delay-3 {
    transition-delay: 0.3s;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ==========================================================================
   Header
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 24px 0;
    background: transparent;
}

header.scrolled {
    background: var(--primary-black);
    /* Deep dark charcoal */
    padding: 16px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

.logo img {
    height: 60px;
    filter: brightness(0) invert(1);
    /* Always white logo on dark header */
    transition: all var(--transition-normal);
}

header.scrolled .logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

/* Navigation */
nav {
    display: flex;
    gap: 28px;
}

nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

header.scrolled nav a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

nav a:hover {
    color: var(--accent-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    gap: 6px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

header.scrolled .menu-toggle span {
    background: var(--accent-gold);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    z-index: 2000;
    transition: right var(--transition-fast);
    padding: 100px 40px 40px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    display: block;
    color: var(--gray-dark);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.mobile-nav a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

/* Mobile Menu Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--primary-black) 0%, #2A1A0D 100%);
    /* Elegant dark gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

/* Watermark Crest Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: url('../assets/images/medalhao.webp') center/contain no-repeat;
    opacity: 0.05;
    /* Very subtle watermark */
    pointer-events: none;
    filter: grayscale(1) invert(1);
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.services-slider {
    padding: 40px 20px !important;
    /* Added safe zone for zoom/shadow */
    margin: 0 -20px !important;
    /* Compensate for padding to maintain alignment */
    width: calc(100% + 40px) !important;
    overflow: visible !important;
    /* Ensure shadows aren't clipped */
}

.hero-image img {
    max-width: 300px;
    /* Increased visibility */
    height: auto;
    filter: none;
    margin-bottom: 25px;
}

.hero-pretitle {
    font-size: 0.85rem;
    letter-spacing: 4px;
    /* More spacing = more premium */
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.hero-title {
    font-family: var(--font-serif);
    /* Explicit serif for title */
    font-size: 3.5rem;
    font-weight: 400;
    /* Lighter weight for elegance */
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: none;
    /* Clean look */
    color: var(--white);
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Buttons */
/* Magnetic Shimmer Button */
.btn-primary {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
    position: relative;
    overflow: hidden;
    /* For shimmer */
    white-space: nowrap;
    margin-bottom: 50px;
    border: none;
    cursor: pointer;
    z-index: 1;
}

/* Shimmer Overlay */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    transition: none;
    animation: shimmer 5s infinite;
}

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

    10% {
        left: 100%;
    }

    /* Fast pass */
    100% {
        left: 100%;
    }

    /* Wait */
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(184, 134, 11, 0.5);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section-header,
.luxury-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-pretitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.section-title,
.luxury-section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary-black);
}

.section-description,
.luxury-section-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================================================
   About Section
   ========================================================================== */
/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 150px 0;
    /* Luxury Whitespace increase */
    background: var(--primary-black);
    /* Even darker for contrast */
    position: relative;
    overflow: hidden;
}

/* Subtle gold line separator */
.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* More space for text */
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.about-text h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    font-weight: 300;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* Stylized image container with Asymmetry */
.about-image img {
    width: auto;
    max-width: 350px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 0 30px rgba(184, 134, 11, 0.15));
    /* Gold glow */
    opacity: 0.9;
    margin: 40px auto 0;
    /* Offset downwards - Asymmetry */
    display: block;
    transform: translateX(20px);
    /* Slight horizontal offset */
}

/* Decorative background element behind image */
.about-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(192, 179, 153, 0.12) 0%, transparent 70%);
    z-index: -1;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
/* ==========================================================================
   Services Section (Luxury Style)
   ========================================================================== */
.services-luxury {
    padding: 150px 0;
    /* Luxury Whitespace increase */
    background: var(--ivory);
    position: relative;
}

.services-luxury .section-title {
    color: var(--primary-black);
}

.services-luxury .section-description {
    color: var(--text-muted);
}

/* ==========================================================================
   Services Grid - Original Layout
   ========================================================================== */

/* ==========================================================================
   Services Grid - Swiper Carousel
   ========================================================================== */
/* ==========================================================================
   Modern Team Card (Hover Reveal - Dark Version)
   Reverted to previous preferred design
   ========================================================================== */
/* ==========================================================================
   Team Section - Flip Cards (Restored)
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background-color: transparent;
    width: 300px;
    /* Fixed width for consistent flip */
    height: 400px;
    /* Fixed height for consistent flip */
    perspective: 1000px;
    /* Essential for 3D flip effect */
    margin: 0 auto;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

/* Flip Logic */
.team-card.flipped .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Front Side */
.team-card-front {
    background: var(--white);
    color: var(--primary-black);
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.team-image {
    height: 65%;
    width: 100%;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
    /* Slight zoom on hover hint */
}

.team-info {
    padding: 1.5rem;
    height: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    position: relative;
}

.team-info::before {
    /* Gold accent line */
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--gold-gradient);
}

.team-position {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-info h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
    font-family: var(--font-serif);
}

.team-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0;
}

/* Back Side */
.team-card-back {
    background: var(--primary-black);
    /* Dark Theme Back */
    color: var(--white);
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.15);
    /* Gold glow */
}

.team-back-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    width: 100%;
}

.team-back-header h5 {
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.team-back-header .team-position {
    color: var(--white);
    opacity: 0.8;
}

.team-back-content h6 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.team-back-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.team-back-content ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.team-back-content ul li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Animated Border Effect (ported from previous) */
.animated-border-card-dark {
    position: relative;
}

/* Reset Media Queries for this specific component */
@media (max-width: 768px) {
    .modern-team-card {
        max-width: 100%;
        height: 380px;
    }
}

/* Service Luxury Card Base Styles */
.services-slider .swiper-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
}

.service-luxury-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px 25px;
    /* Reduced from 40px 35px */
    position: relative;
    border: 1px solid rgba(184, 134, 11, 0.4);
    /* Visible Border (User req: "bordas finas") */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    /* Enforces grid alignment */
}

.service-luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-luxury-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(192, 179, 153, 0.08) 0%, rgba(153, 93, 39, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-luxury-card:hover::before {
    transform: scaleX(1);
}

.service-luxury-card:hover::after {
    opacity: 1;
}

.service-luxury-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-gold);
}

/* ==========================================================================
   Service Cards Focus & Blur Effect (Approved by User)
   ========================================================================== */
@media (hover: hover) {

    /* When hovering the container, blur ALL cards */
    .services-slider:hover .service-luxury-card {
        filter: blur(4px);
        transform: scale(0.95);
        opacity: 0.6;
        transition: all 0.4s ease-in-out;
    }

    /* When hovering a SPECIFIC card, highlight IT */
    .services-slider .swiper-slide:hover .service-luxury-card {
        filter: none;
        transform: scale(1.05) translateY(-10px);
        opacity: 1;
        z-index: 2;
        box-shadow: 0 20px 50px rgba(184, 134, 11, 0.3);
        /* Stronger gold glow */
        border-color: var(--accent-gold);
    }
}

.service-luxury-header {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Reduced from 20px */
    margin-bottom: 20px;
    /* Reduced from 28px */
    position: relative;
    z-index: 2;
}

.service-luxury-icon {
    width: 75px;
    height: 75px;
    background: var(--gold-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(192, 179, 153, 0.3);
    flex-shrink: 0;
    overflow: hidden;
}

.service-luxury-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.service-luxury-card:hover .service-luxury-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
}

.service-title-area h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary-black);
    transition: color 0.3s ease;
    position: relative;
    z-index: 3;
}

.service-luxury-card:hover .service-title-area h4 {
    color: var(--accent-gold-dark);
}

.service-category {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 3;
}

.service-luxury-description {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.service-features {
    margin-top: 24px;
    position: relative;
    z-index: 2;
    text-align: left;
    /* Align list items to the left */
    display: inline-block;
    /* Wrap tight around content if centering parent */
    width: 100%;
    /* Ensure it takes full width of parent for padding calculation */
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    /* Center the list block itself if needed, but text inside is left */
    max-width: 280px;
    /* Limit width to keep it centered-looking but aligned left */
}

.service-features li {
    padding: 8px 0;
    padding-left: 22px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 4px 0;
    text-align: left;
    /* Ensure text is left aligned */
}

.service-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 11px;
    top: 10px;
    /* Align with first line of text */
}

.service-features li:hover {
    background: rgba(192, 179, 153, 0.15);
    transform: translateX(8px);
    color: var(--accent-gold);
    padding-left: 26px;
}

/* ==========================================================================
   Text/Divider Section (Dark)
   ========================================================================== */
/* ==========================================================================
   Why Choose Us Section (Dark)
   ========================================================================== */
.why-choose-us {
    padding: 100px 0;
    background: var(--primary-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-choose-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-choose-header .section-title {
    color: var(--white);
}

.why-choose-header .section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(192, 179, 153, 0.1);
    padding: 30px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(192, 179, 153, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.why-choose-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1);
    color: var(--accent-gold-light);
}

.why-choose-card h4 {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.why-choose-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Styles for Why Choose Us */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .why-choose-header {
        margin-bottom: 40px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   Team Section (Dark)
   ========================================================================== */
.team {
    padding: 100px 0;
    background: var(--primary-black);
}

.team .section-title {
    color: var(--white);
}

.team .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.team-card {
    background: #2A1A0D;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.team-info h5 {
    color: var(--white);
}

.team-info p {
    color: rgba(255, 255, 255, 0.6);
}

.team-card:hover {
    border-color: var(--accent-gold-dark);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 50px;
    align-items: start;
    justify-items: center;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .team-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }
}

.team-card {
    background: var(--ivory);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: 650px;
    width: 100%;
    perspective: 1500px;
    transition: box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.team-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.team-card.flipped .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.team-card-front {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    height: 100%;
    box-sizing: border-box;
}

.team-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--ivory) 0%, rgba(249, 248, 246, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, var(--ivory), transparent);
    pointer-events: none;
    z-index: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 15px 30px 60px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.team-position {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

.team-info h5 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-black);
    line-height: 1.3;
}

.team-info p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.92rem;
    flex: 1;
}

/* Click hint - only show on desktop with hover */
.team-card::before {
    content: 'Clique para ver mais';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 100;
    pointer-events: none;
    background: var(--ivory);
    padding: 5px 15px;
    border-radius: 4px;
}

/* Only show on hover for devices that support it */
@media (hover: hover) and (pointer: fine) {
    .team-card:hover::before {
        opacity: 0.8;
    }
}

/* Hide hint when card is flipped */
.team-card.flipped::before {
    display: none;
}

/* Hide hint completely on mobile/touch devices */
@media (max-width: 768px),
(hover: none) {
    .team-card::before {
        display: none !important;
    }
}

.team-back-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-gold-light);
}

.team-back-header h5 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.team-back-header .team-position {
    margin-bottom: 0;
}

.team-back-content {
    flex: 1;
}

.team-back-content h6 {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.team-back-content ul {
    list-style: none;
    text-align: left;
}

.team-back-content ul li {
    padding: 12px 0;
    color: var(--gray-dark);
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all var(--transition-fast);
}

.team-back-content ul li:hover {
    padding-left: 30px;
    color: var(--primary-black);
}

.team-back-content ul li:last-child {
    border-bottom: none;
}

.team-back-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    transition: transform var(--transition-fast);
}

.team-back-content ul li:hover::before {
    transform: translateX(3px);
}

.btn-back {
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-top: 25px;
    align-self: center;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.25);
}

.btn-back:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(27, 16, 9, 0.9) 0%, rgba(27, 16, 9, 0.95) 100%);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 22px;
}

.cta p {
    font-size: 1rem;
    margin-bottom: 38px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.7;
}

.cta .btn-primary {
    margin-bottom: 0;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
/* ==========================================================================
   Contact Section - Location (Site Atual Style)
   ========================================================================== */
.contact-location {
    padding: 80px 0;
    background: var(--ivory);
    position: relative;
}

.location-header {
    text-align: center;
    margin-bottom: 50px;
}

.location-title {
    font-size: 2.5rem;
    color: var(--primary-black);
    font-family: var(--font-serif);
    font-weight: 600;
    margin: 0;
}

.location-map-wrapper {
    margin-bottom: 40px;
}

.location-map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    border: 1px solid var(--glass-border);
}

.location-map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

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

.address-text {
    font-size: 1.5rem;
    color: var(--primary-black);
    font-family: var(--font-serif);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Location Navigation Buttons */
.location-navigation-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-navigation {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    /* Larger click area */
    border-radius: 50px;
    /* Full pill shape */
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy spring */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    min-width: 240px;
    width: 240px;
    justify-content: center;
    flex-shrink: 0;
    /* Modern Look: Glass/White */
    background: #ffffff;
    color: var(--primary-black);
}

.btn-navigation i,
.btn-navigation-logo {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    /* Remove box around icon */
    border-radius: 0;
    flex-shrink: 0;
    object-fit: contain;
    padding: 0;
    font-size: 1.5rem;
    /* Larger icon */
}

/* Specific colors for icons */
.btn-waze i {
    color: #33ccff;
    /* Waze Blue */
}

.btn-gmaps i {
    color: #4285F4;
    /* Google Blue */
}

.btn-waze:hover,
.btn-gmaps:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    color: var(--accent-gold);
    /* Hover text becomes gold */
    border-color: var(--accent-gold);
}

/* ==========================================================================
   Contact Section (Dark) - Legacy
   ========================================================================== */
.contact {
    padding: 100px 0;
    background: var(--primary-black);
    /* Consistent dark background */
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact .section-title {
    color: var(--white);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--white);
    font-family: var(--font-serif);
}

.contact-info h4 {
    color: var(--accent-gold);
    margin-top: 30px;
}

.contact-info p,
.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--white);
}

.contact-social a {
    background: rgba(192, 179, 153, 0.15);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.contact-social a:hover {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.4);
}

/* Dark Map Styling (Filter) */
.map-container {
    filter: grayscale(100%) invert(92%) contrast(83%);
    /* Turning Google Maps dark */
    opacity: 0.8;
    border: 1px solid var(--accent-gold);
    transition: all 0.5s;
}

.map-container:hover {
    filter: none;
    /* Show real map colors on hover */
    opacity: 1;
}

/* ==========================================================================
   Footer - Elegant Dark Design
   ========================================================================== */
footer {
    background: linear-gradient(180deg, var(--primary-black) 0%, #0D0705 100%);
    border-top: 1px solid rgba(192, 179, 153, 0.4);
    padding: 80px 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h5 {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, transparent 100%);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 2;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Social Icons in Footer */
.footer-section .contact-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-section .contact-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(192, 179, 153, 0.15);
    border: 1px solid rgba(184, 134, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-section .contact-social a:hover {
    background: var(--accent-gold);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Modal Styles
   ========================================================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8) translateY(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.modal-header {
    animation: fadeInDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.modal-body {
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.form-actions {
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    margin-top: 18px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--primary-black);
    position: relative;
}

.contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-above {
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.contact-info-title {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.contact-info-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.8;
}

.contact-form-side {
    width: 100%;
}

.contact-channels-box {
    background: rgba(192, 179, 153, 0.08);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    padding: 35px;
}

.channels-title {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channels-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.7;
}

.channel-item {
    margin-bottom: 22px;
}

.channel-item:last-child {
    margin-bottom: 0;
}

.channel-label {
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.channel-value {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.channel-value a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.channel-value a:hover {
    color: var(--accent-gold);
}

.contact-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact-social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    background: transparent;
    transition: all 0.3s;
    text-decoration: none;
}

.contact-social-icons a:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.contact-form-side {
    position: relative;
    width: 100%;
}

.contact-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--luxury-shadow);
}

.form-title {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 28px;
    font-weight: 500;
    line-height: 1.6;
}

.contact-form-inline .form-group {
    margin-bottom: 16px;
}

.contact-form-inline .form-group label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-dark);
}

.contact-form-inline .form-group input,
.contact-form-inline .form-group select,
.contact-form-inline .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
    border: 1.5px solid var(--gray-light);
}

.contact-form-inline .form-group textarea {
    min-height: 90px;
}

.btn-form-submit {
    width: 100%;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.modal-header {
    background: var(--gold-gradient);
    color: var(--white);
    padding: 18px 20px;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.modal-header h2 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--white);
    font-weight: 600;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px 20px;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */
.form-group {
    margin-bottom: 16px;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--gray-dark);
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--gray-light);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    background: var(--white);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.08);
}

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

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.btn-submit {
    flex: 1;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(184, 134, 11, 0.35);
}

.btn-cancel {
    background: var(--gray-light);
    color: var(--gray-dark);
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-cancel:hover {
    background: var(--text-muted);
    color: var(--white);
}

.required {
    color: #e74c3c;
    font-size: 0.9em;
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.btn-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 179, 153, 0.4);
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-fast);
    animation: whatsappPulse 2s infinite;
}

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

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary-black);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    transform: translateX(0);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary-black);
}

@keyframes whatsappPulse {
    0% {
        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);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ==========================================================================
   Service Modal
   ========================================================================== */
.service-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.service-modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.service-modal-content {
    background: var(--ivory);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
    transform: scale(0.8) translateY(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--luxury-shadow);
    border: 1px solid var(--glass-border);
}

.service-modal-overlay.active .service-modal-content {
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.service-modal-header {
    animation: fadeInDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.service-modal-body {
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.service-modal-actions {
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.service-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}

.service-modal-header h3 {
    font-size: 1.8rem;
    color: var(--primary-black);
    margin: 0;
}

.service-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--accent-gold);
    cursor: pointer;
    line-height: 1;
    transition: transform var(--transition-fast);
}

.service-modal-close:hover {
    transform: rotate(90deg);
}

/* Service Detail Modal */
.service-detail-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: 10002;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.service-detail-modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.service-detail-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 12px;
    position: relative;
    transform: scale(0.8) translateY(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.service-detail-modal-overlay.active .service-detail-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Animação de entrada suave */
@keyframes modalSlideIn {
    0% {
        transform: scale(0.8) translateY(30px);
        opacity: 0;
    }

    60% {
        transform: scale(1.02) translateY(-5px);
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.service-detail-modal-overlay.active .service-detail-modal-content {
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Animação de entrada para o header */
.service-detail-modal-header {
    animation: fadeInDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

/* Animação de entrada para o body */
.service-detail-modal-body {
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* Animação de entrada para os botões */
.service-detail-modal-actions {
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSlideOut {
    from {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    to {
        transform: scale(0.8) translateY(30px);
        opacity: 0;
    }
}

.service-detail-modal-header {
    padding: 28px 32px;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gold-gradient);
    border-radius: 12px 12px 0 0;
}

.service-detail-modal-header h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 600;
}

.service-detail-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: all var(--transition-fast);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.service-detail-modal-body {
    padding: 32px;
}

.service-detail-modal-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.service-detail-modal-actions {
    padding: 24px 32px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    background: var(--ivory);
    border-radius: 0 0 12px 12px;
}

.service-detail-modal-actions .btn-primary {
    padding: 12px 28px;
    font-size: 0.9rem;
    margin: 0;
}

.service-detail-modal-actions .btn-secondary {
    background: var(--gray-light);
    color: var(--gray-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s;
}

.service-detail-modal-actions .btn-secondary:hover {
    background: var(--text-muted);
    color: var(--white);
}

@media (max-width: 768px) {
    .service-detail-modal-content {
        width: 95%;
        max-width: 100%;
    }

    .service-detail-modal-header {
        padding: 22px 24px;
    }

    .service-detail-modal-header h3 {
        font-size: 1.5rem;
    }

    .service-detail-modal-body {
        padding: 24px;
    }

    .service-detail-modal-body p {
        font-size: 0.95rem;
    }

    .service-detail-modal-actions {
        padding: 20px 24px;
        flex-direction: column;
    }

    .service-detail-modal-actions .btn-primary,
    .service-detail-modal-actions .btn-secondary {
        width: 100%;
    }
}

.service-modal-body {
    padding: 30px;
}

.service-modal-body p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--gray-dark);
    line-height: 1.7;
}

.service-modal-body ul {
    list-style: none;
    margin-bottom: 0;
}

.service-modal-body li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    color: var(--gray-dark);
    font-size: 1rem;
}

.service-modal-body li::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-gold);
    margin-right: 15px;
}

.service-modal-actions {
    padding: 20px 30px;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    text-align: right;
}

/* ==========================================================================
   AOS Animations Enhancement
   ========================================================================== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Garantir que cards dos sócios sejam visíveis mesmo antes do AOS animar */
@media (min-width: 769px) {
    .team-card[data-aos] {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* AOS vai adicionar a classe aos-animate, mas garantimos visibilidade antes */
    .team-card[data-aos]:not(.aos-animate) {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large screens */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* Medium screens */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image img {
        max-width: 180px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

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

    .services-grid-luxury {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .about-text h2 {
        font-size: 2.2rem;
    }

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

    /* Padding aumentado para mobile */
    .contact-form-card {
        padding: 36px 28px !important;
    }

    .service-luxury-card {
        padding: 40px 30px !important;
    }

    .team-info {
        padding: 36px 30px 50px !important;
    }

    .team-card-back {
        padding: 36px 30px !important;
    }
}

/* Tablets and small screens */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    nav {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .mobile-nav {
        display: block !important;
    }

    /* Garantir que todos os elementos sejam visíveis */
    .hero-content,
    .about-content,
    .services-grid-luxury,
    .team-grid,
    .contact-form-grid,
    .location-header,
    .location-map-wrapper,
    .location-address,
    .section-header,
    .luxury-section-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Garantir visibilidade de service cards */
    .service-luxury-card {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    header {
        padding: 14px 0;
    }

    header.scrolled {
        padding: 10px 0;
    }

    .logo img {
        height: 50px;
    }

    header.scrolled .logo img {
        height: 42px;
    }

    /* ===== HERO SECTION - MOBILE ===== */
    .hero {
        padding: 100px 24px 60px;
        min-height: 100vh;
        margin-bottom: 0;
    }

    .hero-image {
        margin-bottom: 30px;
    }

    .hero-image img {
        max-width: 140px;
    }

    .hero-pretitle {
        font-size: 0.75rem;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 24px;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 40px;
        line-height: 1.7;
    }

    .btn-primary {
        padding: 16px 32px;
        font-size: 0.8rem;
        margin-bottom: 40px;
        white-space: normal;
        line-height: 1.4;
    }

    /* ===== SECTION HEADERS - MOBILE ===== */
    .section-header,
    .luxury-section-header {
        margin-bottom: 60px;
    }

    .section-pretitle {
        font-size: 0.75rem;
        letter-spacing: 2.5px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 24px;
        line-height: 1.25;
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.9;
        padding: 0 10px;
    }

    /* ===== ALL SECTIONS - MOBILE ===== */
    .about,
    .services,
    .services-luxury,
    .team,
    .contact,
    .contact-location,
    .contact-form-section,
    .text-section,
    .cta {
        padding: 80px 0;
        margin-bottom: 20px;
    }

    /* ===== ABOUT SECTION - MOBILE ===== */
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        justify-items: center;
    }

    .about-image {
        order: -1;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .about-image img {
        max-width: 280px !important;
        width: 70% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 32px;
        line-height: 1.25;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 28px;
        line-height: 1.9;
    }

    /* ===== SERVICES SECTION - MOBILE ===== */
    .services-grid-luxury {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-top: 60px;
    }

    .service-luxury-card {
        padding: 42px 32px !important;
        margin-bottom: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .service-luxury-header {
        margin-bottom: 28px;
    }

    .service-luxury-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .service-title-area h4 {
        font-size: 1.4rem;
    }

    .service-category {
        font-size: 0.85rem;
        margin-top: 8px;
    }

    .service-luxury-description {
        font-size: 0.95rem;
        line-height: 1.9;
        margin-bottom: 28px;
    }

    .service-features {
        margin-top: 24px;
    }

    .service-features li {
        padding: 14px 0 14px 28px;
        font-size: 0.95rem;
        margin: 8px 0;
        line-height: 1.5;
    }

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

    .service-card {
        padding: 32px 26px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }

    .service-card h4 {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* ===== TEAM SECTION - MOBILE ===== */
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        margin-top: 50px !important;
        justify-items: center !important;
    }

    .team-card {
        height: 680px !important;
        overflow: hidden !important;
        perspective: 1500px !important;
        margin-bottom: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .team-card-inner {
        height: 100% !important;
        position: relative !important;
        transform-style: preserve-3d !important;
    }

    .team-card-front,
    .team-card-back {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
    }

    .team-card-front {
        display: flex !important;
        flex-direction: column !important;
    }

    .team-card-back {
        transform: rotateY(180deg) !important;
    }

    .team-card.flipped .team-card-inner {
        transform: rotateY(180deg) !important;
    }

    .team-image {
        height: 360px;
        flex-shrink: 0;
    }

    .team-image img {
        object-fit: cover;
        object-position: center top;
        width: 100%;
        height: 100%;
    }

    .team-info {
        padding: 36px 8% 50px !important;
        flex-shrink: 0;
        flex-grow: 1;
        min-height: 320px;
    }

    .team-info h5 {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .team-info p {
        font-size: 1rem;
        line-height: 1.9;
        margin-bottom: 0;
        overflow: visible;
    }

    .team-position {
        font-size: 0.85rem;
        margin-bottom: 16px;
        letter-spacing: 2px;
    }

    .team-back-header {
        margin-bottom: 36px;
        padding-bottom: 28px;
    }

    .team-back-header h5 {
        font-size: 1.4rem;
    }

    .team-card-back {
        padding: 40px 8% !important;
    }

    .team-back-content ul li {
        padding: 16px 0 16px 28px;
        font-size: 1rem;
        line-height: 1.6;
    }

    /* ===== CTA SECTION - MOBILE ===== */
    .cta h2 {
        font-size: 2rem;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .cta p {
        font-size: 0.95rem;
        margin-bottom: 36px;
        line-height: 1.8;
    }

    /* ===== LOCATION SECTION - MOBILE ===== */
    .location-header {
        margin-bottom: 40px;
    }

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

    .location-map-wrapper {
        margin-bottom: 32px;
    }

    .location-map-container iframe {
        height: 350px;
    }

    .address-text {
        font-size: 1.15rem;
        line-height: 1.5;
        padding: 0 16px;
    }

    .location-navigation-buttons {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
        padding: 0 24px;
    }

    .btn-navigation {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 1rem;
        min-width: auto;
    }

    .btn-navigation i,
    .btn-navigation-logo {
        width: 28px;
        height: 28px;
    }

    /* ===== CONTACT SECTION - MOBILE ===== */
    .contact-form-grid {
        gap: 60px;
    }

    .contact-form-side {
        position: static;
        width: 100%;
    }

    .contact-info-above {
        text-align: center;
    }

    .contact-info-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .contact-info-description {
        font-size: 1rem;
        margin-bottom: 0;
        line-height: 1.8;
    }

    .contact-channels-box {
        padding: 32px 24px;
    }

    .channels-title {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .channels-intro {
        font-size: 0.95rem;
        margin-bottom: 28px;
        line-height: 1.7;
    }

    .channel-item {
        margin-bottom: 24px;
    }

    .channel-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .channel-value {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-social-icons {
        gap: 14px;
        margin-top: 12px;
    }

    .contact-social-icons a {
        width: 44px;
        height: 44px;
    }

    .contact-form-card {
        padding: 40px 8% !important;
    }

    .form-title {
        font-size: 1.1rem;
        margin-bottom: 28px;
        line-height: 1.6;
    }

    .contact-form-inline .form-group {
        margin-bottom: 20px;
    }

    .contact-form-inline .form-group label {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .contact-form-inline .form-group input,
    .contact-form-inline .form-group select,
    .contact-form-inline .form-group textarea {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .contact-form-inline .form-group textarea {
        min-height: 100px;
    }

    .btn-form-submit {
        padding: 16px 24px;
        font-size: 1rem;
        margin-top: 12px;
    }

    .contact-info h3 {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }

    .contact-info h4 {
        font-size: 1rem;
        margin-top: 24px;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    .map-container {
        height: 300px;
    }

    /* ===== TEXT SECTION - MOBILE ===== */
    .text-section {
        padding: 60px 0;
    }

    .text-content p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .text-content p:last-child {
        margin-bottom: 0;
    }

    /* ===== FOOTER - MOBILE ===== */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-section h5 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* ===== MODAL - MOBILE ===== */
    .modal-content {
        max-width: 95%;
        width: 95%;
        margin: 10px;
        max-height: 95vh;
    }

    .modal-header {
        padding: 18px 20px;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .modal-close {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
        top: 12px;
        right: 12px;
    }

    .modal-body {
        padding: 24px 20px;
    }

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

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .form-group textarea {
        min-height: 90px;
    }

    .form-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }

    .btn-submit,
    .btn-cancel {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .btn-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    /* ===== HERO SECTION - SMALL MOBILE ===== */
    .hero {
        padding: 90px 20px 50px;
        min-height: 100vh;
    }

    .hero-image {
        margin-bottom: 28px;
    }

    .hero-image img {
        max-width: 110px;
    }

    .hero-pretitle {
        font-size: 0.7rem;
        letter-spacing: 2.5px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 22px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-description {
        font-size: 0.92rem;
        margin-bottom: 36px;
        line-height: 1.7;
    }

    .btn-primary {
        font-size: 0.75rem;
        padding: 14px 28px;
        white-space: normal;
        text-align: center;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    /* ===== SECTION HEADERS - SMALL MOBILE ===== */
    .section-header,
    .luxury-section-header {
        margin-bottom: 40px;
    }

    .section-pretitle {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .section-title {
        font-size: 1.7rem;
        line-height: 1.25;
        margin-bottom: 18px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .section-description {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    /* ===== ALL SECTIONS - SMALL MOBILE ===== */
    .about,
    .services,
    .services-luxury,
    .team,
    .contact,
    .contact-location,
    .contact-form-section,
    .text-section,
    .cta {
        padding: 70px 0;
        margin-bottom: 15px;
    }

    /* ===== ABOUT SECTION - SMALL MOBILE ===== */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image img {
        max-width: 90%;
    }

    .about-text h2 {
        font-size: 1.7rem;
        line-height: 1.3;
        margin-bottom: 28px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .about-text p {
        font-size: 0.92rem;
        line-height: 1.85;
        margin-bottom: 24px;
    }

    /* ===== SERVICES SECTION - SMALL MOBILE ===== */
    .services-grid-luxury {
        gap: 50px;
        margin-top: 50px;
    }

    .service-luxury-card {
        padding: 38px 30px !important;
        margin-bottom: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .service-luxury-header {
        gap: 18px;
        margin-bottom: 26px;
    }

    .service-luxury-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .service-title-area h4 {
        font-size: 1.25rem;
    }

    .service-category {
        font-size: 0.78rem;
        margin-top: 6px;
    }

    .service-luxury-description {
        font-size: 0.92rem;
        line-height: 1.85;
        margin-bottom: 24px;
    }

    .service-features {
        margin-top: 22px;
    }

    .service-features li {
        padding: 12px 0 12px 24px;
        font-size: 0.88rem;
        margin: 6px 0;
        line-height: 1.5;
    }

    /* ===== TEAM SECTION - SMALL MOBILE ===== */
    .team-grid {
        gap: 40px !important;
        margin-top: 50px !important;
        grid-template-columns: 1fr !important;
        justify-items: center !important;
    }

    .modern-team-card {
        max-width: 100% !important;
        width: 100% !important;
        height: 600px !important;
    }

    .team-card {
        height: 650px !important;
        overflow: hidden !important;
        perspective: 1500px !important;
        margin-bottom: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .team-card-inner {
        height: 100% !important;
        position: relative !important;
        transform-style: preserve-3d !important;
    }

    .team-card-front,
    .team-card-back {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
    }

    .team-card-front {
        display: flex !important;
        flex-direction: column !important;
    }

    .team-card-back {
        transform: rotateY(180deg) !important;
    }

    .team-card.flipped .team-card-inner {
        transform: rotateY(180deg) !important;
    }

    .team-image {
        height: 330px;
        flex-shrink: 0;
    }

    .team-image img {
        object-fit: cover;
        object-position: center top;
        width: 100%;
        height: 100%;
    }

    .team-info {
        padding: 32px 8% 45px !important;
        flex-shrink: 0;
        min-height: 320px;
    }

    .team-info h5 {
        font-size: 1.35rem;
        margin-bottom: 16px;
    }

    .team-info p {
        font-size: 0.95rem;
        line-height: 1.9;
        margin-bottom: 0;
        overflow: visible;
    }

    .team-position {
        font-size: 0.8rem;
        margin-bottom: 14px;
        letter-spacing: 1.5px;
    }

    .team-back-header {
        margin-bottom: 30px;
        padding-bottom: 24px;
    }

    .team-back-header h5 {
        font-size: 1.25rem;
    }

    .team-card-back {
        padding: 36px 8% !important;
    }

    .team-back-content ul li {
        padding: 14px 0 14px 26px;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* ===== CTA SECTION - SMALL MOBILE ===== */
    .cta h2 {
        font-size: 1.7rem;
        line-height: 1.25;
        margin-bottom: 22px;
    }

    .cta p {
        font-size: 0.9rem;
        margin-bottom: 32px;
        line-height: 1.75;
    }

    /* ===== LOCATION SECTION - SMALL MOBILE ===== */
    .location-header {
        margin-bottom: 36px;
    }

    .location-title {
        font-size: 1.6rem;
    }

    .location-map-wrapper {
        margin-bottom: 28px;
    }

    .location-map-container iframe {
        height: 280px;
    }

    .address-text {
        font-size: 1rem;
        padding: 0 12px;
        line-height: 1.5;
    }

    .location-navigation-buttons {
        flex-direction: column;
        gap: 14px;
        margin-top: 28px;
        padding: 0 16px;
    }

    .btn-navigation {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
        min-width: auto;
    }

    .btn-navigation i {
        font-size: 1.15rem;
    }

    .btn-navigation i,
    .btn-navigation-logo {
        width: 26px;
        height: 26px;
    }

    /* ===== CONTACT SECTION - SMALL MOBILE ===== */
    .contact-form-grid {
        gap: 48px;
    }

    .contact-info-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .contact-info-description {
        font-size: 0.95rem;
        margin-bottom: 0;
        line-height: 1.75;
    }

    .contact-channels-box {
        padding: 28px 20px;
    }

    .channels-title {
        font-size: 1.05rem;
        margin-bottom: 14px;
    }

    .channels-intro {
        font-size: 0.92rem;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .channel-item {
        margin-bottom: 22px;
    }

    .channel-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .channel-value {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contact-social-icons {
        gap: 12px;
        margin-top: 10px;
    }

    .contact-social-icons a {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .contact-form-card {
        padding: 36px 8% !important;
    }

    .form-title {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

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

    .contact-form-inline .form-group label {
        font-size: 0.88rem;
        margin-bottom: 8px;
    }

    .contact-form-inline .form-group input,
    .contact-form-inline .form-group select,
    .contact-form-inline .form-group textarea {
        padding: 13px 14px;
        font-size: 0.95rem;
    }

    .contact-form-inline .form-group textarea {
        min-height: 90px;
    }

    .btn-form-submit {
        padding: 15px 22px;
        font-size: 0.92rem;
        margin-top: 10px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 22px;
    }

    .contact-info h4 {
        font-size: 0.95rem;
        margin-top: 22px;
    }

    .contact-info p {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    /* ===== TEXT SECTION - SMALL MOBILE ===== */
    .text-section {
        padding: 50px 0;
    }

    .text-content p {
        font-size: 0.92rem;
        line-height: 1.75;
        margin-bottom: 18px;
    }

    /* ===== FOOTER - SMALL MOBILE ===== */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-section h5 {
        font-size: 1.05rem;
        margin-bottom: 14px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .contact-social a {
        width: 40px;
        height: 40px;
    }

    /* ===== MODAL - SMALL MOBILE ===== */
    .modal-content {
        margin: 8px;
    }

    .modal-header {
        padding: 16px 18px;
    }

    .modal-header h2 {
        font-size: 1.1rem;
    }

    .modal-close {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 22px 18px;
    }

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

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 7px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 13px;
        font-size: 0.92rem;
    }

    .form-group textarea {
        min-height: 85px;
    }

    .form-actions {
        margin-top: 22px;
        gap: 11px;
    }

    .btn-submit,
    .btn-cancel {
        padding: 13px 22px;
        font-size: 0.92rem;
    }

    .btn-top {
        bottom: 18px;
        right: 18px;
        width: 48px;
        height: 48px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {

    header,
    .btn-primary,
    .btn-top,
    .modal-overlay,
    .mobile-nav {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
        background: none;
        color: black;
    }
}

/* ==========================================================================
   Custom Animations
   ========================================================================== */

/* Ripple effect for buttons */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Slide up animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide in from left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide in from right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale in animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pulse animation for highlights */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Float animation for subtle movement */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Page entrance animation */
body {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

body.loaded {
    opacity: 1;
}

/* Enhance modal animations */
.modal-overlay.active .modal-content,
.service-modal-overlay.active .service-modal-content {
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Smooth focus states */
*:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
    transition: outline-offset 0.2s ease;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

/* Selection styling */
::selection {
    background: var(--accent-gold);
    color: var(--white);
}

::-moz-selection {
    background: var(--accent-gold);
    color: var(--white);
}

/* Smooth scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ivory);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold-light);
    border-radius: 5px;
    transition: background var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* ==========================================================================
   Animated Gradient Border for Cards
   ========================================================================== */
@keyframes gradient-rotate {
    0% {
        --gradient-angle: 0deg;
    }

    100% {
        --gradient-angle: 360deg;
    }
}

/* Animated border wrapper - apply to parent of card */
.animated-border-card {
    --gradient-angle: 0deg;
    --border-size: 3px;

    position: relative;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        conic-gradient(from var(--gradient-angle),
            rgba(184, 134, 11, 0.8) 0%,
            rgba(139, 105, 20, 0.2) 25%,
            rgba(184, 134, 11, 0.8) 50%,
            rgba(139, 105, 20, 0.2) 75%,
            rgba(184, 134, 11, 0.8) 100%) border-box;
    border: var(--border-size) solid transparent;
    border-radius: 12px;
    animation: gradient-rotate 4s linear infinite;
}

/* Animated border version for team cards */
.animated-border-card-dark {
    --gradient-angle: 0deg;
    --border-size: 4px;

    position: relative;
    border: var(--border-size) solid transparent;
    border-radius: 12px;
    background:
        linear-gradient(var(--ivory), var(--ivory)) padding-box,
        conic-gradient(from var(--gradient-angle),
            rgba(184, 134, 11, 1) 0%,
            rgba(139, 105, 20, 0.3) 25%,
            rgba(184, 134, 11, 1) 50%,
            rgba(139, 105, 20, 0.3) 75%,
            rgba(184, 134, 11, 1) 100%) border-box;
    animation: gradient-rotate 4s linear infinite;
    overflow: hidden;
}

/* Glow effect on hover */
.animated-border-card:hover,
.animated-border-card-dark:hover {
    box-shadow:
        0 0 20px rgba(184, 134, 11, 0.3),
        0 0 40px rgba(184, 134, 11, 0.1);
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   FINAL MOBILE OVERRIDES - BRASÃO CENTRALIZADO
   ========================================================================== */
@media (max-width: 768px) {
    .about .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .about-content {
        text-align: center !important;
    }

    .about-image {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .about-image::before {
        display: none !important;
    }

    .about-image img {
        max-width: 250px !important;
        width: auto !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
        position: static !important;
        transform: none !important;
    }
}

/* ==========================================================================
   MOBILE PADDING FIXES - Força aplicação com maior especificidade
   ========================================================================== */
@media (max-width: 1024px) {
    .contact-form-card.contact-form-card {
        padding: 36px 18% !important;
    }

    .service-luxury-card.service-luxury-card {
        padding: 42px 18% !important;
    }

    .team-info.team-info {
        padding: 38px 18% 50px !important;
    }

    .team-card-back.team-card-back {
        padding: 38px 18% !important;
    }
}

@media (max-width: 768px) {
    .contact-form-card.contact-form-card {
        padding: 32px 16% !important;
    }

    .service-luxury-card.service-luxury-card {
        padding: 38px 16% !important;
    }

    .team-info.team-info {
        padding: 34px 16% 45px !important;
    }

    .team-card-back.team-card-back {
        padding: 34px 16% !important;
    }
}

@media (max-width: 480px) {
    .contact-form-card.contact-form-card {
        padding: 30px 14% !important;
    }

    .service-luxury-card.service-luxury-card {
        padding: 34px 14% !important;
    }

    .team-info.team-info {
        padding: 30px 14% 45px !important;
    }

    .team-card-back.team-card-back {
        padding: 30px 14% !important;
    }
}

/* ==========================================================================
   MOBILE TYPOGRAPHY OPTIMIZATION
   ========================================================================== */

/* Tablet/Large Mobile - 768px */
@media (max-width: 768px) {

    /* Parágrafos - alinhamento melhor para leitura mobile */
    .about-text p,
    .section-description,
    .text-content p,
    .team-info p,
    .service-luxury-description {
        text-align: left !important;
        line-height: 1.85 !important;
    }

    /* Footer - touch targets maiores (mínimo 44px) */
    .footer-section a {
        display: inline-block;
        padding: 10px 0;
        min-height: 44px;
        line-height: 24px;
    }

    /* Título do formulário - mais espaço */
    .contact-info-title {
        font-size: 1.6rem;
        line-height: 1.35;
    }

    /* Fix spacing between text and card on mobile */
    .contact-info-above {
        margin-bottom: 40px !important;
        padding-bottom: 20px;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {

    /* Labels de formulário maiores e mais legíveis */
    .form-group label,
    .contact-form-inline .form-group label {
        font-size: 15px !important;
        font-weight: 600;
        margin-bottom: 10px;
    }

    /* Inputs com 16px para evitar zoom automático no iOS */
    .form-group input,
    .form-group select,
    .form-group textarea,
    .contact-form-inline .form-group input,
    .contact-form-inline .form-group select,
    .contact-form-inline .form-group textarea {
        font-size: 16px !important;
    }

    /* Parágrafos ainda mais legíveis em telas pequenas */
    .about-text p,
    .text-content p {
        font-size: 0.95rem;
        line-height: 1.9 !important;
    }

    /* Título do formulário ajustado */
    .contact-info-title {
        font-size: 1.45rem;
        line-height: 1.3;
        padding-top: 5px;
    }

    /* Form title interno */
    .form-title {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    /* Footer links mais espaçados */
    .footer-section a {
        padding: 12px 0;
        font-size: 0.95rem;
    }

    .footer-section p {
        line-height: 1.8;
    }

    /* WhatsApp Float - Mobile */
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ==========================================================================
   Social Proof Section
   ========================================================================== */
.social-proof {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--primary-black) 0%, #2A1A0D 100%);
    border-top: 1px solid rgba(192, 179, 153, 0.2);
    border-bottom: 1px solid rgba(192, 179, 153, 0.2);
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.proof-item {
    padding: 20px;
}

.proof-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 10px;
}

.proof-label {
    font-size: 1rem;
    color: var(--accent-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .social-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .proof-number {
        font-size: 2.5rem;
    }

    .proof-label {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Hero CTA Improvements
   ========================================================================== */
.hero-cta-group {
    text-align: center;
}

.hero-cta-subtext {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--accent-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-cta-subtext i {
    color: var(--accent-gold);
}

.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 4px 20px rgba(192, 179, 153, 0.3);
    }

    50% {
        box-shadow: 0 4px 30px rgba(192, 179, 153, 0.5), 0 0 0 10px rgba(192, 179, 153, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(192, 179, 153, 0.3);
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
    padding: 100px 0;
    background: var(--ivory);
}

.testimonials .section-title {
    color: var(--gray-dark);
}

.testimonials .section-pretitle {
    color: var(--accent-gold-dark);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(27, 16, 9, 0.08);
    border: 1px solid rgba(192, 179, 153, 0.2);
    transition: all var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(27, 16, 9, 0.12);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #FFB800;
    font-size: 1rem;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(192, 179, 153, 0.2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: var(--gray-dark);
    font-size: 1rem;
}

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

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 25px;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.faq-section .section-title {
    color: var(--accent-gold);
}

.faq-section .section-pretitle {
    color: var(--accent-gold-light);
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(192, 179, 153, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(42, 26, 13, 0.5);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-gold-light);
    text-align: left;
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform var(--transition-fast);
}

.faq-question:hover {
    background: rgba(192, 179, 153, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--accent-gold-light);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer strong {
    color: var(--accent-gold);
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    color: var(--accent-gold-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* ==========================================================================
   CTA Section Improvements
   ========================================================================== */
.cta-urgency {
    background: rgba(192, 179, 153, 0.15);
    padding: 15px 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    margin-bottom: 25px;
    display: inline-block;
}

.cta-urgency i {
    color: var(--accent-gold);
    margin-right: 10px;
}

/* ==========================================================================
   Exit Intent Popup
   ========================================================================== */
.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10002;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exit-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.exit-popup-content {
    background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 100%);
    max-width: 500px;
    width: 90%;
    padding: 30px 25px;
    /* Reduced padding */
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--accent-gold);
    animation: popupSlideIn 0.4s ease;
    max-height: 90vh;
    /* Ensure it fits on screen */
    overflow-y: auto;
    /* Allow scrolling if content is too tall */
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.exit-popup-close {
    position: absolute;
    top: 10px;
    /* Adjusted */
    right: 15px;
    /* Adjusted */
    background: none;
    border: none;
    font-size: 1.8rem;
    /* Slightly smaller */
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
    z-index: 10;
    /* Ensure clickable */
}

.exit-popup-close:hover {
    color: var(--gray-dark);
}

.exit-popup-icon {
    width: 60px;
    /* Smaller icon */
    height: 60px;
    /* Smaller icon */
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    /* Reduced margin */
}

.exit-popup-icon i {
    font-size: 1.5rem;
    /* Smaller icon font */
    color: var(--white);
}

.exit-popup-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    /* Smaller H3 */
    color: var(--gray-dark);
    margin-bottom: 5px;
    /* Reduced margin */
    line-height: 1.2;
}

.exit-popup-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    /* Reduced margin */
}

.exit-popup-offer {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    /* Smaller offer text */
    color: var(--accent-gold-dark);
    margin-bottom: 15px;
    /* Reduced margin */
    line-height: 1.3;
    padding: 0 10px;
}

.exit-popup-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    /* Reduced margin */
    background: rgba(192, 179, 153, 0.1);
    /* Subtle background to separate */
    padding: 10px 15px;
    border-radius: 8px;
}

.exit-popup-benefits li {
    padding: 6px 0;
    /* Reduced padding */
    color: var(--gray-dark);
    font-size: 0.9rem;
    /* Smaller text */
}

.exit-popup-benefits i {
    color: #25D366;
    margin-right: 8px;
}

.exit-popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exit-popup-form input {
    padding: 15px 20px;
    border: 2px solid rgba(192, 179, 153, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.exit-popup-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.exit-popup-form .btn-primary {
    width: 100%;
}

.exit-popup-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.exit-popup-note i {
    margin-right: 5px;
}

@media (max-width: 480px) {
    .exit-popup-content {
        padding: 35px 25px;
    }

    .exit-popup-content h3 {
        font-size: 1.5rem;
    }

    .exit-popup-offer {
        font-size: 1.1rem;
    }

    .exit-popup-form input {
        font-size: 16px;
        /* Evita zoom no iOS */
        padding: 12px 15px;
    }

    .exit-popup-benefits {
        margin-bottom: 20px;
    }

    .exit-popup-benefits li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
}

/* ==========================================================================
   Blog Styles
   ========================================================================== */

/* Breadcrumb */
.breadcrumb-area {
    padding: 120px 0 20px;
    /* Top padding considers fixed header */
    background-color: var(--primary-black);
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: var(--border-color);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb .active {
    color: var(--accent-gold);
}

/* Article Hero */
.article-hero {
    background-color: var(--primary-black);
    padding: 40px 0 60px;
    border-bottom: 1px solid var(--border-color);
}

.article-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-category {
    color: var(--accent-gold);
    font-weight: 600;
}

.article-title {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.article-author-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.article-author-mini img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.article-author-mini .author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.article-author-mini .author-info strong {
    color: var(--text-light);
    display: block;
}

.article-author-mini .author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Article Content Layout */
.article-content-area {
    padding: 80px 0;
    background-color: #f9f9f9;
    /* Light background for reading comfort */
    color: #333;
    /* Dark text for readability on light bg */
}

.article-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Main Article Body */
.article-body {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.article-featured-image {
    margin: -40px -40px 40px -40px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    position: relative;
    height: 400px;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-featured-image figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    font-size: 0.85rem;
}

.article-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-text p {
    margin-bottom: 25px;
    color: #4a4a4a;
}

.article-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 30px;
}

.article-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-black);
    margin: 40px 0 20px;
}

.article-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-black);
    margin: 30px 0 15px;
}

.article-text blockquote {
    border-left: 4px solid var(--accent-gold);
    margin: 40px 0;
    padding: 20px 30px;
    background-color: #f5f5f5;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #333;
}

.article-text ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.article-text li {
    margin-bottom: 10px;
    color: #4a4a4a;
}

/* Share Buttons */
.article-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-share span {
    font-weight: 600;
    color: #333;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1DA1F2;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Author Widget */
.author-widget .widget-content {
    text-align: center;
}

.author-widget img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--accent-gold);
}

.author-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.author-widget p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--card-bg) 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
}

.cta-widget i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.cta-widget h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.cta-widget p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.category-list a:hover {
    color: var(--primary-black);
}

.category-list span {
    color: #999;
    font-size: 0.85rem;
}

/* Related Articles */
.related-articles {
    padding: 80px 0;
    background-color: #fff;
}

.related-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 50px;
}

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

.related-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.related-content {
    padding: 20px;
}

.related-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content h4 a:hover {
    color: var(--accent-gold);
}

.related-content .date {
    font-size: 0.85rem;
    color: #999;
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 80px 0;
    background-color: var(--primary-black);
    position: relative;
}

.newsletter-box {
    background: linear-gradient(135deg, rgba(192, 179, 153, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    border: 1px solid rgba(192, 179, 153, 0.2);
    border-radius: 12px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Responsive Blog */
@media (max-width: 992px) {
    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-title {
        font-size: 2.5rem;
    }

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

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

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .article-title {
        font-size: 2rem;
    }

    .article-body {
        padding: 25px;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .article-featured-image {
        height: 250px;
        margin: -25px -25px 25px -25px;
    }

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

/* ==========================================================================
   Blog Listing Styles
   ========================================================================== */

/* Blog Hero */
.blog-hero {
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--primary-black);
    text-align: center;
}

.blog-header {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.blog-subtitle {
    display: block;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.blog-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-listing {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

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

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

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--accent-gold);
    margin-right: 5px;
}

.blog-card h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.blog-card h3 a {
    color: var(--primary-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--accent-gold);
}

.blog-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* Pagination */
.pagination-area {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: var(--accent-gold);
    color: #000;
    transform: translateY(-2px);
}

.page-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Responsividade Blog */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 2.5rem;
    }

    /* Fix for Service Slider Overflow on Mobile */
    .services-slider {
        width: 100% !important;
        margin: 0 !important;
        padding: 40px 0 !important;
        /* Vertical padding only, horz handled by Swiper */
        overflow: hidden !important;
        /* Hide side peaks if user wants NO overflow, but 'visible' is better for peek. Stick to visible for now? User said 'not covering whole screen'. */
    }

    .service-luxury-card {
        transform: none !important;
        max-width: 100%;
        /* Let Swiper control width via slidesPerView */
        margin: 0 auto;
        /* Ensure centering within slide */
    }
}

/* ==========================================================================
   Premium FAQ Section
   ========================================================================== */
.faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.3;
}

.faq-section .section-title {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.faq-section .section-description {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 60px;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(184, 134, 11, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(184, 134, 11, 0.3);
    transform: translateY(-2px);
}

.faq-item.active {
    background: rgba(184, 134, 11, 0.05);
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 30px 40px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--accent-gold);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    opacity: 1;
}

.faq-answer {
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 40px 40px;
    max-height: 500px;
    /* Approximate max height */
    opacity: 1;
}

/* FAQ CTA Box Update */
.faq-section .cta-box {
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--white);
    margin: 80px auto 0;
    padding: 60px;
    backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    border-radius: 12px;
}

.faq-section .cta-box h2 {
    color: var(--accent-gold);
}