/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Dark Mode Champagne/Sand Gold Edition)
   ========================================================================== */
:root {
    /* Colors - Brand Mockup Identity (User Custom Accent #E6BE8E) */
    --primary-bg: #0A0A0C;
    --card-bg: #121214;
    --accent-copper: #E6BE8E; /* User custom Sand Gold/Champagne tone */
    --accent-copper-hover: #F2D2A7;
    --white: #FFFFFF;
    
    /* Text Colors */
    --text-main: #E1E1E6;
    --text-muted: #8E8E93;
    --text-dark: #0A0A0C;
    --border-color: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(230, 190, 142, 0.15); /* Aligned with #E6BE8E */

    /* Fonts - Geometric Sans-serif Outfit + Inter */
    --font-heading: 'Outfit', sans-serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Layout Constants */
    --header-height: 70px;
    --container-width: 1140px;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Box Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Custom Selection Color */
::selection {
    background-color: var(--accent-copper);
    color: var(--text-dark);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-copper);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-copper-hover);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.25;
    color: var(--white);
    letter-spacing: -0.015em;
}

p {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Section Headers globally centered and sized */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

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

/* Utilities */
.italic { 
    font-style: italic; 
}
.text-gold { 
    color: var(--accent-copper) !important; 
}
.text-white { 
    color: var(--white) !important; 
}
.align-center { 
    align-items: center; 
}
.text-center {
    text-align: center;
}

/* ==========================================================================
   CUSTOM CURSOR (Awwwards Style)
   ========================================================================== */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--accent-copper);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}

.custom-cursor.hovered {
    width: 40px;
    height: 40px;
    background-color: rgba(230, 190, 142, 0.08);
    border: 1px solid var(--accent-copper);
}

/* ==========================================================================
   LAYOUT CONTAINERS & GRIDS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ==========================================================================
   BUTTONS (with micro-interactions)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 8px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    position: relative;
    z-index: 1;
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--accent-copper);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-copper);
    transition: var(--transition-smooth);
    z-index: -2;
}

.btn-primary:hover {
    color: var(--text-dark);
    border-color: var(--white);
}

.btn-primary:hover::before {
    top: 0;
}

.btn-primary * {
    position: relative;
    z-index: 2;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-copper);
    border-color: var(--accent-copper);
}

.btn-secondary:hover {
    background-color: var(--accent-copper);
    color: var(--text-dark);
}

.btn-nav {
    padding: 8px 18px;
    font-size: 0.75rem;
    background-color: transparent;
    border-color: var(--accent-copper);
    color: var(--accent-copper);
    border-radius: 6px;
}

.btn-nav:hover {
    background-color: var(--accent-copper);
    color: var(--text-dark);
}

.btn-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.main-header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(10, 10, 12, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
}

.main-header .logo-img {
    height: 55px;
}

.footer-logo {
    display: inline-block;
}

.footer-logo .logo-img {
    height: 150px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-copper);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-copper);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-fast);
}

/* Mobile Overlay Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-bg);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

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

.mobile-nav ul {
    list-style: none;
    margin-bottom: 40px;
}

.mobile-nav ul li {
    margin: 24px 0;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--white);
}

.mobile-nav-link:hover {
    color: var(--accent-copper);
}

.btn-whatsapp-menu {
    gap: 10px;
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}
.btn-whatsapp-menu::before,
.btn-whatsapp-menu::after {
    display: none !important;
}
.btn-whatsapp-menu:hover {
    background-color: #20BA56;
    border-color: #20BA56;
    color: white;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 120px; /* Ensure content is pushed above the bottom shape divider */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-bg);
    overflow: hidden;
}

.hero-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
}

.orb-1 {
    top: -10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background-color: rgba(230, 190, 142, 0.12);
}

.orb-2 {
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.02);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 50px;
    flex-grow: 1;
}

.badge-container {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(230, 190, 142, 0.15);
    padding: 6px 16px;
    margin-bottom: 24px;
    border-radius: 4px;
}

.badge {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--accent-copper);
    letter-spacing: 0.12em;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.0625rem;
    margin-bottom: 36px;
    max-width: 580px;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    max-width: 580px;
}

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

.hero-stat-item .stat-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-item .stat-lbl {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Hero Image & Floating Clean Cards */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    justify-self: end;
}

