:root {
    /* Cores da Identidade Visual */
    --primary: #025fb1;
    --primary-light: #1a73c2;
    --primary-dark: #014a8f;
    --primary-darker: #013a6d;

    --secondary: #b8babc;
    --secondary-light: #d0d2d4;
    --secondary-dark: #9fa1a3;
    --secondary-darker: #868a8c;

    /* Cores de Apoio */
    --accent: #0078d4;
    --success: #107c10;
    --warning: #ff8c00;
    --error: #d13438;
    --info: #0078d4;

    /* Gradientes com Identidade Visual */
    --gradient-primary: linear-gradient(135deg, #025fb1 0%, #014a8f 100%);
    --gradient-primary-soft: linear-gradient(135deg, #025fb1 0%, #1a73c2 100%);
    --gradient-secondary: linear-gradient(135deg, #b8babc 0%, #9fa1a3 100%);
    --gradient-hero: linear-gradient(135deg, #025fb1 0%, #1a73c2 50%, #b8babc 100%);
    --gradient-glass: linear-gradient(135deg, rgba(2, 95, 177, 0.1) 0%, rgba(2, 95, 177, 0.05) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);

    /* Cores de Texto */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --text-on-primary: #ffffff;
    --text-on-secondary: #1a1a1a;

    /* Superfícies */
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --surface-secondary: #f1f3f4;
    --surface-dark: #1f2937;
    --surface-primary: #025fb1;
    --surface-accent: rgba(2, 95, 177, 0.05);

    /* Bordas */
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --border-primary: rgba(2, 95, 177, 0.2);
    --border-secondary: rgba(184, 186, 188, 0.3);

    /* Sombras com Cor da Marca */
    --shadow-sm: 0 1px 2px 0 rgba(2, 95, 177, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(2, 95, 177, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(2, 95, 177, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(2, 95, 177, 0.15);
    --shadow-2xl: 0 25px 50px -12px rgba(2, 95, 177, 0.25);
    --shadow-primary: 0 10px 30px rgba(2, 95, 177, 0.3);
    --shadow-secondary: 0 5px 15px rgba(184, 186, 188, 0.2);

    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Raios de Borda */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Tipografia */
    --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Header Moderno com Glassmorphism */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-scrolled {
    background: rgba(232, 230, 230, 0.95);
    box-shadow: var(--shadow-xl);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Navegação Moderna */
nav {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

nav a,
nav a.nav-link {
    background: linear-gradient(135deg, #025fb1 0%, #1a73c2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
}

nav a::before,
nav a.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::before,
nav a.nav-link:hover::before {
    width: 80%;
}

/* CTA Button - Contato */
nav a.nav-cta {
    background: linear-gradient(135deg, #025fb1 0%, #1a73c2 100%);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a.nav-cta::before {
    display: none;
}

nav a.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #014a8f 0%, #025fb1 100%);
}

/* Menu Mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: background 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(2, 95, 177, 0.1);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section Modernizada */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* ===== Hero Carousel ===== */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide .hero-bg-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 95, 177, 0.85) 0%, rgba(1, 74, 143, 0.85) 50%, rgba(184, 186, 188, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-slide .hero-container {
    position: relative;
    z-index: 2;
}

/* Carousel Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
    left: 24px;
}

.hero-arrow-next {
    right: 24px;
}

/* Carousel Dots */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: #fff;
}

.hero-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

/* Slide content animations */
.hero-slide .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-track {
        transition: none;
    }
    .hero-slide .hero-content {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .hero-dot {
        transition: none;
    }
    .hero-arrow {
        transition: none;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
    animation: heroFloat 20s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 100px var(--space-xl) 0 var(--space-xl);
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: var(--space-xl);
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #FFD700;
    font-size: 1rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    animation: starGlow 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes starGlow {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    }
    50% { 
        opacity: 0.85;
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--space-xl);
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* Botões Modernos */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(184, 186, 188, 0.1);
    color: white;
    border: 2px solid rgba(184, 186, 188, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(184, 186, 188, 0.2);
    border-color: rgba(184, 186, 188, 0.5);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: rgba(184, 186, 188, 0.2);
    border-color: rgba(184, 186, 188, 0.5);
    transform: translateY(-2px);
}

/* Seções */
.section {
    padding: var(--space-3xl) var(--space-xl);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about {
    background: var(--surface-alt);
    position: relative;
}

.about::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(2,95,177,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
    color: var(--primary);
    line-height: 1.3;
}

.about-text p {
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-primary);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-secondary);
}

.feature-text {
    font-weight: 600;
    color: #111827;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    background: var(--gradient-hero);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 10s ease-in-out infinite;
}

/* Products Section */
.products {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--space-xl);
}

.product-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.product-card:hover::after {
    animation: shine 0.6s ease-in-out;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.product-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: #111827;
    line-height: 1.3;
}

.product-card p {
    color: #111827;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    font-size: 1rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
    position: relative;
}

.product-link:hover {
    gap: var(--space-md);
    color: var(--primary-dark);
    text-decoration: underline;
}

.product-link:active {
    transform: scale(0.98);
}

/* Contact Section */
.contact {
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::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="contactPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23contactPattern)"/></svg>');
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
    line-height: 1.3;
}

.contact-info p {
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    font-size: 1.125rem;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(2, 95, 177, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(2, 95, 177, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(2, 95, 177, 0.15);
    transform: translateX(10px);
    border-color: var(--primary);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--text-on-primary);
    box-shadow: var(--shadow-secondary);
}

.contact-details strong {
    display: block;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

/* Formulário Moderno */
.form-container {
    background: rgba(2, 95, 177, 0.1);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(2, 95, 177, 0.2);
    box-shadow: var(--shadow-xl);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-lg);
    border: 1px solid rgba(2, 95, 177, 0.3);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(184, 186, 188, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

/* Corrige contraste das opções do select */
.form-group select option {
    background: #025fb1;
    color: white;
}

.form-group input.valid {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(16, 124, 16, 0.2);
}

.form-group input.invalid {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(209, 52, 56, 0.2);
}

.form-error {
    color: #fca5a5;
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.btn-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-xl);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Blog Section */
.blog {
    background: #f8f9fa;
    position: relative;
}

.blog::before {
    display: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.blog-card {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-secondary);
}

.blog-content {
    padding: var(--space-xl);
}

.blog-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: #111827;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--primary);
}

.blog-content p {
    color: #1f2937;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: var(--space-md);
    color: var(--primary-dark);
}

.blog-cta {
    text-align: center;
    margin-top: var(--space-3xl);
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials {
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(2, 95, 177, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 186, 188, 0.05) 0%, transparent 50%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-3xl);
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-content {
    margin-bottom: var(--space-xl);
    position: relative;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    position: relative;
    box-shadow: var(--shadow-secondary);
}

.quote-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: var(--radius-xl);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #1f2937;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-secondary);
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: var(--space-xs);
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #fbbf24;
    font-size: 0.875rem;
}

/* Statistics */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
}

.testimonials-stats::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 15s ease-in-out infinite;
}

.stat-item {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    background: linear-gradient(45deg, #ffffff, rgba(184, 186, 188, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Section */
.video-section {
    background: var(--surface-alt);
    position: relative;
}

.video-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="videoPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(2,95,177,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23videoPattern)"/></svg>');
}

.video-main {
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: #000;
    transition: all 0.4s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(2, 95, 177, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(184, 186, 188, 0.3);
    z-index: 3;
    box-shadow: var(--shadow-primary);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
    box-shadow: var(--shadow-xl);
}

.play-button i {
    margin-left: 4px;
}

.video-iframe-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-2xl);
}

.video-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-secondary);
}

.feature-item .feature-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: var(--space-sm);
}

.feature-item .feature-content p {
    color: #374151;
    line-height: 1.6;
}

.video-cta {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: var(--space-3xl) auto 0 auto !important;
}

.video-cta h3 {
    text-align: center !important;
    margin: 0 auto var(--space-lg) auto !important;
    display: block !important;
}

.video-cta p {
    text-align: center !important;
    margin: 0 auto var(--space-xl) auto !important;
    display: block !important;
    max-width: 600px !important;
}

.video-cta .cta-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: var(--space-lg) !important;
    margin: 0 auto !important;
    width: 100% !important;
    text-align: center !important;
    flex-wrap: wrap !important;
}

.video-cta .btn {
    margin: 0 !important;
    float: none !important;
    display: inline-flex !important;
    text-align: center !important;
}

section.video-section .video-cta .cta-buttons {
    justify-content: center !important;
    text-align: center !important;
    display: flex !important;
}

section.video-section .video-cta {
    text-align: center !important;
}

/* Footer */
footer {
    background: var(--surface-dark);
    color: white;
    padding: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    padding: var(--space-3xl) var(--space-xl);
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-light);
}

.footer-slogan {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #00d4ff !important;
    opacity: 1 !important;
    margin-top: var(--space-lg) !important;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
}

.footer-social {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-2xl) var(--space-xl);
}

.social-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.social-container h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
    color: white;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    justify-content: center;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    color: white;
}

.social-btn.facebook:hover {
    background: linear-gradient(135deg, #166fe5 0%, #1976d2 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
    color: white;
}

.social-btn.instagram:hover {
    background: linear-gradient(135deg, #d73447 0%, #e91e63 50%, #ff9800 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

.social-btn.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%);
    color: white;
}

.social-btn.youtube:hover {
    background: linear-gradient(135deg, #cc0000 0%, #d32f2f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.social-btn.whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #0d7377 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.social-btn.linkedin {
    background: linear-gradient(135deg, #0a66c2 0%, #0d47a1 100%);
    color: white;
}

.social-btn.linkedin:hover {
    background: linear-gradient(135deg, #084d96 0%, #0a3566 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 102, 194, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-xl);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.2);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover::before {
    transform: scale(1);
}

/* Notification System */
.notification {
    position: fixed;
    top: var(--space-xl);
    right: var(--space-xl);
    background: white;
    color: var(--text-primary);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--success);
    z-index: 1001;
    transform: translateX(calc(100% + 40px));
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    border-left-color: var(--error);
}

.notification.warning {
    border-left-color: var(--warning);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes 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);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Testimonial Animations */
.testimonial-card.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:nth-child(1) {
    transition-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    transition-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    transition-delay: 0.3s;
}

.testimonial-card:nth-child(4) {
    transition-delay: 0.4s;
}

.testimonial-card:nth-child(5) {
    transition-delay: 0.5s;
}

.testimonial-card:nth-child(6) {
    transition-delay: 0.6s;
}

.testimonial-card:hover .quote-icon {
    transform: scale(1.1) rotate(5deg);
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.05);
}

.stat-item.visible .stat-number {
    animation: countUp 0.8s ease-out;
}

.social-btn {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.social-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.social-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.social-btn:nth-child(3) {
    animation-delay: 0.3s;
}

.social-btn:nth-child(4) {
    animation-delay: 0.4s;
}

/* Video Loading */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

.video-loading i {
    animation: spin 1s linear infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: var(--space-md) var(--space-lg);
    }

    .hero-container,
    .container {
        padding: 0 var(--space-lg);
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .video-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .video-features {
        flex-direction: row;
        overflow-x: auto;
        gap: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .feature-highlight {
        min-width: 300px;
        flex-shrink: 0;
    }

    nav {
        gap: var(--space-lg);
    }

    nav a {
        font-size: 0.9rem;
        padding: var(--space-sm) var(--space-md);

    }
}

@media (max-width: 900px) {
    nav {
        gap: var(--space-md);
    }

    nav a {
        font-size: 0.85rem;
        padding: var(--space-xs) var(--space-sm);
    }
}

@media (max-width: 768px) {
    header nav {
        position: fixed !important;
        top: 72px !important;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column !important;
        padding: 0 !important;
        gap: 0 !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border-top: 1px solid var(--border-light);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        visibility: hidden !important;
        z-index: 999;
        transform: translateY(-10px) !important;
        display: flex !important;
    }

    header nav.active {
        max-height: 500px !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: var(--space-xl) !important;
        gap: var(--space-lg) !important;
        transform: translateY(0) !important;
    }
    
    header nav a,
    header nav a.nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-md) !important;
        background: none;
        -webkit-text-fill-color: var(--primary);
        border-bottom: 1px solid var(--border-light);
    }
    
    header nav a.nav-cta {
        width: 100%;
        text-align: center;
        -webkit-text-fill-color: white;
        border-bottom: none;
    }

    .nav-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    /* Carousel mobile */
    .hero-arrow {
        display: none;
    }

    .hero-dots {
        bottom: 20px;
        gap: 10px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .section {
        padding: var(--space-2xl) var(--space-md);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        bottom: var(--space-lg);
        right: var(--space-lg);
    }

    .about-image {
        height: 300px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: var(--space-lg);
    }

    .blog-meta {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
        padding: var(--space-lg);
    }

    .stat-number {
        font-size: 2rem;
    }

    .video-features {
        flex-direction: column;
        overflow-x: visible;
    }

    .feature-highlight {
        min-width: auto;
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .video-overlay {
        padding: var(--space-lg);
    }

    .cta-content {
        padding: var(--space-xl);
    }

    .video-cta .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }

    .video-cta .btn {
        width: 100% !important;
        max-width: 250px !important;
        justify-content: center !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: var(--space-2xl) var(--space-lg);
    }

    .footer-social {
        padding: var(--space-xl) var(--space-lg);
    }

    .social-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
        max-width: 300px;
        margin: 0 auto;
    }

    .social-btn {
        min-width: auto;
        padding: var(--space-sm) var(--space-md);
    }

    .social-btn span {
        display: none;
    }

    .social-btn i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {

    .hero-container,
    .container {
        padding: 0 var(--space-md);
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-md);
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: var(--space-lg);
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }

    .about-image {
        height: 250px;
    }

    .testimonials-stats {
        grid-template-columns: 1fr;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .video-overlay {
        position: static;
        transform: none;
        background: rgba(0, 0, 0, 0.8);
        margin-top: -4px;
    }

    .video-info h3 {
        font-size: 1.25rem;
    }

    .social-buttons {
        grid-template-columns: 1fr;
        max-width: 200px;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --surface: #1f2937;
        --surface-alt: #111827;
        --text-primary: #f9fafb;
        --text-secondary: #d1d5db;
        --border-light: #374151;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }

    .product-card {
        border: 2px solid var(--border-medium);
    }
}

/* ===== CLIENTS LOGOS SECTION ===== */
.clients-logos {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.clients-logos::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.clients-logos .container {
    position: relative;
    z-index: 2;
}

.clients-logos .section-title {
    color: #1e293b;
    margin-bottom: 12px;
}

.clients-logos .section-subtitle {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 60px;
}

.logos-container {
    max-width: 1000px;
    margin: 0 auto;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
    justify-items: center;
}

.logo-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.logo-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.logo-item:hover::before {
    left: 100%;
}

.logo-item img {
    width: 100%;
    height: auto;
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0%) opacity(0.9);
    transition: all 0.4s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Stats dos Clientes */
.clients-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.stat-highlight {
    text-align: center;
    position: relative;
}

.stat-highlight .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #0066cc, #004499);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-highlight .stat-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .clients-logos {
        padding: 60px 0;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .logo-item {
        padding: 20px;
        max-width: none;
    }
    
    .clients-stats {
        gap: 30px;
    }
    
    .stat-highlight .stat-number {
        font-size: 2rem;
    }
    
    .clients-logos .section-subtitle {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .logo-item {
        padding: 24px;
        aspect-ratio: 2/1;
    }
    
    .clients-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===== MAPA NA SEÇÃO CONTACT ===== */
.map-container {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.map-container:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.map-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.map-header i {
    color: #ffd700;
    font-size: 1.2rem;
}

.map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    position: relative;
}

.map-embed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 1;
}

.map-embed iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 12px;
    filter: contrast(1.1) saturate(1.2);
}

.map-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.map-btn {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.map-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.map-btn i {
    font-size: 1rem;
    opacity: 0.9;
}

.map-btn:first-child {
    background: linear-gradient(135deg, #0066cc, #004499);
    border-color: #0066cc;
}

.map-btn:first-child:hover {
    background: linear-gradient(135deg, #0052a3, #003366);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .map-container {
        margin-top: 30px;
        padding: 20px;
    }
    
    .map-embed iframe {
        height: 180px;
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .map-btn {
        min-width: auto;
        flex: none;
    }
}

@media (max-width: 480px) {
    .map-container {
        padding: 16px;
    }
    
    .map-embed iframe {
        height: 160px;
    }
    
    .map-header {
        font-size: 1rem;
    }
}

/* ===== FAQ SECTION ===== */
.faq {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
}

.faq::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="faq-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-grid)"/></svg>');
    opacity: 0.4;
}

.faq .container {
    position: relative;
    z-index: 2;
}

/* Categorias do FAQ */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-category {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.faq-category:hover,
.faq-category.active {
    background: #0066cc;
    border-color: #0066cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Container das categorias */
.faq-category-content {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-content.active {
    display: block;
}

/* Items do FAQ */
.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.faq-question h4 {
    margin: 0;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
    line-height: 1.4;
}

.faq-question i {
    color: #0066cc;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 30px;
    max-height: 2000px;
}

.faq-answer p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.faq-answer li {
    padding: 8px 0;
    color: #475569;
    position: relative;
    padding-left: 25px;
}

.faq-answer li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* ROI Calculation */
.roi-calculation {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #0066cc;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.roi-item:last-child {
    border-bottom: none;
}

.roi-label {
    font-weight: 600;
    color: #1e293b;
}

.roi-value {
    color: #0066cc;
    font-weight: 600;
}

.roi-result {
    text-align: center;
    margin-top: 15px;
    padding: 12px;
    background: #0066cc;
    color: white;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* Comparison Table */
.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.comparison-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.comparison-item h5 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Investment Packages */
.investment-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.package {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.package.featured {
    border-color: #0066cc;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.package.featured::before {
    content: '🏆 MAIS VENDIDO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0066cc;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.package h5 {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.package ul {
    text-align: left;
    margin-bottom: 20px;
}

.package-roi {
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Financing Options */
.financing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.financing-item {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #bae6fd;
}

.financing-item h5 {
    color: #0066cc;
    margin-bottom: 10px;
}

.financing-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
}

/* Warranty Details */
.warranty-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.warranty-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #10b981;
}

.warranty-item h5 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.warranty-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    margin: 20px 0;
}

/* Training Benefits */
.training-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.training-item {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #bae6fd;
}

.training-item h5 {
    color: #0066cc;
    margin-bottom: 10px;
}

.success-story {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #10b981;
    margin: 20px 0;
    font-style: italic;
}

/* Support Timeline */
.support-timeline {
    margin: 25px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
}

.timeline-time {
    background: #0066cc;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
    margin-right: 20px;
}

.timeline-content h5 {
    margin-bottom: 5px;
    color: #1e293b;
}

.support-guarantee {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    margin: 20px 0;
    text-align: center;
}

/* Delivery Zones */
.delivery-zones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.zone {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #bae6fd;
}

.zone h5 {
    color: #0066cc;
    margin-bottom: 10px;
}

.delivery-includes {
    background: #f0fdf4;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #10b981;
    margin: 20px 0;
}

.delivery-includes h5 {
    color: #166534;
    margin-bottom: 15px;
}

/* Showroom Benefits */
.showroom-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.benefit-item {
    background: #fefce8;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #eab308;
}

.benefit-item h5 {
    color: #a16207;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.showroom-info {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

/* Demo Service */
.demo-service {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.demo-item {
    background: #f0f9ff;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.demo-item h5 {
    color: #0066cc;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.demo-highlight {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #10b981;
    margin: 20px 0;
}

/* FAQ CTA Buttons */
.faq-cta {
    margin-top: 25px;
    text-align: center;
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.faq-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003366 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    color: white;
    text-decoration: none;
}

.faq-btn i {
    font-size: 1.1rem;
}

/* FAQ Final CTA */
.faq-final-cta {
    margin-top: 60px;
    text-align: center;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    padding: 50px 30px;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.faq-final-cta::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"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.final-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.final-cta-buttons .btn-primary {
    background: white;
    color: #0066cc;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.final-cta-buttons .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    color: #0066cc;
    text-decoration: none;
}

.final-cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.final-cta-buttons .btn-secondary:hover {
    background: white;
    color: #0066cc;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-categories {
        gap: 5px;
        margin-bottom: 30px;
    }
    
    .faq-category {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 20px 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 25px 20px;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .investment-packages {
        grid-template-columns: 1fr;
    }
    
    .package.featured {
        transform: none;
    }
    
    .financing-options {
        grid-template-columns: 1fr;
    }
    
    .warranty-details {
        grid-template-columns: 1fr;
    }
    
    .training-benefits {
        grid-template-columns: 1fr;
    }
    
    .delivery-zones {
        grid-template-columns: 1fr;
    }
    
    .showroom-benefits {
        grid-template-columns: 1fr;
    }
    
    .demo-service {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-time {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .final-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-category {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .package-price {
        font-size: 1.5rem;
    }
    
    .roi-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}


