/* ===== DUPLOS GEMINI - CSS CONSOLIDADO ===== */

/* ===== VARIÁVEIS GLOBAIS ===== */
:root {
    /* Cores */
    --primary-gold: #D4AF37;
    --primary-gold-light: #E6C659;
    --primary-gold-dark: #B8941F;
    --dark-brown: #2C1810;
    --medium-brown: #8B4513;
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #F9F9F9;
    --gray-100: #F3F3F3;
    --gray-200: #E5E5E5;
    --gray-300: #D1D1D1;
    --gray-600: #525252;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Tema */
    --background: var(--white);
    --text: var(--gray-800);
    --text-light: var(--gray-600);
    --border: var(--gray-200);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Layout */
    --max-width: 1200px;
    --section-padding: 80px 0;
    --navbar-height: 80px;
    --border-radius: 12px;
    --border-radius-large: 24px;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: var(--gray-900);
        --text: var(--gray-100);
        --text-light: var(--gray-300);
        --border: var(--gray-800);
    }
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(135deg, #fafbfc 0%, #f1f3f4 50%, #e8eaed 100%);
    overflow-x: hidden;
}

/* Skip Link para acessibilidade */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: var(--transition-fast);
}

.skip-link:focus {
    top: 6px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--primary-gold-dark);
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* ===== NAVEGAÇÃO ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(212, 175, 55, 0.08);
}

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

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hamburger.active .bar:nth-child(4) {
    transform: translateY(-9px) rotate(45deg);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.dropdown-toggle:hover {
    color: var(--primary-gold);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
    z-index: 1000;
}

.dropdown:hover .dropdown-content,
.dropdown-toggle[aria-expanded="true"] + .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 1rem 1.5rem;
    color: #000000 !important;
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--border);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--gray-50);
    color: var(--primary-gold);
}

/* ===== HERO SECTIONS ===== */
.hero-modern,
.services-hero,
.contact-hero,
.venue-hero {
    position: relative;
    height: 100vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    margin-top: 0;
    padding-top: var(--navbar-height);
}

.hero-background,
.venue-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide,
.background-slide,
.venue-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.05);
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

