/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevenir seleção de imagens */
img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    outline: none;
    border: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Permitir interação apenas em imagens específicas que precisam ser clicáveis */
.coverflow-image img,
.case-image img,
.gallery img {
    pointer-events: auto;
}

:root {
    /* Paleta Barrella - Vermelho, Amarelo e Preto */
    --primary-gradient: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    --secondary-gradient: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    --accent-gradient: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    --success-gradient: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    --warning-gradient: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    
    /* Cores Sólidas da Marca */
    --primary-color: #DC2626;
    --secondary-color: #B91C1C;
    --accent-color: #FCD34D;
    --success-color: #F59E0B;
    --warning-color: #FCD34D;
    --danger-color: #DC2626;
    
    /* Neutros da Marca - Tons Escuros */
    --dark: #0a0a0a;
    --dark-light: #000000;
    --dark-medium: #000000;
    --gray-900: #1a1a1a;
    --gray-800: #2d2d2d;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #737373;
    --gray-400: #a3a3a3;
    --gray-300: #d4d4d4;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    
    /* Sombras Modernas */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Transições */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
    
    /* Bordas */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 50px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    overflow-x: hidden;
    scroll-behavior: smooth;
    min-height: 100vh;
}

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

/* Navigation */

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.nav-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.nav-tagline {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

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

.nav-link {
    text-decoration: none;
    color: var(--gray-300);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #000000;
    overflow: hidden;
    padding-top: 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
}


.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 8rem 2rem 4rem;
}

.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.hero-logo-img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideInLeft 1s ease-out 0.8s both;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-300);
}

.hero-visual {
    animation: slideInRight 1s ease-out 0.4s both;
}


.hero-image-container {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.overlay-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0 0 0;
    background: var(--dark-medium);
}

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

