/* Embratelas - Design System Consistente */

/* =====================================
   VARIÁVEIS CSS PARA CONSISTÊNCIA
   ===================================== */
:root {
    /* Cores Primárias - Paleta Consistente */
    --primary-blue: #2563eb;
    --primary-orange: #ff6b35;
    --primary-green: #10b981;
    
    /* Cores Secundárias */
    --secondary-purple: #8b5cf6;
    --secondary-pink: #f093fb;
    --secondary-teal: #4facfe;
    
    /* Cores Neutras */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Tipografia */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Espaçamentos Consistentes */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    
    /* Border Radius Consistente */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 50px;
    
    /* Sombras Consistentes */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    
    /* Container */
    --container-max-width: 1200px;
}

/* =====================================
   RESET E BASE
   ===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: #fff;
    padding-top: 70px; /* Espaço para nova navbar */
}

/* =====================================
   COMPONENTES REUTILIZÁVEIS
   ===================================== */

/* Container Padrão */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

/* Botões Consistentes */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-4) var(--spacing-6);
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

/* Cards Consistentes */
.card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-8);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

/* Ícones de Destaque */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    color: white;
    box-shadow: var(--shadow-lg);
}

.icon-circle-primary {
    background: var(--primary-blue);
}

.icon-circle-secondary {
    background: var(--primary-orange);
}

.icon-circle-success {
    background: var(--primary-green);
}

/* Badges/Tags Consistentes */
.badge {
    display: inline-block;
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.badge-primary {
    background: var(--primary-orange);
    color: white;
}

.badge-success {
    background: var(--primary-green);
    color: white;
}

.badge-warning {
    background: #fbbf24;
    color: var(--gray-800);
}

/* Seções Consistentes */
.section {
    padding: var(--spacing-20) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-16);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: var(--spacing-4);
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Consistente */
.grid {
    display: grid;
    gap: var(--spacing-8);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* =====================================
   COMPONENTES ESPECÍFICOS
   ===================================== */

/* =====================================
   NAVBAR NOVA - DO ZERO
   ===================================== */

/* Navbar Principal */
.new-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.new-navbar .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.new-navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.new-navbar-brand img {
    height: 50px;
    width: auto;
}

.new-navbar-brand-text {
    display: flex;
    flex-direction: column;
}

.new-navbar-brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin: 0;
}

.new-navbar-brand-subtitle {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-weight: 500;
    line-height: 1;
    margin: 0;
}

/* Menu Desktop */
.new-navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.new-navbar-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.new-navbar-menu a:hover {
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.1);
}

.new-navbar-menu .btn-whatsapp {
    background: #25d366;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.new-navbar-menu .btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Botão Hamburger */
.new-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background: none;
    gap: 4px;
}

.new-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsivo */
@media (max-width: 768px) {
    .new-navbar {
        padding: 0 1rem;
    }
    
    .new-navbar-brand img {
        height: 45px;
    }
    
    .new-navbar-brand-name {
        font-size: 1.1rem;
    }
    
    .new-navbar-brand-subtitle {
        font-size: 0.65rem;
    }
    
    .new-navbar-menu {
        display: none;
    }
    
    .new-hamburger {
        display: flex;
    }
}

/* =====================================
   MENU MOBILE OVERLAY - DO ZERO
   ===================================== */

.new-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    z-index: 10000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.new-mobile-overlay.active {
    display: flex;
}

/* Botão Fechar */
.new-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.new-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Logo no Mobile */
.new-mobile-logo {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Menu Mobile */
.new-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    margin-top: 4rem;
}

.new-mobile-menu a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.new-mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.new-mobile-menu .btn-whatsapp {
    background: #25d366 !important;
    border-color: #25d366 !important;
    margin-top: 1rem;
}

.new-mobile-menu .btn-whatsapp:hover {
    background: #20ba5a !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
    padding-top: 5px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-attachment: fixed;
    background-image: url('src/images/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    align-items: center;
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: var(--primary-orange);
    color: white;
    padding: var(--spacing-2) var(--spacing-5);
    border-radius: var(--radius-xl);
    display: inline-block;
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--spacing-6);
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-5);
    color: var(--gray-800);
    max-width: 500px;
    margin-top: var(--spacing-8);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--gray-500);
    margin-bottom: var(--spacing-8);
    font-weight: 400;
    line-height: 1.5;
    max-width: 420px;
}