/* Hero slide placeholder */
.hero-slide:not([style*="background-image"]),
.hero-slide[style*="background-image: url('')"],
.venue-slide:not([style*="background-image"]),
.venue-slide[style*="background-image: url('')"] {
    background: 
        linear-gradient(135deg, rgba(156, 163, 175, 0.9) 0%, rgba(107, 114, 128, 0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><rect width="300" height="300" fill="%23374151"/><g fill="%23ffffff" opacity="0.6"><rect x="75" y="100" width="150" height="100" fill="none" stroke="%23ffffff" stroke-width="4" rx="10"/><circle cx="125" cy="130" r="15"/><path d="M85 170l30-30 25 25 40-40 25 25v20H85z" stroke="%23ffffff" stroke-width="3" fill="%23ffffff" opacity="0.5"/><text x="150" y="240" text-anchor="middle" font-family="Arial, sans-serif" font-size="16" font-weight="bold" fill="%23ffffff" opacity="0.8">HERO IMAGE</text></g></svg>') center/40% no-repeat;
}

.hero-slide.active,
.background-slide.active,
.venue-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 69, 19, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 20%, rgba(44, 24, 16, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(20, 15, 10, 0.7) 25%, rgba(44, 24, 16, 0.65) 50%, rgba(25, 18, 12, 0.7) 75%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-content,
.venue-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 1rem 2rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 1rem;
}

.title-line {
    display: block;
    color: var(--white);
}

.title-accent {
    display: block;
    color: var(--primary-gold);
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 1rem;
    min-width: 200px;
    justify-content: center;
}

.btn-hero.btn-primary {
    background: var(--primary-gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-hero.btn-primary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-hero.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.hero-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: scale(1.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding);
}

.welcome-section {
    background: linear-gradient(135deg, #f8fafb 0%, #f0f2f5 50%, #e6e9ed 100%);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23d4af37" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ===== GRID LAYOUTS ===== */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ===== CARDS ===== */
.card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 30%, #f1f4f7 70%, #eaeff3 100%);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 6px rgba(212, 175, 55, 0.08);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(5px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, #fffef6 0%, #f6f2d8 30%, #eee5ba 70%, #e5d89c 100%);
    border-color: rgba(212, 175, 55, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===== MODAL / LIGHTBOX ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
}

/* ===== FORMULÁRIOS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

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

/* ===== STATS ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

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

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

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.fade-in { animation: fadeIn 0.6s ease-out; }
.slide-up { animation: slideUp 0.6s ease-out; }
.bounce { animation: bounce 2s infinite; }
.pulse { animation: pulse 2s infinite; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-slide,
    .background-slide,
    .venue-slide {
        filter: blur(3px);
        -webkit-filter: blur(3px);
    }
    
    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--gray-50);
        margin-top: 1rem;
        border-radius: var(--border-radius);
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-modern,
    .services-hero,
    .contact-hero,
    .venue-hero {
        padding-top: 70px;
        margin-top: -70px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
        max-width: 120px;
    }
    
    .hero-controls {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* MacBook and similar screens */
@media (min-width: 1024px) and (max-height: 900px) {
    .hero-modern,
    .services-hero,
    .contact-hero,
    .venue-hero {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-content-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .navbar {
        height: 60px;
    }
    
    .hero-modern,
    .services-hero,
    .contact-hero,
    .venue-hero {
        min-height: 100vh;
        height: 100vh;
        padding-top: 60px;
        margin-top: -60px;
    }
    
    .hero-slide,
    .background-slide,
    .venue-slide {
        filter: blur(4px);
        -webkit-filter: blur(4px);
    }
    
    .section {
        padding: 60px 0;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-hero {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .hero-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

/* ===== BUTTON SPACING ===== */
.services-modern .text-center {
    padding-top: 3rem;
}

/* ===== IMAGE OPTIMIZATION & PLACEHOLDERS ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    position: relative;
}

/* Image placeholder with icon - Dark Gray */
img:not([src]),
img[src=""],
img[src*="placeholder"],
.venue-card img,
.gallery-item img,
.team-member img,
.service-card img,
.venue-image img {
    background: #374151 !important;
    background-color: #374151 !important;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><rect width="120" height="120" fill="%23374151"/><g fill="%23ffffff" opacity="0.9"><rect x="25" y="35" width="70" height="50" fill="none" stroke="%23ffffff" stroke-width="2.5" rx="4"/><circle cx="45" cy="50" r="6"/><path d="M30 70l15-15 12 12 20-20 13 13v10H30z" stroke="%23ffffff" stroke-width="2" fill="%23ffffff" opacity="0.7"/><text x="60" y="100" text-anchor="middle" font-family="Arial, sans-serif" font-size="10" font-weight="bold" fill="%23ffffff" opacity="0.8">TROCAR</text></g></svg>') !important;
    background-size: 50% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #e5e7eb !important;
    font-weight: 600 !important;
    text-align: center !important;
    border-radius: 8px !important;
}

/* Image error fallback - Dark Gray */
img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, #374151 0%, #1f2937 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><rect width="120" height="120" fill="%23374151"/><g fill="%23ffffff" opacity="0.9"><rect x="20" y="30" width="80" height="60" fill="none" stroke="%23ffffff" stroke-width="3" rx="4"/><circle cx="40" cy="50" r="8"/><path d="M25 75l20-20 15 15 25-25 15 15v15H25z" stroke="%23ffffff" stroke-width="2" fill="%23ffffff" opacity="0.7"/><text x="60" y="105" text-anchor="middle" font-family="Arial, sans-serif" font-size="8" fill="%23ffffff" opacity="0.8">TROCAR</text></g></svg>') center/50% no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    pointer-events: none;
}

img[src=""]::after,
img:not([src])::after,
img.placeholder-image::after {
    opacity: 1;
}

/* Force placeholder class */
.placeholder-image {
    background: #374151 !important;
    background-color: #374151 !important;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><rect width="120" height="120" fill="%23374151"/><g fill="%23ffffff" opacity="0.9"><rect x="25" y="35" width="70" height="50" fill="none" stroke="%23ffffff" stroke-width="2.5" rx="4"/><circle cx="45" cy="50" r="6"/><path d="M30 70l15-15 12 12 20-20 13 13v10H30z" stroke="%23ffffff" stroke-width="2" fill="%23ffffff" opacity="0.7"/><text x="60" y="100" text-anchor="middle" font-family="Arial, sans-serif" font-size="10" font-weight="bold" fill="%23ffffff" opacity="0.8">TROCAR</text></g></svg>') !important;
    background-size: 50% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 200px !important;
    color: #e5e7eb !important;
}

/* Specific gallery image placeholder override */
.gallery-image-wrapper img[src=""],
.gallery-image-wrapper img:not([src]) {
    background: #374151 !important;
    background-color: #374151 !important;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><rect width="150" height="150" fill="%23374151"/><g fill="%23ffffff" opacity="0.9"><rect x="25" y="35" width="100" height="80" fill="none" stroke="%23ffffff" stroke-width="3" rx="6"/><circle cx="50" cy="60" r="8"/><path d="M30 100l20-20 15 15 25-25 15 15v15H30z" stroke="%23ffffff" stroke-width="2" fill="%23ffffff" opacity="0.7"/><text x="75" y="135" text-anchor="middle" font-family="Arial, sans-serif" font-size="9" font-weight="bold" fill="%23ffffff">TROCAR FOTO</text></g></svg>') !important;
    background-size: 60% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 200px !important;
}

img[alt]::after {
    content: attr(alt);
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
}

/* Image Cards Enhancement */
.image-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 30%, #f1f4f7 70%, #eaeff3 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(212, 175, 55, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.12);
    backdrop-filter: blur(5px);
}

.image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    background: linear-gradient(135deg, #fffef6 0%, #f6f2d8 30%, #ede4ab 70%, #e2d682 100%);
}

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

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

.image-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-card:hover .image-card-content {
    transform: translateY(0);
}

.image-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.image-card-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

/* Enhanced Team/Author Cards */
.team-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafb 30%, #f2f4f7 70%, #eaeff3 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 12px rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.12);
    backdrop-filter: blur(8px);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 8px 25px rgba(212, 175, 55, 0.18);
    border-color: #d4af37;
    background: linear-gradient(145deg, #fffef8 0%, #f7f3d8 30%, #ede6b5 70%, #e0d591 100%);
}

.team-card-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    background: 
        linear-gradient(135deg, #374151 0%, #1f2937 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><rect width="120" height="120" fill="%23374151"/><g fill="%23ffffff" opacity="0.9"><circle cx="60" cy="45" r="18" fill="none" stroke="%23ffffff" stroke-width="3"/><circle cx="60" cy="45" r="8"/><path d="M30 100c0-25 15-35 30-35s30 10 30 35" fill="none" stroke="%23ffffff" stroke-width="3"/><text x="60" y="115" text-anchor="middle" font-family="Arial, sans-serif" font-size="8" font-weight="bold" fill="%23ffffff">TROCAR TEAM</text></g></svg>') center/60% no-repeat;
}

.team-card-image img:not([src]),
.team-card-image img[src=""] {
    min-height: 200px;
}

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

.team-card-content {
    padding: 2rem 1.5rem;
}

.team-card-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.team-card-role {
    color: #d4af37;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-card-description {
    color: #666666;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Lazy loading support */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero-slide,
.background-slide,
.venue-slide {
    will-change: opacity, transform;
}

.gallery-item img,
.showcase-image img,
.thumbnail-item img {
    will-change: transform;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .gallery-overlay,
    .showcase-overlay {
        background: rgba(0, 0, 0, 0.95);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .scroll-to-top,
    .hero-controls,
    .gallery-overlay,
    .btn,
    .social-links {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .hero-content {
        color: #000000;
        background: #ffffff;
    }
}