.problem-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: none;
}

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

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.problem-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.problem-impact {
    background: var(--danger-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

/* Solutions Section */
.solutions-section {
    padding: 6rem 0;
    background: var(--dark-light);
}

.solutions-showcase {
    margin-bottom: 4rem;
}

.solution-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.solution-feature.reverse {
    direction: rtl;
}

.solution-feature.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background: var(--success-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-content p {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-300);
    font-weight: 500;
}

.feature-list i {
    color: var(--success-color);
    font-size: 0.875rem;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========================================
   LIGHTING DEMO - LÂMPADA INTERATIVA
======================================== */

.lighting-demo {
    width: 300px;
    height: 200px;
    background: var(--dark);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

/* Ícone da lâmpada no título */
.interactive-lightbulb {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-left: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.interactive-lightbulb:hover {
    transform: scale(1.1);
    color: var(--warning-color);
}

.interactive-lightbulb.lit {
    color: var(--warning-color);
    animation: lightbulbGlow 0.5s ease-out;
    text-shadow: 0 0 10px rgba(252, 211, 77, 0.8);
}

.interactive-lightbulb.lit:hover {
    transform: scale(1.2);
}

/* Efeito de fundo dourado para a seção */
.solutions-section {
    transition: all 0.8s ease-in-out;
}

.solutions-section.lit {
    background: linear-gradient(135deg, 
        rgba(252, 211, 77, 0.25) 0%, 
        rgba(252, 211, 77, 0.2) 50%, 
        rgba(252, 211, 77, 0.25) 100%);
    box-shadow: inset 0 0 150px rgba(252, 211, 77, 0.3);
}

.solutions-section.lit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(252, 211, 77, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.solutions-section.lit .container {
    position: relative;
    z-index: 2;
}

.solutions-section.lit .feature-list li {
    color: var(--gray-500);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(252, 211, 77, 0.3);
}

@keyframes lightbulbGlow {
    0% {
        box-shadow: var(--shadow-lg);
    }
    50% {
        box-shadow: 0 0 30px rgba(252, 211, 77, 1), var(--shadow-xl);
    }
    100% {
        box-shadow: 0 0 20px rgba(252, 211, 77, 0.8), var(--shadow-xl);
    }
}

.tech-demo {
    width: 300px;
    height: 200px;
    background: var(--dark);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.demo-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ai-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.analytics {
    display: flex;
    gap: 1rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.ar-demo {
    width: 200px;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ar-glasses {
    font-size: 4rem;
    color: var(--accent-color);
    z-index: 2;
}

.ar-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.effect-1, .effect-2, .effect-3 {
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.effect-1 {
    width: 100px;
    height: 100px;
    background: rgba(79, 172, 254, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.effect-2 {
    width: 150px;
    height: 150px;
    background: rgba(79, 172, 254, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.5s;
}

.effect-3 {
    width: 200px;
    height: 200px;
    background: rgba(79, 172, 254, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

/* ========================================
   DELIVERABLES HERO SECTION
======================================== */

.deliverables-hero-section {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-medium) 100%);
    padding: 4rem 0 4rem 0;
    margin: 0;
    position: relative;
    overflow: visible;
    border-radius: 0;
}

/* Seção SOLUÇÕES */
.solutions-header-section {
    background: #000000;
    padding: 3rem 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.solutions-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.solutions-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.solutions-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsivo para SOLUÇÕES */
@media (max-width: 768px) {
    .solutions-title {
        font-size: 2.5rem;
    }
    
    .solutions-subtitle {
        font-size: 1.1rem;
    }
    
    .solutions-header-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .solutions-title {
        font-size: 2rem;
    }
    
    .solutions-subtitle {
        font-size: 1rem;
    }
}

.deliverables-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.deliverables-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.deliverables-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.deliverables-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.deliverables-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.deliverables-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-full);
    transition: var(--transition-normal);
}

.deliverables-highlights .highlight-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.deliverables-highlights .highlight-item i {
    color: var(--success-color);
    font-size: 1rem;
}

/* ========================================
   SERVICES GLOBE SECTION
======================================== */

.services-globe-section {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-medium) 100%);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.services-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 3rem 0;
}

.globe-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    outline: none;
    border: none;
}

.globe-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.4;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    outline: none;
    border: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.services-orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
    padding: 3rem;
    pointer-events: none;
    z-index: 10;
}

/* Posicionamento específico para não tampar o centro (2/2 e 2/3) */
.service-item:nth-child(1) { grid-area: 1 / 1; } /* Top-left */
.service-item:nth-child(2) { grid-area: 1 / 2; } /* Top-center-left */
.service-item:nth-child(3) { grid-area: 1 / 3; } /* Top-center-right */
.service-item:nth-child(4) { grid-area: 1 / 4; } /* Top-right */
.service-item:nth-child(5) { grid-area: 2 / 1; } /* Middle-left */
.service-item:nth-child(6) { grid-area: 2 / 4; } /* Middle-right */
.service-item:nth-child(7) { grid-area: 3 / 1; } /* Bottom-left */
.service-item:nth-child(8) { grid-area: 3 / 2; } /* Bottom-center-left */
.service-item:nth-child(9) { grid-area: 3 / 3; } /* Bottom-center-right */
.service-item:nth-child(10) { grid-area: 3 / 4; } /* Bottom-right */

/* Área central (2/2 e 2/3) fica livre para o logo do globo */

.service-item {
    background: transparent;
    border-radius: var(--border-radius-lg);
    padding: 0.6rem;
    color: var(--white);
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: visible;
    max-width: 180px;
    margin: 0 auto;
    text-align: center;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item:hover {
    transform: scale(1.1);
    z-index: 20;
}


.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 0.75rem auto;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.service-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}


@keyframes serviceFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Services Globe */
@media (max-width: 768px) {
    .services-container {
        height: 500px;
    }
    
    .services-orbit {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 0.75rem;
        padding: 2rem;
    }
    
    /* Reorganizar para mobile - 3 colunas */
    .service-item:nth-child(1) { grid-area: 1 / 1; }
    .service-item:nth-child(2) { grid-area: 1 / 2; }
    .service-item:nth-child(3) { grid-area: 1 / 3; }
    .service-item:nth-child(4) { grid-area: 2 / 1; }
    .service-item:nth-child(5) { grid-area: 2 / 3; }
    .service-item:nth-child(6) { grid-area: 3 / 1; }
    .service-item:nth-child(7) { grid-area: 3 / 2; }
    .service-item:nth-child(8) { grid-area: 3 / 3; }
    .service-item:nth-child(9) { grid-area: 4 / 1; }
    .service-item:nth-child(10) { grid-area: 4 / 3; }
    
    .service-item {
        padding: 0.5rem;
        max-width: 150px;
        min-height: 90px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .service-content h4 {
        font-size: 0.8rem;
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .services-container {
        height: 450px;
    }
    
    .services-orbit {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        gap: 0.5rem;
        padding: 1.5rem;
    }
    
    /* Reorganizar para mobile pequeno - 2 colunas */
    .service-item:nth-child(1) { grid-area: 1 / 1; }
    .service-item:nth-child(2) { grid-area: 1 / 2; }
    .service-item:nth-child(3) { grid-area: 2 / 1; }
    .service-item:nth-child(4) { grid-area: 2 / 2; }
    .service-item:nth-child(5) { grid-area: 3 / 1; }
    .service-item:nth-child(6) { grid-area: 3 / 2; }
    .service-item:nth-child(7) { grid-area: 4 / 1; }
    .service-item:nth-child(8) { grid-area: 4 / 2; }
    .service-item:nth-child(9) { grid-area: 5 / 1; }
    .service-item:nth-child(10) { grid-area: 5 / 2; }
    
    .service-item {
        padding: 0.4rem;
        max-width: 120px;
        min-height: 80px;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .service-content h4 {
        font-size: 0.7rem;
        line-height: 1.0;
    }
}

/* ========================================
   DELIVERABLES SHOWCASE (LEGACY - HIDDEN)
======================================== */

.deliverables-showcase {
    display: none;
}

.deliverables-grid {
    display: none;
}

.deliverable-card {
    background: var(--dark-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--gray-800);
    overflow: hidden;
    position: relative;
}

.deliverable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.deliverable-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-color);
}

.deliverable-card.premium {
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(252, 211, 77, 0.2);
    position: relative;
}

.deliverable-card.premium::before {
    background: var(--primary-gradient);
    transform: scaleX(1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 2rem 1rem;
    position: relative;
}

.deliverable-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.deliverable-card:hover .deliverable-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.deliverable-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

/* Animação para o ícone de sonorização na seção principal */
.ar-glasses i.fa-volume-up {
    animation: soundPulse 2s ease-in-out infinite;
}

@keyframes soundPulse {
    0%, 100% {
        transform: scale(1);
        color: var(--accent-color);
    }
    50% {
        transform: scale(1.1);
        color: var(--white);
    }
}

.card-badge {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.deliverable-card h4 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 2rem 1rem;
    line-height: 1.3;
}

.deliverable-card p {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 2rem 1.5rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 2rem 1.5rem;
}

.feature-tag {
    background: var(--dark-medium);
    color: var(--accent-color);
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(252, 211, 77, 0.2);
    transition: var(--transition-fast);
}

.feature-tag:hover {
    background: var(--accent-color);
    color: var(--dark);
    transform: translateY(-1px);
}


/* ========================================
   DELIVERABLES SUMMARY
======================================== */

.deliverables-summary {
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding: 3rem 0 6rem 0;
}

.summary-card {
    background: #2a2a2a;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-2xl);
    border: none;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.summary-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.summary-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.summary-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.summary-content {
    padding: 0 2rem 2rem;
}

.benefits-list {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-800);
    transition: var(--transition-fast);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item:hover {
    transform: translateX(5px);
    color: var(--accent-color);
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.summary-cta .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-xl);
}

.summary-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

/* ========================================
   RESPONSIVE DESIGN FOR DELIVERABLES
======================================== */

@media (max-width: 768px) {
    .deliverables-title {
        font-size: 2.25rem;
    }
    
    .deliverables-subtitle {
        font-size: 1.125rem;
    }
    
    .deliverables-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .deliverable-card h4 {
        font-size: 1.25rem;
    }
    
    .card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .deliverable-card h4,
    .deliverable-card p,
    .card-features {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
    
    
    .summary-card {
        margin: 0 1rem;
    }
    
    .summary-header,
    .summary-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .deliverables-hero-content {
        padding: 0 1rem;
    }
    
    .deliverables-title {
        font-size: 1.875rem;
    }
    
    .deliverables-subtitle {
        font-size: 1rem;
    }
    
    .deliverables-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .deliverable-icon {
        width: 60px;
        height: 60px;
    }
    
    .deliverable-icon i {
        font-size: 1.5rem;
    }
    
    .card-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }
    
    .deliverable-card h4,
    .deliverable-card p,
    .card-features {
        margin-left: 1.25rem;
        margin-right: 1.25rem;
    }
    
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Cases Section */
.cases-section {
    padding: 6rem 0;
    background: var(--dark);
    color: var(--white);
}

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

.cases-section .section-subtitle {
    color: var(--gray-400);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.case-card {
    background: var(--dark-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

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

.case-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

/* Gallery inside case image */
.case-image.gallery {
    display: grid;
    position: relative;
}
.case-image.gallery img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.case-image.gallery img.active {
    opacity: 1;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
}
.gallery-nav i { pointer-events: none; }
.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }
.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
    pointer-events: auto;
}
.gallery-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
}
.gallery-dots .dot.active { background: #fff; }

/* Label overlay for first image */
.gallery-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 5;
    pointer-events: none;
}

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

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.case-card:hover .case-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.play-btn:hover {
    transform: scale(1.1);
}

.case-content {
    padding: 2rem;
    background: #2a2a2a;
}

.case-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.case-content p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.case-results {
    display: flex;
    gap: 1rem;
}

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

.result-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #FCD34D;
}

.result-label {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Authority Section */
.authority-section {
    padding: 6rem 0;
    background: var(--dark-light);
}

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

.authority-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.authority-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.authority-description {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
}

.authority-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--dark-medium);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--gray-800);
    transition: var(--transition-normal);
}

.highlight-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 40px;
    text-align: center;
}

.highlight-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.highlight-content p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

.authority-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.authority-image-container {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.authority-image {
    width: 100%;
    height: auto;
    display: block;
}

.authority-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Remove efeitos de hover no vídeo */
.authority-video:hover {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
}

.authority-image-container:hover .authority-video {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
}

/* Video Overlay e Botão de Play Customizado */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button-container {
    text-align: center;
    color: var(--white);
}

.custom-play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e53e3e 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.custom-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
    background: linear-gradient(135deg, #e53e3e 0%, var(--primary-color) 100%);
}

.play-icon {
    font-size: 1.8rem;
    color: var(--white);
    z-index: 2;
    position: relative;
    margin-left: 3px; /* Ajuste visual para centralizar o ícone */
}

.play-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.custom-play-button:hover .play-ripple {
    width: 100px;
    height: 100px;
}

.video-title h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-title p {
    font-size: 1rem;
    color: var(--gray-200);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Animação pulsante para chamar atenção */
@keyframes play-pulse {
    0% {
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.8), 0 0 0 10px rgba(220, 38, 38, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    }
}

.custom-play-button {
    animation: play-pulse 2s infinite;
}

.custom-play-button:hover {
    animation: none;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        font-size: 1.4rem;
        margin-left: 2px;
    }
    
    .video-title h4 {
        font-size: 1.25rem;
    }
    
    .video-title p {
        font-size: 0.9rem;
    }
}

.authority-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
}

.overlay-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.overlay-stats .stat {
    text-align: center;
}

.overlay-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.overlay-stats .stat-label {
    font-size: 0.875rem;
    color: var(--white);
}

/* Interactive Timeline Section */
.timeline-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-medium) 100%);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(252, 211, 77, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-track {
    display: flex;
    gap: 2rem;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2rem 0;
}

.timeline-item {
    flex: 0 0 350px;
    position: relative;
    opacity: 0.6;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item.active {
    opacity: 1;
    transform: scale(1);
}

.timeline-marker {
    position: relative;
    margin-bottom: 2rem;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(252, 211, 77, 0.5);
    transition: all 0.3s ease;
}

.timeline-item.active .marker-dot {
    transform: scale(1.3);
    box-shadow: 0 0 30px rgba(252, 211, 77, 0.8);
}

.marker-line {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    z-index: 1;
}

.timeline-content {
    background: var(--dark-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-800);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.timeline-item.active .timeline-content::before {
    transform: scaleX(1);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-stats {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.timeline-stats .stat {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.timeline-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.timeline-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--dark-medium);
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.timeline-btn:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.1);
}

.timeline-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.timeline-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(252, 211, 77, 0.6);
}

.timeline-dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Media Carousel Section */
.media-carousel-section {
    padding: 6rem 0;
    background: var(--dark-medium);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
}

.carousel-item {
    flex: 0 0 300px;
}

.media-item {
    position: relative;
    height: 200px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.media-item:hover .media-overlay {
    opacity: 1;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-normal);
    pointer-events: auto;
    box-shadow: var(--shadow-lg);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.carousel-btn.prev {
    margin-left: -25px;
}

.carousel-btn.next {
    margin-right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary-color);
}

.dot:hover {
    background: var(--accent-color);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--dark-medium);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    border: none;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.benefit-highlight {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--dark-light);
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-300);
}

.contact-feature i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.contact-form {
    background: var(--dark-medium);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-800);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-300);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-700);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--dark-light);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.form-submit {
    width: 100%;
    justify-content: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--dark-medium);
}

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

.testimonial-card {
    background: var(--dark-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-800);
}

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--warning-color);
    font-size: 0.875rem;
}