/* Features List */
.features-list {
    margin-bottom: var(--spacing-8);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-3);
}

.feature-check {
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-check i {
    color: white;
    font-size: var(--font-size-xs);
}

.feature-text {
    color: var(--gray-600);
    font-weight: 500;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: var(--spacing-4);
    flex-wrap: wrap;
    justify-content: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-16);
}

.service-card {
    background: white;
    padding: var(--spacing-10);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.service-icon {
    position: absolute;
    top: -15px;
    left: var(--spacing-8);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.service-content {
    margin-top: var(--spacing-8);
}

.service-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-4);
}

.service-description {
    color: var(--gray-500);
    margin-bottom: var(--spacing-6);
    line-height: 1.6;
}

/* Process Steps */
.process-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-12);
    margin-bottom: var(--spacing-20);
}

.process-step.reverse {
    flex-direction: row-reverse;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    z-index: 2;
}

.process-visual {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.process-content {
    flex: 1;
    max-width: 400px;
}

.process-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-2);
}

.process-description {
    color: var(--gray-500);
    font-size: var(--font-size-lg);
    line-height: 1.6;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: var(--spacing-8)!important;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative !important;
}

.testimonial-quote {
    position: absolute !important;
    top: -10px;
    left: var(--spacing-8);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.testimonial-stars {
    display: flex !important;
    margin-bottom: var(--spacing-4);
    color: #ffd700;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-6);
    color: var(--gray-600);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
}

.testimonial-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* FAQ */
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-4);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--spacing-6);
    background: var(--gray-50);
    border: none;
    text-align: left;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-answer {
    padding: var(--spacing-6);
    background: white;
    color: var(--gray-500);
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Stats Section */
.stats-section {
    background: var(--primary-blue);
    padding: var(--spacing-16) 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-8);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-8);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-2);
    color: white;
}

.stat-label {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-2);
    color: white;
}

.stat-description {
    opacity: 0.8;
    font-size: var(--font-size-sm);
}

/* Urgency Section */
.urgency-section {
    background: #3B4C86;
    padding: var(--spacing-12) 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Responsividade Premium */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar .container {
        padding: var(--spacing-3) var(--spacing-4);
    }
    
    .navbar-brand img {
        height: 46px; /* Tamanho apropriado para mobile */
        margin: 2px 0;
    }
    
    .navbar-brand-name {
        font-size: 1.3rem;
    }
    
    .navbar-brand-subtitle {
        font-size: 0.8rem;
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
    
    @media (min-width: 992px) {
        .navbar-nav {
            display: flex !important;
            position: static;
            flex-direction: row;
            background: none;
            height: auto;
            box-shadow: none;
            padding: 0;
            opacity: 1;
            pointer-events: auto;
            transform: none;
        }
        .navbar-nav.active {
            display: flex !important;
        }
        .mobile-menu-btn {
            display: none !important;
        }
    }

    /* Garante que o menu desktop não seja afetado */
    @media (min-width: 992px) {
        .navbar-nav {
            display: flex !important;
            position: static;
            flex-direction: row;
            background: none;
            height: auto;
            box-shadow: none;
            padding: 0;
        }
        .navbar-nav.active {
            display: flex !important;
        }
    }
    
    .navbar-nav li {
        width: 100%;
    }
    
    .navbar-nav a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem;
        margin: 0;
        border-radius: 12px;
        font-size: 1.1rem;
        color: var(--primary-blue) !important;
        border: 2px solid transparent;
    }
    
    .navbar-nav a:not(.btn-whatsapp):hover {
        background: linear-gradient(135deg, 
            rgba(37, 99, 235, 0.1) 0%, 
            rgba(59, 130, 246, 0.15) 100%);
        border-color: rgba(37, 99, 235, 0.2);
        transform: none;
    }
    
    .navbar-nav .btn-whatsapp {
        margin-left: 0;
        margin-top: var(--spacing-4);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .process-step.reverse {
        flex-direction: column !important;
    }
    
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    /* Serviços: 2 por linha no mobile */
    #services .grid,
    #services [style*="grid-template-columns"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-4);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    /* Serviços: 2 por linha em telas muito pequenas */
    #services .grid,
    #services [style*="grid-template-columns"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    /* Ajustar padding dos cards de serviço no mobile */
    #services .grid > div,
    #services [style*="grid-template-columns"] > div {
        padding: 1.5rem 1rem !important;
    }
}