.image-border-decor {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--accent-copper);
    border-radius: 12px;
    z-index: 1;
}

.image-container-inner {
    position: relative;
    z-index: 2;
    background-color: var(--card-bg);
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 12px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%) contrast(105%);
    transition: var(--transition-smooth);
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Floating Badges / Cards around Hero Image */
.floating-badge-hero {
    position: absolute;
    background-color: rgba(18, 18, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid var(--border-glow);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-medium);
    z-index: 10;
}

.floating-badge-hero .float-icon {
    font-size: 1.1rem;
    font-weight: bold;
}

.floating-badge-hero .float-text {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Positioning and animations for floaters */
.float-card-1 {
    top: 15%;
    left: -70px;
    animation: float-y-1 6s ease-in-out infinite;
}

.float-card-2 {
    bottom: 12%;
    right: -40px;
    animation: float-y-2 7s ease-in-out infinite;
}

.float-card-3 {
    bottom: 50%;
    left: -90px;
    animation: float-y-3 5.5s ease-in-out infinite;
}

@keyframes float-y-1 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

@keyframes float-y-2 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes float-y-3 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
    100% { transform: translateY(0); }
}

.hero-footer {
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
    display: flex;
    justify-content: flex-start;
}

.scroll-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 6px;
    background-color: var(--accent-copper);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 14px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* ==========================================================================
   SITUATIONS SECTION (Reconhece essa situação?)
   ========================================================================== */
.situacoes-section {
    padding: 120px 0;
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
}

.situacoes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.situacoes-card {
    background-color: var(--card-bg);
    padding: 44px 36px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.situacoes-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-glow);
}

.situacoes-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(230, 190, 142, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
}

.situacoes-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
}

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



/* ==========================================================================
   TIMELINE SECTION (Interactive Step rows Accordion)
   ========================================================================== */