.testimonial-content p {
    color: var(--gray-300);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Urgency Section */
.urgency-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: var(--white);
    text-align: center;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.urgency-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.urgency-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.timer-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    min-width: 100px;
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FCD34D;
}

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

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--dark-light);
}

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

.faq-item {
    background: var(--dark-light);
    margin-bottom: 1rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid var(--gray-800);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--dark-medium);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray-300);
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FCD34D;
    margin-bottom: 0.5rem;
}

.footer-logo-text p {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.footer-year {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.footer-contact h4,
.footer-social h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FCD34D;
}

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

.footer-contact p {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-400);
}

.mrit-credit {
    margin-top: 0.5rem;
}

.mrit-credit a {
    color: #FCD34D;
    text-decoration: none;
    font-weight: 600;
}

.mrit-credit a:hover {
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 7rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.back-to-top:active {
    transform: translateY(-1px);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    z-index: 9999 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-normal);
}

.whatsapp-button:hover::before {
    opacity: 1;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
}

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

/* Animação pulsante para chamar atenção */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button {
    animation: whatsapp-pulse 2s infinite;
}

/* Garantir que o botão seja sempre visível */
.whatsapp-button {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Manter botão sempre no topo */
.whatsapp-button {
    position: fixed !important;
    z-index: 99999 !important;
}

/* Debug - garantir visibilidade */
.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border: 2px solid #fff !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}


@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 6rem 1rem 2rem;
    }

    .hero-logo-img {
        max-width: 150px;
    }

    /* Otimizações para números no mobile */
    .stat-number, .result-number {
        will-change: transform;
        backface-visibility: hidden;
        transform: translateZ(0);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .solution-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .urgency-timer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timer-item {
        min-width: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .urgency-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .problems-grid,
    .deliverables-grid,
    .benefits-grid,
    .cases-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        bottom: 6.5rem;
        right: 1.25rem;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 1.25rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-tooltip {
        right: 65px;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .authority-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .authority-title {
        font-size: 2rem;
    }
    
    .authority-highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 0.75rem;
    }
    
    .overlay-stats {
        gap: 2rem;
    }
    
    .overlay-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .carousel-item {
        flex: 0 0 250px;
    }
    
    .media-item {
        height: 150px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        margin-left: -20px;
    }
    
    .carousel-btn.next {
        margin-right: -20px;
    }
}

/* Scroll Animations */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Form States */
.form-success {
    background: var(--success-gradient);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.form-error {
    background: var(--danger-color);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.field-error {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.admin-button:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ========================================
   FEIRAS COVERFLOW SECTION
======================================== */

.feiras-coverflow-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
}

.feiras-coverflow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.coverflow-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.coverflow-container.paused::after {
    content: '⏸️ Auto-play pausado';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 100;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.coverflow-wrapper {
    position: relative;
    height: 500px;
    perspective: 1000px;
    perspective-origin: center center;
    overflow: hidden;
}

.coverflow-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.coverflow-item {
    position: absolute;
    width: 300px;
    height: 400px;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -200px;
    transform-style: preserve-3d;
    transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
}

.coverflow-item:nth-child(1) { transform: translateX(-700px) translateZ(400px) rotateY(55deg); }
.coverflow-item:nth-child(2) { transform: translateX(-350px) translateZ(200px) rotateY(40deg); }
.coverflow-item:nth-child(3) { transform: translateX(0px) translateZ(0px) rotateY(0deg); }
.coverflow-item:nth-child(4) { transform: translateX(350px) translateZ(200px) rotateY(-40deg); }
.coverflow-item:nth-child(5) { transform: translateX(700px) translateZ(400px) rotateY(-55deg); }
.coverflow-item:nth-child(6) { transform: translateX(1050px) translateZ(600px) rotateY(-70deg); }

.coverflow-item.active {
    transform: translateX(0px) translateZ(0px) rotateY(0deg) scale(1.1);
    z-index: 10;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
    opacity: 1;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3), 0 0 60px rgba(220, 38, 38, 0.1);
}

.coverflow-item:not(.active) {
    filter: brightness(0.4) contrast(0.8);
    opacity: 0.7;
}

.coverflow-item:not(.active):hover {
    filter: brightness(0.6) contrast(0.9);
    opacity: 0.8;
}

.coverflow-item:hover:not(.active) {
    transform: translateX(var(--translateX, 0px)) translateZ(var(--translateZ, 0px)) rotateY(var(--rotation, 0deg)) scale(1.05);
}

.coverflow-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: rotateY(0deg);
    transition: all 0.3s ease;
}

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

.coverflow-item:hover .coverflow-image img {
    transform: scale(1.1);
}

.coverflow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--border-radius-lg);
}