/* Componentes específicos adicionais */
.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    z-index: 2;
}

/* Animações suaves */
.hero-badge {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.features-list {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.cta-group {
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estados de hover melhorados */
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

/* Otimizações visuais */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.hero-visual .card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Sistema de cores consistente aplicado */
.text-primary { color: var(--primary-blue); }
.text-secondary { color: var(--primary-orange); }
.text-success { color: var(--primary-green); }
.text-muted { color: var(--gray-500); }

.bg-primary { background: var(--primary-blue); }
.bg-secondary { background: var(--primary-orange); }
.bg-success { background: var(--primary-green); }
.bg-light { background: var(--gray-50); }
.bg-dark { background: var(--gray-800); }

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    align-items: center;
    justify-content: flex-start;
}
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.7rem;
    }
}

.highlight {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Scripts para Landing Page Otimizada */

/* Animação de pulso para CTA principal */
.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Efeitos hover para CTAs */
.btn-urgency:hover,
.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Placeholders com cor adequada */
input::placeholder,
textarea::placeholder,
select::placeholder {
    color: rgba(255,255,255,0.7) !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .trust-badges {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .contact-form {
        margin: 0 1rem !important;
        padding: 2rem 1.5rem !important;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px !important; /* Evita zoom no iOS */
    }
}

/* Estilos adicionais para o formulário */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
}

.form-group input:invalid,
.form-group select:invalid {
    box-shadow: none !important;
}

/* Animação suave para o botão */
@keyframes submitPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.contact-form button[type="submit"]:active {
    animation: submitPulse 0.2s ease;
}

/* Media Query para Footer Responsivo */
@media (max-width: 900px) {
    /* Footer responsivo */
    .footer-content {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2.2rem !important;
        text-align: left !important;
    }
    .footer-section {
        min-width: unset !important;
        width: 100% !important;
        margin-bottom: 1.2rem !important;
        align-items: flex-start !important;
        display: flex !important;
        flex-direction: column !important;
        text-align: left !important;
    }
    .footer-logo {
        justify-content: center !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    .footer-logo-img {
        margin: 0 auto !important;
        display: block !important;
    }
    .footer-bottom {
        text-align: center !important;
        font-size: 0.98rem !important;
        padding-bottom: 1.5rem !important;
    }
    .footer-section ul {
        align-items: center !important;
        justify-content: center !important;
        padding-left: 0 !important;
    }
    .footer-section h4 {
        margin-top: 0.5rem !important;
    }
    .footer-section p {
        margin-top: 0.7rem !important;
        margin-bottom: 0.7rem !important;
    }
}
@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animações de hover */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

.navbar-nav a:hover {
    color: #ff6b35 !important;
}

/* Botões com efeitos */
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.4) !important;
}

/* Melhorias visuais */
.faq-question:hover {
    background: #f3f4f6 !important;
}

.hero-visual .service-card {
    transition: all 0.3s ease;
}

.hero-visual .service-card:hover {
    transform: scale(1.05);
}

/* =====================================
   FAQ SECTION STYLES
   ===================================== */
.faq-section {
    background: #fff;
    padding: 5rem 0;
}

.faq-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.faq-section .section-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #f9fafb;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: #fff;
    color: #6b7280;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
}