.timeline-section {
    padding: 120px 0;
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

/* Timeline wrapper */
.timeline-wrapper {
    position: relative;
    margin-top: 80px;
    padding: 20px 0;
}

/* Horizontal connecting line */
.timeline-progress-bar {
    position: absolute;
    top: 24px; /* Align horizontally with the nodes */
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background-color: var(--border-color);
    z-index: 1;
    border-radius: 2px;
}

.timeline-progress-line {
    width: 0%; /* Animates to 100% on view */
    height: 100%;
    background-color: var(--accent-copper);
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(230, 190, 142, 0.5);
}

.timeline-wrapper.active .timeline-progress-line {
    width: 100%;
}

/* Grid layout for steps */
.timeline-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.timeline-step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Node layout */
.step-node-wrapper {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-node {
    width: 16px;
    height: 16px;
    background-color: var(--primary-bg);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    position: relative;
}

.step-node-inner {
    width: 6px;
    height: 6px;
    background-color: transparent;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

/* Step Card content styling */
.step-card-content {
    background-color: var(--card-bg);
    padding: 32px 24px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-smooth);
    width: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.step-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

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

/* Hover interactions */
.timeline-step-card:hover .step-node {
    border-color: var(--accent-copper);
    transform: scale(1.25);
    box-shadow: 0 0 15px rgba(230, 190, 142, 0.4);
}

.timeline-step-card:hover .step-node-inner {
    background-color: var(--accent-copper);
}

.timeline-step-card:hover .step-card-content {
    border-color: var(--border-glow);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

/* Sequential progress delay styling */
.timeline-step-card .step-node,
.timeline-step-card .step-node-inner {
    transition: border-color 0.4s ease, background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

/* Staggered transition delays when wrapper is active */
.timeline-wrapper.active .timeline-step-card[data-step="1"] .step-node {
    border-color: var(--accent-copper);
    transition-delay: 0.2s;
}
.timeline-wrapper.active .timeline-step-card[data-step="1"] .step-node-inner {
    background-color: var(--accent-copper);
    transition-delay: 0.2s;
}

.timeline-wrapper.active .timeline-step-card[data-step="2"] .step-node {
    border-color: var(--accent-copper);
    transition-delay: 0.5s;
}
.timeline-wrapper.active .timeline-step-card[data-step="2"] .step-node-inner {
    background-color: var(--accent-copper);
    transition-delay: 0.5s;
}

.timeline-wrapper.active .timeline-step-card[data-step="3"] .step-node {
    border-color: var(--accent-copper);
    transition-delay: 0.8s;
}
.timeline-wrapper.active .timeline-step-card[data-step="3"] .step-node-inner {
    background-color: var(--accent-copper);
    transition-delay: 0.8s;
}

.timeline-wrapper.active .timeline-step-card[data-step="4"] .step-node {
    border-color: var(--accent-copper);
    transition-delay: 1.1s;
}
.timeline-wrapper.active .timeline-step-card[data-step="4"] .step-node-inner {
    background-color: var(--accent-copper);
    transition-delay: 1.1s;
}

/* Responsive Timeline (Vertical stacked on tablets and mobile) */
@media (max-width: 991px) {
    .timeline-progress-bar {
        left: 24px;
        right: auto;
        top: 20px;
        bottom: 20px;
        width: 3px;
        height: auto;
    }
    
    .timeline-progress-line {
        width: 100%;
        height: 0%;
        transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .timeline-wrapper.active .timeline-progress-line {
        height: 100%;
    }
    
    .timeline-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-step-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 24px;
        width: 100%;
    }
    
    .step-node-wrapper {
        margin-bottom: 0;
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        justify-content: center;
    }
    
    .step-card-content {
        align-items: flex-start;
        min-height: auto;
        padding: 24px;
    }
    
    .step-card-num {
        margin-bottom: 8px;
    }
}

.timeline-cta-wrapper {
    margin-top: 60px;
}

/* ==========================================================================
   SERVICES / EXPERTISE SECTION
   ========================================================================== */
.expertise-section {
    padding: 120px 0;
    background-color: var(--primary-bg);
}

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

.expertise-column-card {
    background-color: var(--card-bg);
    padding: 48px 40px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
}

.expertise-column-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--border-glow);
}

.column-header-decor {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.column-title {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.35;
}

.column-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.column-list li {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.column-list .bullet {
    color: var(--accent-copper);
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
}

/* ==========================================================================
   INDEMNITY SECTION
   ========================================================================== */
.indemnity-section {
    padding: 120px 0;
    background-color: var(--card-bg);
}

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

.indemnity-card {
    background-color: var(--primary-bg);
    padding: 44px 32px;
    position: relative;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.indemnity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-glow);
}

.indemnity-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-copper);
    border-radius: 1.5px 1.5px 0 0;
}

.indemnity-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.indemnity-text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
}

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

.testimonial-card {
    background-color: var(--card-bg);
    padding: 44px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

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

.testimonial-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(230, 190, 142, 0.08);
    border: 1.5px solid var(--accent-copper);
    color: var(--accent-copper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
}

.testimonial-tag-sub {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.testimonial-stars {
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.testimonials-bottom-bar {
    margin-top: 56px;
    border-top: 1.5px solid var(--border-color);
    padding-top: 32px;
}

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

.testimonials-counter-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
}

/* ==========================================================================
   ABOUT LAWYER SECTION (Quem sou eu / Overlapping Dual Images)
   ========================================================================== */
.about-section {
    padding: 120px 0;
    background-color: var(--card-bg);
}

.about-content {
    padding-right: 20px;
}

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

.about-stats {
    display: flex;
    gap: 40px;
    margin: 36px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.1;
}

.stat-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Column subtitle in Expertise */
.column-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-top: 4px;
}


.about-quote-container {
    margin-top: 32px;
}

.btn-about-cta {
    width: 100%;
    max-width: 260px;
}

/* Overlapping Dual Images Frame */
.about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.about-dual-images {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
}

.about-image-box {
    position: absolute;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    background-color: var(--primary-bg);
}

.color-image-box {
    top: 0;
    left: 0;
    width: 76%;
    height: 78%;
    z-index: 2;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
}

.bw-image-box {
    bottom: 0;
    right: 0;
    width: 52%;
    height: 52%;
    z-index: 3;
    border: 2px solid var(--accent-copper);
    border-radius: 12px;
}

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

.bw-img {
    filter: none;
}

.about-signature-badge {
    position: absolute;
    bottom: 10%;
    left: -15px;
    z-index: 4;
    transform: rotate(-4deg);
}

.signature-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
    font-size: 2.25rem;
    letter-spacing: -0.02em;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   FAQ SECTION (Dúvidas)
   ========================================================================== */
.faq-section {
    padding: 120px 0;
    background-color: var(--primary-bg);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 8px 0;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    gap: 24px;
}

.faq-trigger:hover {
    color: var(--accent-copper);
}

.faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.faq-trigger:hover .faq-icon-wrapper {
    border-color: var(--accent-copper);
    color: var(--accent-copper);
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    padding: 16px 0 8px 0;
}

.faq-content-inner p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ==========================================================================
   CONTACT / FINAL CTA SECTION
   ========================================================================== */
.contact-section {
    padding: 120px 0;
}

.dark-section {
    background-color: var(--primary-bg);
    border-top: 1.5px solid var(--border-color);
    border-bottom: 1.5px solid var(--border-color);
}

.contact-cta-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-wrapper .section-title {
    line-height: 1.25;
    margin-bottom: 24px;
    font-size: 2.75rem;
}

.cta-actions {
    margin: 40px 0;
}

.btn-whatsapp-cta {
    background-color: transparent;
    border-color: var(--accent-copper);
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 18px 48px;
    font-weight: 700;
}

.btn-whatsapp-cta:hover {
    border-color: var(--white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--primary-bg);
    color: var(--text-main);
    padding: 80px 0 40px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo-name {
    color: var(--white);
}

.brand-bio {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.footer-socials {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-icon:hover {
    border-color: var(--accent-copper);
    color: var(--accent-copper);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.btn-back-to-top {
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.btn-back-to-top:hover {
    color: var(--accent-copper);
}

.btn-back-to-top .arrow-top {
    transition: transform 0.3s ease;
}

.btn-back-to-top:hover .arrow-top {
    transform: translateY(-4px);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (with Pulse Animation)
   ========================================================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 99;
    cursor: pointer;
    transition: var(--transition-fast);
}

.whatsapp-floating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    opacity: 0.5;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-floating:hover {
    transform: scale(1.08);
    background-color: #20BA56;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   SCROLL TRIGGERED ANIMATIONS
   ========================================================================== */
.scroll-anim {
    opacity: 0;
    will-change: transform, opacity;
}

.scroll-anim.fade-in {
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-anim.fade-in.active {
    opacity: 1;
}

.scroll-anim.fade-in-up {
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-anim.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-anim.fade-in-right {
    transform: translateX(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-anim.fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-anim.fade-in-left {
    transform: translateX(-40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-anim.fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Text Reveal Style */
.text-reveal {
    opacity: 1;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Large screens and laptops */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
}

/* Tablets and small laptops */
@media (max-width: 991px) {
    :root {
        --header-height: 60px;
    }
    
    .custom-cursor {
        display: none; /* Hide custom cursor on tablets/mobile */
    }
    
    .grid-2-cols {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding-top: 40px;
    }
    
    .badge-container {
        justify-content: center;
    }
    
    .hero-description {
        margin: 0 auto 30px auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats-row {
        margin: 0 auto;
        justify-content: center;
    }
    
    .hero-image-wrapper {
        justify-self: center;
    }
    
    .floating-badge-hero {
        position: static;
        display: inline-flex;
        margin: 10px 5px;
        animation: none !important;
        box-shadow: none;
    }
    
    .com-sem-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .com-sem-card {
        padding: 50px 32px;
    }
    
    .interactive-steps-container {
        max-width: 100%;
    }
    
    .step-row-content-inner {
        padding-left: 48px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .indemnity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .about-image-wrapper {
        margin: 40px auto 0 auto;
    }
    
    .situacoes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Tight spacing reductions */
    .hero-section {
        padding-top: calc(var(--header-height) + 15px);
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .situacoes-section,
    .expertise-section,
    .indemnity-section,
    .timeline-section,
    .about-section,
    .location-section,
    .faq-section,
    .contact-section {
        padding: 50px 0 !important;
    }
    
    .section-header {
        margin-bottom: 24px !important;
    }
    
    .section-title {
        font-size: 1.85rem !important;
        margin-bottom: 8px !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
    }
    
    .grid-2-cols {
        gap: 30px !important;
    }
    
    .hero-title {
        font-size: 2.15rem !important;
        margin-bottom: 12px !important;
    }
    
    .hero-description {
        margin: 0 auto 20px auto !important;
        font-size: 0.95rem;
    }
    
    .badge-container {
        margin-bottom: 16px !important;
    }
    
    .nav-menu {
        display: none; /* Hide standard nav on mobile */
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Active state for mobile toggle menu */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 24px !important;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .btn-nav {
        display: none; /* Hide nav button in header on mobile */
    }
    
    .hero-stats-row {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding-top: 16px !important;
        margin-top: 20px !important;
        width: 100% !important;
    }
    
    .hero-stat-item {
        flex: 1 !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .hero-stat-item .stat-num {
        font-size: 1.35rem !important;
        margin-bottom: 4px !important;
    }
    
    .hero-stat-item .stat-num span {
        font-size: 1.35rem !important;
    }
    
    .hero-stat-item .stat-lbl {
        font-size: 0.625rem !important;
        line-height: 1.2 !important;
        letter-spacing: 0.02em !important;
    }
    
    /* Card spacings */
    .situacoes-card {
        padding: 24px 20px !important;
        gap: 12px !important;
    }
    
    .situacoes-grid {
        grid-template-columns: 1fr;
        gap: 16px !important;
        margin-top: 24px !important;
    }
    
    .expertise-col {
        padding: 24px 20px !important;
    }
    
    .indemnity-card {
        padding: 24px 20px !important;
    }
    
    .indemnity-grid {
        grid-template-columns: 1fr;
        gap: 16px !important;
        margin-top: 24px !important;
    }
    
    /* Timeline steps vertical spacing */
    .timeline-wrapper {
        margin-top: 30px !important;
    }
    
    .timeline-steps-grid {
        gap: 20px !important;
    }
    
    .timeline-step-card {
        gap: 16px !important;
    }
    
    .step-card-content {
        padding: 16px 20px !important;
    }
    
    .step-card-num {
        font-size: 1.85rem !important;
        margin-bottom: 4px !important;
    }
    
    .step-card-title {
        font-size: 1.15rem !important;
        margin-bottom: 6px !important;
    }
    
    .step-node-wrapper {
        width: 40px !important;
        height: 40px !important;
    }
    
    /* Biography / About */
    .about-content {
        padding-right: 0;
        text-align: center;
    }
    
    .about-text {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }
    
    .about-stats {
        justify-content: center;
        gap: 24px !important;
        margin: 24px 0 !important;
        padding: 16px 0 !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .about-quote-container {
        margin-top: 24px !important;
    }
    
    .about-image-wrapper {
        margin: 24px auto 0 auto !important;
    }
    
    .about-dual-images {
        max-width: 320px !important;
    }
    
    /* FAQ accordion spacing */
    .faq-trigger {
        font-size: 1.05rem !important;
    }
    
    .faq-item {
        padding: 12px 0 !important;
    }
    
    .faq-content-inner {
        padding: 12px 0 6px 0 !important;
    }
    
    /* Footer & CTA */
    .cta-actions {
        margin: 24px 0 !important;
    }
    
    .contact-cta-wrapper .section-title {
        font-size: 2.0rem !important;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Mobile Overlay Menu Compact Styling */
    .mobile-nav ul {
        margin-bottom: 24px !important;
    }
    
    .mobile-nav ul li {
        margin: 16px 0 !important;
    }
    
    .mobile-nav-link {
        font-size: 1.55rem !important; /* Smaller, elegant header font on mobile */
    }
    
    .btn-whatsapp-menu {
        padding: 12px 24px !important;
        font-size: 0.8rem !important;
    }
    
    /* Snappier scroll animation transition duration on mobile */
    .scroll-anim.fade-in,
    .scroll-anim.fade-in-up,
    .scroll-anim.fade-in-left,
    .scroll-anim.fade-in-right {
        transition-duration: 0.8s !important;
    }

    .main-header.scrolled {
        height: 60px !important;
    }

    .main-header .logo-img {
        height: 45px !important;
    }

    .main-header .logo {
        margin-left: -10px !important;
    }

    .footer-logo .logo-img {
        height: 120px !important;
    }
}

/* ==========================================================================
   LOCATION SECTION (Onde nos encontrar)
   ========================================================================== */
.location-section {
    padding: 120px 0;
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
}

.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
    border-radius: 12px;
    border: 1px solid rgba(230, 190, 142, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    background-color: var(--card-bg);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   LIGHT SECTIONS SYSTEM (Alternating Warm Linen & Sand Gold)
   ========================================================================== */
.light-section {
    background-color: #FAF8F5 !important; /* Premium warm sand linen */
    color: #2D2C2A !important;
    border-bottom: 1px solid #EAE3DB !important;
}

.light-section .section-title {
    color: #121214 !important;
}

.light-section .section-subtitle {
    color: #615E5A !important;
}

.light-section .text-gold {
    color: #B28859 !important; /* Slightly darker gold/champagne for proper contrast */
}

.light-section .text-white {
    color: #121214 !important;
}

/* Situacoes Cards Override */
.light-section .situacoes-card {
    background-color: #FFFFFF !important;
    border-color: #EAE3DB !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.light-section .situacoes-card:hover {
    border-color: #B28859 !important;
    box-shadow: 0 15px 35px rgba(178, 136, 89, 0.1) !important;
}

.light-section .situacoes-card-icon {
    background-color: rgba(178, 136, 89, 0.06) !important;
    border-color: rgba(178, 136, 89, 0.2) !important;
}

.light-section .situacoes-card-icon svg {
    color: #B28859 !important;
}

.light-section .situacoes-card-title {
    color: #121214 !important;
}

.light-section .situacoes-card-text {
    color: #615E5A !important;
}

/* Indemnity Cards Override */
.light-section .indemnity-card {
    background-color: #FFFFFF !important;
    border-color: #EAE3DB !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.light-section .indemnity-card:hover {
    border-color: #B28859 !important;
    box-shadow: 0 15px 35px rgba(178, 136, 89, 0.1) !important;
}

.light-section .indemnity-accent-line {
    background-color: #B28859 !important;
}

.light-section .indemnity-title {
    color: #121214 !important;
}

.light-section .indemnity-text {
    color: #615E5A !important;
}

/* About Section Override */
.light-section .about-text {
    color: #615E5A !important;
}

.light-section .about-stats {
    border-top-color: #EAE3DB !important;
    border-bottom-color: #EAE3DB !important;
}

.light-section .stat-number {
    color: #B28859 !important;
}

.light-section .stat-text {
    color: #615E5A !important;
}

.light-section .about-image-box {
    background-color: #FFFFFF !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.light-section .color-image-box {
    border-color: #EAE3DB !important;
}

.light-section .bw-image-box {
    border-color: #B28859 !important;
}

.light-section .signature-text {
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Hero Bottom Curved Shape Divider */
.hero-shape-divider {
    position: absolute;
    bottom: -1px; /* Overlap to avoid thin gaps */
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100%;
}

@media (max-width: 768px) {
    .hero-shape-divider {
        height: 40px;
    }
}

/* ==========================================================================
   LEGAL LINKS & PRIVACY POLICY STYLES
   ========================================================================== */
.legal-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.legal-link:hover {
    color: var(--accent-copper);
}

.policy-section {
    padding: 140px 0 100px 0;
    background-color: #FAF8F5; /* Matches light-section champanhe */
    min-height: calc(100vh - 70px - 210px); /* Fill screen height between header and footer */
}

.policy-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #eae3db;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.policy-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #121214;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 600;
}

.policy-meta {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: #8b8680;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eae3db;
}

.policy-body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: #3d3b38;
}

.policy-body h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #121214;
    margin: 36px 0 16px 0;
    font-weight: 600;
}

.policy-body p {
    margin-bottom: 20px;
}

.policy-body ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.policy-body li {
    margin-bottom: 10px;
    list-style-type: square;
    color: #3d3b38;
}

.policy-body strong {
    color: #121214;
    font-weight: 600;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 100px 0 60px 0;
    }
    .policy-card {
        padding: 30px 20px;
        border-radius: 8px;
    }
    .policy-title {
        font-size: 1.65rem;
    }
    .policy-meta {
        font-size: 0.75rem;
        margin-bottom: 24px;
    }
    .policy-body {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    .policy-body h2 {
        font-size: 1.15rem;
        margin: 28px 0 12px 0;
    }
}