.coverflow-item:hover .coverflow-overlay {
    opacity: 1;
}

.feira-badge {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-lg);
}

.expand-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.expand-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
}

.coverflow-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.coverflow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.coverflow-btn:hover {
    background: var(--primary-gradient);
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.coverflow-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    gap: 2rem;
}

.feira-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.current-feira {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.feira-description {
    font-size: 0.875rem;
    color: var(--gray-300);
    line-height: 1.5;
    margin: 0;
    max-width: 500px;
}

.coverflow-counter {
    font-size: 1rem;
    color: var(--gray-300);
    font-weight: 500;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 0.25rem;
}

/* Responsive Design for Coverflow */
@media (max-width: 768px) {
    .coverflow-wrapper {
        height: 400px;
        perspective: 800px;
    }
    
    .coverflow-item {
        width: 250px;
        height: 320px;
        margin-left: -125px;
        margin-top: -160px;
    }
    
    .coverflow-item:nth-child(1) { transform: translateX(-560px) translateZ(280px) rotateY(55deg); }
    .coverflow-item:nth-child(2) { transform: translateX(-280px) translateZ(140px) rotateY(40deg); }
    .coverflow-item:nth-child(3) { transform: translateX(0px) translateZ(0px) rotateY(0deg); }
    .coverflow-item:nth-child(4) { transform: translateX(280px) translateZ(140px) rotateY(-40deg); }
    .coverflow-item:nth-child(5) { transform: translateX(560px) translateZ(280px) rotateY(-55deg); }
    .coverflow-item:nth-child(6) { transform: translateX(840px) translateZ(420px) rotateY(-70deg); }
    
    .coverflow-overlay {
        padding: 1rem;
    }
    
    .feira-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .coverflow-info {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
        padding: 1rem;
    }
    
    .feira-info {
        gap: 0.25rem;
    }
    
    .feira-description {
        font-size: 0.8rem;
        max-width: 100%;
    }
    
    .coverflow-counter {
        align-self: flex-end;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .coverflow-wrapper {
        height: 350px;
        perspective: 600px;
    }
    
    .coverflow-item {
        width: 200px;
        height: 280px;
        margin-left: -100px;
        margin-top: -140px;
    }
    
    .coverflow-container {
        padding: 0 1rem;
    }
    
    .coverflow-controls {
        margin-top: 1.5rem;
    }
    
    .coverflow-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .coverflow-item:nth-child(1) { transform: translateX(-400px) translateZ(200px) rotateY(55deg); }
    .coverflow-item:nth-child(2) { transform: translateX(-200px) translateZ(100px) rotateY(40deg); }
    .coverflow-item:nth-child(3) { transform: translateX(0px) translateZ(0px) rotateY(0deg); }
    .coverflow-item:nth-child(4) { transform: translateX(200px) translateZ(100px) rotateY(-40deg); }
    .coverflow-item:nth-child(5) { transform: translateX(400px) translateZ(200px) rotateY(-55deg); }
    .coverflow-item:nth-child(6) { transform: translateX(600px) translateZ(300px) rotateY(-70deg); }
}

/* ========================================
   IMAGE EXPANSION MODAL
======================================== */

.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.image-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--dark-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.modal-close:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.modal-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.modal-image-container img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.modal-info {
    padding: 2rem;
    background: var(--dark-light);
    border-top: 1px solid var(--gray-700);
}

.modal-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-info p {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.6;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .image-modal {
        padding: 1rem;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-image-container img {
        max-height: 60vh;
    }
    
    .modal-info {
        padding: 1.5rem;
    }
    
    .modal-info h3 {
        font-size: 1.25rem;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ========================================
   WHY CHOOSE SECTION - DESIGN MODERNO
   ======================================== */

.why-choose-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(252, 211, 77, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-content {
    position: relative;
    z-index: 2;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 5rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.why-choose-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.why-choose-title .gradient-text {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-choose-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.why-choose-visual {
    position: relative;
}

.visual-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: var(--dark-light);
}

.why-choose-image {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.visual-container:hover .why-choose-image {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 1rem;
    color: var(--gray-300);
}

.benefit-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(252, 211, 77, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(220, 38, 38, 0.2);
}

.benefit-card-modern:hover::before {
    opacity: 1;
}

.benefit-icon-modern {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.icon-bg {
    width: 4rem;
    height: 4rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.icon-bg i {
    font-size: 1.5rem;
    color: var(--white);
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.benefit-content-modern {
    text-align: center;
    position: relative;
    z-index: 2;
}

.benefit-content-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-content-modern p {
    font-size: 1rem;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-highlight {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Card Especial */
.cta-card {
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 2rem;
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    display: none;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-card .btn-primary-modern {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    font-weight: 700;
}

.cta-card .btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
}

.btn-primary-modern {
    position: relative;
    background: var(--primary-gradient);
    border: none;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-modern:hover .btn-glow {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 4rem 0;
    }
    
    .why-choose-title {
        font-size: 2.5rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card-modern {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .why-choose-title {
        font-size: 2rem;
    }
    
    .benefit-card-modern {
        padding: 1.5rem;
    }
    
    .benefit-content-modern h3 {
        font-size: 1.25rem;
    }
    
    .btn-primary-modern {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}