.faq-cta h3 {
    color: #1a202c;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-cta p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.faq-cta a {
    background: #25D366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* =====================================
   CONTACT SECTION STYLES
   ===================================== */
.contact {
    background: #2c3e50;
    color: #fff;
    padding: 5rem 0;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact .section-header h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact .section-header p {
    color: #ecf0f1;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.contact .section-header .badge {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 15px;
    display: inline-block;
}

.contact .section-header .badge span {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-cta-item {
    padding: 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.contact-cta-whatsapp {
    background: #25D366;
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

.contact-cta-phone {
    background: #007bff;
    box-shadow: 0 10px 30px rgba(0,123,255,0.3);
}

.contact-cta-emergency {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.contact-cta-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-cta-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-cta-item p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.contact-cta-item .badge {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
}

.contact-cta-emergency .badge {
    background: #ff4757;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.contact-item .contact-item-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon.whatsapp { background: #25D366; }
.contact-icon.email { background: #007bff; }
.contact-icon.location { background: #28a745; }
.contact-icon.coverage { background: #6366f1; }

.contact-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.contact-text h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #ecf0f1;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    max-width: 480px;
    margin: 0 auto;
}

.contact-form .form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form .form-icon {
    background: #667eea;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-form .form-icon i {
    color: #fff;
    font-size: 1.8rem;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.contact-form .form-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    background: #667eea;
    color: #fff;
    border: none;
    padding: 1.4rem 2rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(102,126,234,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102,126,234,0.4);
}

.submit-btn {
    background: #667eea;
    color: #fff;
    border: none;
    padding: 1.4rem 2rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(102,126,234,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102,126,234,0.4);
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
}

.form-footer p {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Contact Section Styles */
.contact {
    background: #2c3e50;
    color: #fff;
    padding: 5rem 0;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact .section-header h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact .section-header p {
    color: #ecf0f1;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.contact-highlight {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 15px;
    display: inline-block;
}

.contact-highlight span {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-cta {
    padding: 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.contact-cta.whatsapp-cta {
    background: #25D366;
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

.contact-cta.phone-cta {
    background: #007bff;
    box-shadow: 0 10px 30px rgba(0,123,255,0.3);
}

.contact-cta.emergency-cta {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-cta p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.cta-button {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

.cta-button.urgent {
    background: #ff4757;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.contact-item-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon.whatsapp {
    background: #25D366;
}

.contact-icon.email {
    background: #007bff;
}

.contact-icon.location {
    background: #28a745;
}

.contact-icon.coverage {
    background: #6366f1;
}

.contact-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.contact-text h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #ecf0f1;
    margin: 0;
}

/* Footer Styles */
.footer {
    background: #1e293b;
    color: #fff;
    padding: 3rem 0 1.5rem 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.footer-logo h3 {
    margin: 0;
    color: #fff;
}

.footer-logo p {
    margin: 0;
    color: #fff;
}

.footer-section > p {
    margin-top: 1rem;
    color: #cbd5e1;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-services,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #cbd5e1;
}

.footer-services li {
    margin-bottom: 0.8rem;
}

.footer-services a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services a:hover {
    color: #10b981;
}

.footer-contact li {
    margin-bottom: 1rem;
}

.footer-contact .contact-phone,
.footer-contact .contact-email {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact .contact-address {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact i {
    color: #10b981;
    font-size: 1rem;
}

.footer-contact .contact-address i {
    margin-top: 0.2rem;
}

.footer-contact a {
    color: #cbd5e1;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #10b981;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #cbd5e1;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.8rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.2);
}

.social-facebook:hover {
    color: #1877f2 !important;
}

.social-instagram:hover {
    color: #e4405f !important;
}

.social-whatsapp:hover {
    color: #25d366 !important;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #cbd5e1;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
}

/* Carrossel Styles */
.game-section {
    padding: 30px 0 20px 0;
}

.game-section .owl-carousel {
    margin: 0 auto;
    padding-bottom: 10px;
    position: relative;
}

.game-section .item {
    margin: 0 4px 32px 4px;
    width: 350px;
    height: 400px;
    display: flex;
    align-items: flex-end;
    background: #343434 no-repeat center center / cover;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.game-section .item.active {
    width: 400px;
    z-index: 2;
}

.game-section .item:after {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(transparent 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.4) 100%);
}

.game-section .item-desc {
    padding: 0 16px 10px;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transform: translateY(calc(100% - 44px));
    transition: all 0.3s;
    pointer-events: none;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.6) 100%);
    border-radius: 0 0 12px 12px;
}

.game-section .item.active .item-desc {
    transform: none;
    pointer-events: auto;
}

.game-section .item-desc h3 {
    margin: 0 0 15px;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 1px 3px rgba(0,0,0,0.9);
}

.game-section .item-desc p {
    opacity: 0;
    transform: translateY(24px);
    color: #f5f5f5;
    font-size: 0.98rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.8);
    transition: all 0.3s;
}

.game-section .item.active .item-desc p {
    opacity: 1;
    transform: none;
}

.line-title {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 18px auto !important;
    font-size: 2.1rem !important;
    padding-top: 0 !important;
}

.line-title::before,
.line-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 2px;
}

.line-title::before {
    width: 100%;
    background: #f2f2f2;
}

.line-title::after {
    width: 32px;
    background: #e73700;
}

/* Owl Carousel Navigation */
.game-section .owl-nav {
    position: absolute;
    top: 50%;
    left: -60px;
    width: calc(100% + 120px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.game-section .owl-nav button.owl-prev,
.game-section .owl-nav button.owl-next {
    background: #fff;
    border: 2px solid #2563eb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2563eb;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s, color 0.2s, border 0.2s;
    outline: none;
    margin: 0 8px;
}

.game-section .owl-nav button.owl-prev:hover,
.game-section .owl-nav button.owl-next:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.game-section .owl-nav .owl-nav-prev,
.game-section .owl-nav .owl-nav-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.game-section .owl-dots {
    display: none !important;
}

/* Header/Navbar Styles */
.navbar-logo-img {
    height: 62px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
}

/* Form Field Focus Effects */
.form-group input[type="text"]:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1) !important;
}

.form-group input[type="tel"]:focus {
    border-color: #25D366 !important;
    box-shadow: 0 0 0 3px rgba(37,211,102,0.1) !important;
}

.form-group select:focus {
    border-color: #f59e0b !important;
    box-shadow: 0 0 0 3px rgba(245,158,11,0.1) !important;
}

.form-group .form-textarea:focus {
    border-color: #8b5cf6 !important;
    box-shadow: 0 0 0 3px rgba(139,92,246,0.1) !important;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .game-section .item { 
        width: 160px; 
        height: 200px; 
        margin: 0 2px 20px 2px; 
    }
    .game-section .item.active { 
        width: 160px; 
    }
    .game-section .item-desc { 
        transform: translateY(calc(100% - 32px)); 
    }
}

@media (max-width: 991px) {
    .game-section .item { 
        width: 120px; 
        height: 150px; 
        margin: 0 1px 10px 1px; 
    }
    .game-section .item.active { 
        width: 120px; 
    }
    .game-section .item-desc { 
        transform: translateY(calc(100% - 24px)); 
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .footer-content { 
        flex-direction: column !important; 
        gap: 2.5rem !important; 
        text-align: center !important;
    }
    .footer-section { 
        min-width: 0 !important; 
        margin-bottom: 1rem !important;
    }
    .footer-logo {
        justify-content: center !important;
    }
    .social-links {
        justify-content: center !important;
    }
}

@media (max-width: 767px) {
    .game-section { 
        padding: 10px 0 5px 0; 
    }
    .game-section .item { 
        width: 90px; 
        height: 90px; 
        margin: 0 0.5px 6px 0.5px; 
    }
    .game-section .item.active { 
        width: 90px; 
        box-shadow: 3px 5px 5px rgba(0,0,0,0.18); 
    }
    .game-section .item-desc { 
        padding: 0 4px 1px; 
        transform: translateY(calc(100% - 18px)); 
    }
    .line-title { 
        width: 90px; 
        font-size: 0.9rem !important; 
        margin-bottom: 4px !important; 
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .contact .section-header h2 {
        font-size: 2rem;
    }
    
    .contact .section-header p {
        font-size: 1.1rem;
    }
    
    .contact-cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 2rem !important;
    }
    .footer-section h4 {
        font-size: 1rem !important;
    }
    .social-links a {
        padding: 0.6rem !important;
        font-size: 1.3rem !important;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .submit-btn {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
}

/* Hero Visual Styles */
.hero-visual .card {
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(37,99,235,0.08);
    background: #fff;
    max-width: 410px;
    margin: 0 auto;
}

.hero-visual .services-header {
    display: flex;
    align-items: left;
    gap: 0.7rem;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.hero-visual .logo-container {
    display: flex;
    align-items: center;
    height: 48px;
}

.hero-visual .logo-img {
    height: 48px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
}

.hero-visual .services-title {
    font-weight: 800;
    color: var(--gray-800);
    font-size: 1.35rem;
    margin: 0;
    letter-spacing: -1px;
    text-align: left;
}

.hero-visual .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.2rem;
    margin-bottom: 2rem;
}

.hero-visual .service-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    text-align: left;
}

.hero-visual .service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.2rem;
}

.hero-visual .service-icon.sacadas {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-visual .service-icon.janelas {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hero-visual .service-icon.piscinas {
    background: linear-gradient(135deg, #4fd1c5 0%, #10b981 100%);
}

.hero-visual .service-icon.pets {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.hero-visual .service-icon i {
    color: #fff;
    font-size: 1.4rem;
}

.hero-visual .service-content {
    text-align: left;
}

.hero-visual .service-name {
    font-weight: 700;
    color: #1a202c;
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.hero-visual .service-description {
    color: #6b7280;
    font-size: 0.93rem;
    line-height: 1.2;
}

.hero-visual .emergency-banner {
    background: #fff6f6;
    border: 1.5px solid #fecaca;
    border-radius: 1rem;
    padding: 1.1rem 1rem 0.7rem 1rem;
    text-align: center;
    margin-top: 0.5rem;
}

.hero-visual .emergency-title {
    color: #dc2626;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.hero-visual .emergency-text {
    color: #991b1b;
    font-size: 0.97rem;
    font-weight: 600;
}

/* Hero Logo Large Styles */
.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    border: none;
}

.hero-logo-large {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.hero-logo-large:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-logo-container {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .hero-logo-large {
        max-width: 200px;
    }
}

/* Como Funciona and About Section Styles */
.process-card {
    text-align: center;
}

.process-icon {
    margin: 0 auto var(--spacing-6);
    position: relative;
}

.process-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-4);
}

.process-description {
    color: var(--gray-500);
    line-height: 1.6;
}

.center-cta {
    text-align: center;
    margin-top: var(--spacing-12);
}

.third-process-icon {
    background: linear-gradient(135deg, var(--secondary-purple) 0%, #a78bfa 100%);
    margin: 0 auto var(--spacing-6);
    position: relative;
}

.about-logo-icon {
    margin: 0 auto var(--spacing-6);
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
}

.about-logo-img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

/* White Background Section */
.white-bg {
    background: white;
}

/* Gray Background Section */
.gray-bg {
    background: var(--gray-50);
}

/* Hero Background Section */
.hero-bg {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('src/images/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.hero-bg > .container {
    position: relative;
    z-index: 2;
}

/* Urgency Section Styles */
.urgency-section .section-header {
    margin-bottom: var(--spacing-10);
}

.urgency-section .section-title {
    color: white;
}

.urgency-section .section-subtitle {
    color: rgba(255,255,255,0.95);
}

.urgency-section .stats-grid {
    margin-bottom: var(--spacing-12);
}

.urgency-section .stat-emoji {
    font-size: 3rem;
    margin-bottom: var(--spacing-4);
}

.urgency-section .stat-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-2);
    color: white;
}

.urgency-section .stat-description {
    opacity: 0.9;
    color: white;
}

.urgency-section .promo-banner {
    background: rgba(255,255,255,0.2);
    padding: var(--spacing-6);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-8);
    backdrop-filter: blur(10px);
    text-align: center;
}

.urgency-section .promo-text {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: white;
}

.urgency-section .cta-container {
    text-align: center;
}

.urgency-section .large-btn {
    font-size: var(--font-size-xl);
    padding: var(--spacing-6) var(--spacing-12);
    text-transform: uppercase;
}

/* Botões específicos da urgency-section (exceto WhatsApp) */
.urgency-section .btn-primary:not(.btn-whatsapp) {
    background: #3B4C86;
    border-color: #3B4C86;
}

.urgency-section .btn-primary:not(.btn-whatsapp):hover {
    background: #2D3A66;
    border-color: #2D3A66;
    transform: translateY(-3px);
}

.urgency-section .btn-secondary:not(.btn-whatsapp) {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.urgency-section .btn-secondary:not(.btn-whatsapp):hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-3px);
}

/* Botões específicos com nova cor #3B4C86 */
.btn-primary:not(.btn-whatsapp):not(.urgency-section .btn-primary) {
    background: #3B4C86;
    border-color: #3B4C86;
}

.btn-primary:not(.btn-whatsapp):not(.urgency-section .btn-primary):hover {
    background: #2D3A66;
    border-color: #2D3A66;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 76, 134, 0.4);
}

/* Testimonials Section Styles */
.testimonial-quote-gold {
    background: #FFD700;
}

.testimonial-quote-green {
    background: var(--primary-green);
}

.testimonial-quote-purple {
    background: var(--secondary-purple);
}

.testimonial-quote i {
    color: white;
}

.testimonial-avatar-orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-teal) 100%);
}

.testimonial-avatar-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
}

.testimonial-avatar-pink {
    background: linear-gradient(135deg, var(--secondary-pink) 0%, var(--primary-orange) 100%);
}

.testimonial-author {
    font-weight: 600;
    color: var(--gray-700);
}

.testimonial-location {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.testimonial-date {
    color: #9ca3af;
    font-size: 0.8rem;
    margin-top: 0.2rem;
    font-style: italic;
}

/* Carousel Items Background Images */
.game-section .item.carousel-item-animais {
    background-image: url('src/images/tela-de-protecao-animais.jpg');
}

.game-section .item.carousel-item-sacadas {
    background-image: url('src/images/tela-de-protecao-sacadas.jpg');
}

.game-section .item.carousel-item-janelas {
    background-image: url('src/images/tela-de-protecao-janelas.jpg');
}

.game-section .item.carousel-item-piscina {
    background-image: url('src/images/tela-de-protecao-piscina.jpg');
}

.game-section .item.carousel-item-quadra {
    background-image: url('src/images/tela-de-protecao-quadra.jpg');
}

/* Contact Form Styles */
#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    box-sizing: border-box;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: var(--gray-400);
}

/* Contact Section Grid Responsive */
@media (max-width: 968px) {
    #contact .grid-2 {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    #contact .grid-3 {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-4) !important;
    }
}

/* Sistema de Notificações */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    border-left: 4px solid;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #10b981;
    color: white;
    border-left-color: #059669;
}

.notification.error {
    background: #ef4444;
    color: white;
    border-left-color: #dc2626;
}

.notification.info {
    background: #3b82f6;
    color: white;
    border-left-color: #2563eb;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Melhorias de Acessibilidade */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Responsive Notifications */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        top: 80px;
    }
}

/* Carrossel Horizontal (substitui Owl Carousel) */
.custom-carousel {
    position: relative;
    display: flex !important;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 16px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.custom-carousel::-webkit-scrollbar {
    height: 8px;
}

.custom-carousel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.custom-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

.custom-carousel .item {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    height: 400px;
    min-width: 320px;
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    transition: all 0.3s ease;
    scroll-snap-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.custom-carousel .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}



.custom-carousel .item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
    border-radius: 16px;
    transition: all 0.3s ease;
}

.custom-carousel .item:hover::after {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.custom-carousel .item-desc {
    position: relative;
    z-index: 3;
    padding: 30px;
    color: white;
    text-align: left;
    width: 100%;
    opacity: 1; /* Sempre visível */
    transform: translateY(0); /* Sem deslocamento */
    transition: all 0.4s ease;
    pointer-events: all; /* Sempre interativo */
}

.custom-carousel .item-desc h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 1; /* Título sempre visível */
    transition: all 0.3s ease;
}

.custom-carousel .item-desc p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0; /* Texto oculto por padrão */
    transform: translateY(10px);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    max-height: 0;
    overflow: hidden;
}

/* Mostrar texto no hover */
.custom-carousel .item:hover .item-desc p {
    opacity: 0.95;
    transform: translateY(0);
    max-height: 100px; /* Altura suficiente para o texto */
}

/* Responsive carousel */
@media (max-width: 768px) {
    .custom-carousel {
        gap: 20px;
    }
    
    .custom-carousel .item {
        min-width: 280px;
        height: 350px;
    }
    
    .custom-carousel .item-desc {
        padding: 20px;
    }
    
    .custom-carousel .item-desc h3 {
        font-size: 1.2rem;
    }
    
    .custom-carousel .item-desc p {
        font-size: 0.85rem;
    }
}



@media (max-width: 900px) {
    .footer {
        padding: 2rem 0 1rem 0 !important;
    }
    .footer-content {
        flex-direction: column !important;
        align-items: center !important;
        gap: 2.5rem !important;
        text-align: center !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    .footer-section {
        width: 100% !important;
        min-width: unset !important;
        margin-bottom: 1.2rem !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        padding: 0 !important;
    }
    .footer-logo {
        justify-content: center !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .footer-logo-img {
        margin: 0 auto !important;
        display: block !important;
        max-width: 48px !important;
        max-height: 48px !important;
    }
    .footer-section h4 {
        margin-top: 0.5rem !important;
        font-size: 1.1rem !important;
        margin-bottom: 0.7rem !important;
    }
    .footer-section p {
        margin-top: 0.7rem !important;
        margin-bottom: 0.7rem !important;
        font-size: 0.98rem !important;
    }
    .footer-services,
    .footer-contact {
        align-items: center !important;
        justify-content: center !important;
        padding-left: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    .footer-services li,
    .footer-contact li {
        margin-bottom: 0.7rem !important;
        font-size: 1rem !important;
    }
    .footer-bottom {
        text-align: center !important;
        font-size: 0.98rem !important;
        padding-bottom: 1.2rem !important;
        margin-top: 2rem !important;
        border-top: 1px solid rgba(255,255,255,0.08) !important;
    }
    .social-links {
        justify-content: center !important;
        gap: 1.2rem !important;
        margin-top: 1rem !important;
    }
    .social-links a {
        padding: 0.7rem !important;
        font-size: 1.3rem !important;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem !important;
        padding: 0 0.5rem !important;
    }
    .footer-section h4 {
        font-size: 1rem !important;
    }
    .footer-logo-img {
        max-width: 38px !important;
        max-height: 38px !important;
    }
    .footer-section p {
        font-size: 0.93rem !important;
    }
    .footer-bottom {
        font-size: 0.93rem !important;
        padding-bottom: 1rem !important;
    }
    .social-links a {
        padding: 0.5rem !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 900px) {
    .footer-contact {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    .footer-contact li {
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: row !important;
        margin-bottom: 0.7rem !important;
        font-size: 1rem !important;
    }
    .footer-contact .contact-phone,
    .footer-contact .contact-email,
    .footer-contact .contact-address {
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        gap: 0.8rem !important;
        text-align: center !important;
    }
}

@media (max-width: 900px) {
    .footer-bottom {
        background: #232a3a !important;
        color: #f3f4f6 !important;
        text-align: center !important;
        font-size: 1rem !important;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem !important;
        margin-top: 2rem !important;
        border-top: 1px solid rgba(255,255,255,0.10) !important;
        line-height: 1.6 !important;
    }
    .footer-bottom a {
        color: #25d366 !important;
        text-decoration: underline !important;
        font-weight: 600 !important;
    }
    .footer-bottom p {
        margin: 0.5rem 0 !important;
        font-size: 1rem !important;
        word-break: break-word !important;
        color: #f3f4f6 !important;
    }
}

.footer-bottom p {
    color: #fff !important;
}
@media (max-width: 480px) {
    .footer-bottom {
        font-size: 0.98rem !important;
        padding: 1rem 0.2rem !important;
    }
}

@media (max-width: 900px) {
    .footer-section .social-links {
        margin-top: 0.5rem !important;
        gap: 0.5rem !important;
    }
    .social-links a {
        padding: 1rem !important;
        font-size: 3.1rem !important;
        background: rgba(255,255,255,0.08) !important;
    }
}

@media (max-width: 480px) {
    .footer-section .social-links {
        margin-top: 0.3rem !important;
        gap: 0.3rem !important;
    }
    .social-links a {
        padding: 1rem !important;
        font-size: 3rem !important;
    }
}

.hero-logo-container {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    animation: heroLogoSlideIn 0.9s cubic-bezier(.4,0,.2,1) 0.3s forwards;
}

@keyframes heroLogoSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}