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

:root {
    /* Cores da identidade ulysses */
    --primary-blue: #154AFF;
    --secondary-blue: #0f3bcc;
    --accent-purple: #6b46c1;
    --accent-gold: #ff6909;
    --dark-blue: #0a1f66;
    --light-blue: #e8f0ff;
    
    /* Cores laranja */
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-200: #fed7aa;
    --orange-300: #fdba74;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --orange-800: #9a3412;
    --orange-900: #7c2d12;
    
    /* Cores neutras */
    --white: #ffffff;
    --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;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-hero: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--accent-purple) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, #ff8533 100%);
    
    /* Tipografia */
    --font-manrope: 'Manrope', sans-serif;
    --font-inter: 'Inter', sans-serif;
    
    /* Font Sizes - Standardized */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    
    /* Responsive Typography */
    --heading-1: clamp(2.5rem, 5vw, 3.5rem);    /* 40px - 56px */
    --heading-2: clamp(2rem, 4vw, 2.8rem);      /* 32px - 45px */
    --heading-3: clamp(1.5rem, 3vw, 2.2rem);    /* 24px - 35px */
    --heading-4: clamp(1.25rem, 2.5vw, 1.75rem); /* 20px - 28px */
    --body-large: clamp(1.125rem, 2vw, 1.25rem); /* 18px - 20px */
    --body-base: 1rem;                           /* 16px */
    --body-small: 0.875rem;                     /* 14px */

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
}

/* Typography Utility Classes */
.heading-1 {
    font-family: var(--font-manrope);
    font-size: var(--heading-1);
    font-weight: var(--font-bold);
    line-height: 1.2;
    color: var(--gray-900);
}

.heading-2 {
    font-family: var(--font-manrope);
    font-size: var(--heading-2);
    font-weight: var(--font-semibold);
    line-height: 1.3;
    color: var(--gray-900);
}

.heading-3 {
    font-family: var(--font-manrope);
    font-size: var(--heading-3);
    font-weight: var(--font-semibold);
    line-height: 1.3;
    color: var(--gray-900);
}

.heading-4 {
    font-family: var(--font-manrope);
    font-size: var(--heading-4);
    font-weight: var(--font-semibold);
    line-height: 1.4;
    color: var(--gray-900);
}

.body-large {
    font-family: var(--font-inter);
    font-size: var(--body-large);
    font-weight: var(--font-normal);
    line-height: 1.6;
    color: var(--gray-700);
}

.body-base {
    font-family: var(--font-inter);
    font-size: var(--body-base);
    font-weight: var(--font-normal);
    line-height: 1.6;
    color: var(--gray-700);
}

.body-small {
    font-family: var(--font-inter);
    font-size: var(--body-small);
    font-weight: var(--font-normal);
    line-height: 1.5;
    color: var(--gray-600);
}

/* Espaçamentos */
:root {
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    --section-padding-mobile: 80px 0;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-manrope);
    font-weight: 500;
    line-height: 1.3;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 500;
    letter-spacing: -0.01em;
}

p {
    font-family: var(--font-inter);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-600);
    letter-spacing: 0.01em;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 10px 20px;
    font-family: var(--font-inter);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    letter-spacing: 0.01em;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-large {
    padding: 12px 24px;
    font-size: 0.95rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--orange-500);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    border: none;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(21, 74, 255, 0.3);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(21, 74, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid rgba(21, 74, 255, 0.3);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(21, 74, 255, 0.05);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(21, 74, 255, 0.1);
}

.btn-outline-hero {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

/* Minimalist Header */
.header-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header-brand {
    flex-shrink: 0;
}

.brand-link {
    display: block;
    transition: opacity 0.2s ease;
}

.brand-link:hover {
    opacity: 0.8;
}

.brand-logo {
    height: 32px;
    width: auto;
}

.header-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.menu-link {
    font-family: var(--font-inter);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-600);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

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

/* Dropdown Menu Styles */
.menu-item-dropdown {
    position: relative;
}

.menu-item-dropdown .menu-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin-top: 0.5rem;
    overflow: hidden;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.menu-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: var(--font-inter);
    transition: all 0.2s ease;
    width: 100%;
}

.dropdown-link:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.menu-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-link:hover::before {
    width: 100%;
}

.header-cta {
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-family: var(--font-inter);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.cta-button:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 74, 255, 0.3);
}

.menu-toggle {
    display: none;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    position: relative;
}

.menu-toggle:hover {
    background: var(--gray-100);
}

.menu-toggle:active {
    transform: scale(0.95);
}

/* Ícones Lucide */
.menu-toggle .menu-icon,
.menu-toggle .close-icon {
    position: absolute;
    color: var(--gray-800);
    transition: all 0.3s ease;
}

.menu-toggle .menu-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.menu-toggle .close-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.menu-toggle.active .menu-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.menu-toggle.active .close-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: var(--primary-blue);
}

/* Botão de alternância de tema */

/* Mobile Menu Styles */
@media (max-width: 1024px) {
    .header-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 2rem;
        overflow-y: auto;
    }
    
    .header-menu.active {
        left: 0;
    }
    
    .header-menu .menu-list {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        width: 100%;
    }
    
    .header-menu .menu-item {
        margin: 0;
        width: 100%;
    }
    
    .header-menu .menu-link {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--gray-800);
        padding: 0.75rem 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .header-menu .menu-link:hover {
        color: var(--primary-blue);
        background: var(--gray-50);
        border-radius: 8px;
    }
    
    /* Dropdown no mobile */
    .header-menu .menu-item-dropdown {
        position: relative;
    }
    
    .header-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--gray-50);
        margin-top: 0.5rem;
        border-radius: 8px;
        padding: 0.5rem;
        display: none;
    }
    
    .header-menu .menu-item-dropdown:hover .dropdown-menu,
    .header-menu .menu-item-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .header-menu .dropdown-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        color: var(--gray-700);
    }
    
    .header-menu .dropdown-link:hover {
        color: var(--primary-blue);
        background: var(--white);
    }
    
    /* Esconder CTA desktop no mobile */
    .header-cta {
        display: none;
    }
    
    /* Garantir que menu toggle apareça */
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    /* Melhorar o X quando menu aberto */
    .menu-toggle.active {
        background: var(--gray-100);
    }
}

/* Responsive Minimalist Header */
@media (max-width: 768px) {
    .header-minimal {
        padding: 0 1rem;
    }
    
    .header-wrapper {
        padding: 0 1rem;
        height: 60px;
    }
    
    /* Garantir que o menu funcione no mobile */
    .header-menu {
        display: flex;
    }
    
    .header-menu.active {
        display: flex;
    }
    
    /* Ajustar tamanho dos links no mobile */
    .header-menu .menu-link {
        font-size: 1.125rem;
        padding: 0.625rem 0.875rem;
    }
    
    /* Ajustar dropdown no mobile */
    .header-menu .dropdown-link {
        font-size: 0.9rem;
        padding: 0.625rem 0.875rem;
    }
    
    /* Garantir que o botão hamburger apareça */
    .menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }
    
    /* Ajustar logo no mobile */
    .brand-logo {
        height: 24px;
        width: auto;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .article-layout {
        padding: 0 1rem;
    }
    
    .header-menu {
        display: none;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .brand-logo {
        height: 28px;
    }
    
    
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

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

.testimonial-card blockquote {
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.testimonial-card cite {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
    letter-spacing: 0.01em;
    font-style: normal;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card blockquote {
        font-size: 0.95rem;
    }
    
    .testimonial-card cite {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-card blockquote {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Privacy Policy Page */
.privacy-page {
    padding: 120px 0 80px;
    background: var(--white);
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.privacy-title {
    font-family: var(--font-manrope);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.privacy-subtitle {
    font-family: var(--font-inter);
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    font-family: var(--font-manrope);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.subsection-title {
    font-family: var(--font-inter);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    letter-spacing: 0.01em;
}

.privacy-section p {
    font-family: var(--font-inter);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.privacy-list {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.privacy-list li {
    font-family: var(--font-inter);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    letter-spacing: 0.01em;
}

.privacy-list li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-list li strong {
    color: var(--gray-900);
    font-weight: 600;
}

.contact-info {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: var(--gray-700);
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--secondary-blue);
}

/* Responsive Privacy Page */
@media (max-width: 768px) {
    .privacy-page {
        padding: 100px 0 60px;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 0 1rem;
    }
    
    .privacy-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .privacy-list li {
        padding-left: 1.25rem;
    }
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo a {
    font-family: var(--font-manrope);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-blue);
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

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

.nav-link {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
    letter-spacing: 0.01em;
}

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

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

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

.nav-link {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(21, 74, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Mega Menu */
.nav-item-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(21, 74, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 1rem;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 1px solid rgba(21, 74, 255, 0.08);
    border-bottom: none;
    border-right: none;
    transform: translateX(-50%) rotate(45deg);
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
    padding: 2rem;
}

.mega-menu-section {
    padding: 0 1rem;
}

.mega-menu-section:not(:last-child) {
    border-right: 1px solid rgba(21, 74, 255, 0.08);
}

.mega-menu-title {
    font-family: var(--font-inter);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-links li {
    margin-bottom: 0.5rem;
}

.mega-menu-links a {
    font-family: var(--font-inter);
    font-size: 0.85rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    padding: 0.25rem 0;
}

.mega-menu-links a:hover {
    color: var(--primary-blue);
}

.mega-menu-cta {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(21, 74, 255, 0.05) 0%, rgba(139, 69, 255, 0.05) 100%);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(21, 74, 255, 0.1);
}

.mega-menu-cta .mega-menu-title {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.mega-menu-cta p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; /* Espaçamento do header */
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 74, 255, 0.85) 0%, rgba(15, 63, 217, 0.85) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px); /* Altura total menos o padding do header */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 0;
    justify-content: center;
    align-items: center;
}

/* Estilos dos elementos hero movidos para a seção de animações para evitar conflitos */

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(107, 70, 193, 0.1) 0%, transparent 50%);
}

/* Authority Section */
.authority {
    padding: var(--section-padding);
    background: #F8F8F8;
}

.authority-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.authority-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
}



/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(21, 74, 255, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

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

.service-card:hover {
    box-shadow: 0 8px 32px rgba(21, 74, 255, 0.15);
    border-color: rgba(21, 74, 255, 0.2);
}

.service-icon {
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(21, 74, 255, 0.1) 0%, rgba(139, 69, 255, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    border: 1px solid rgba(21, 74, 255, 0.1);
    flex-shrink: 0;
}

.service-icon i {
    color: var(--primary-blue);
    stroke-width: 1.5;
}

.service-title {
    font-family: var(--font-manrope);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.3;
    flex-shrink: 0;
}

.service-description {
    font-family: var(--font-inter);
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    flex-grow: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 400;
    transition: all var(--transition-normal);
    cursor: default;
    letter-spacing: 0.01em;
}

.tag:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-card .btn {
    margin-top: auto;
    flex-shrink: 0;
}

/* Cases Section */
.cases {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.case-post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.case-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-post-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.case-post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-post-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    color: var(--primary-blue);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.case-post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.case-post-duration,
.case-post-roi {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.case-post-title {
    margin-bottom: 0.75rem;
}

.case-post-title a {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    text-decoration: none;
    line-height: 1.4;
    transition: color var(--transition-normal);
}

.case-post-title a:hover {
    color: var(--primary-blue);
}

.case-post-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.case-post-results {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
}

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

.result-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.case-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 400;
    transition: all var(--transition-normal);
}

.case-tag:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.case-post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-normal);
    margin-top: auto;
}

.case-post-link:hover {
    color: var(--orange-500);
    transform: translateX(4px);
}

.case-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
}

.case-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.case-card:hover::after {
    opacity: 0.1;
}

.case-card:hover {
    box-shadow: var(--shadow-xl);
}

.case-content {
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}


.case-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.case-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
    z-index: 1;
}

.case-placeholder {
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.case-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.case-content {
    padding: 1.5rem;
}

.case-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.case-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.case-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.case-link:hover {
    color: var(--accent-purple);
}

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

/* Differentials Section */
.differentials {
    padding: var(--section-padding);
    background: var(--white);
}

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

.manifesto-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.manifesto-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.differentials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.differential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.differential-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    flex-shrink: 0;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.differential-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all var(--transition-normal);
    transform: translate(-50%, -50%);
}

.differential-item:hover .differential-icon::before {
    width: 100%;
    height: 100%;
}

.differential-item:hover .differential-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.differential-item span {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 400;
    letter-spacing: 0.01em;
}


/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

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

.about-description {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.about-image {
    height: 450px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.6s ease;
    animation: subtleFloat 6s ease-in-out infinite;
    opacity: 1;
    transform: scale(1);
}

.about-img:hover {
    transform: scale(1.03);
    animation-play-state: paused;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-3px) scale(1.02);
    }
    50% {
        transform: translateY(0) scale(1.05);
    }
    75% {
        transform: translateY(3px) scale(1.02);
    }
}

.about-placeholder {
    text-align: center;
}

/* Blog Section */
.blog {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.blog-card,
.blog-post-card,
.case-post-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
    border: 2px solid var(--gray-200);
    position: relative;
    transform: none !important;
}

.blog-card:hover,
.blog-post-card:hover,
.case-post-card:hover {
    box-shadow: 0 12px 32px rgba(21, 74, 255, 0.15);
    border-color: var(--primary-blue);
    transform: translateY(-4px) !important;
}

.blog-content {
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}


.blog-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.blog-placeholder {
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--gray-900);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.blog-excerpt {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.blog-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.blog-link:hover {
    color: var(--accent-purple);
}

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

/* CTA Final */
.cta-final {
    padding: var(--section-padding);
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--orange-500);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

/* Formulário de Contato */
.contact-form-section {
    padding: 4rem 0;
    background: var(--white);
    margin: 0;
    width: 100%;
}

.contact-form-section .container {
    padding: 0;
    max-width: none;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 0;
}

.form-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(21, 74, 255, 0.08);
}

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

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.form-description {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.form-cta {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(21, 74, 255, 0.15);
    border-radius: 10px;
    font-size: 0.8rem;
    font-family: var(--font-inter);
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--gray-800);
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(21, 74, 255, 0.08);
    background: rgba(21, 74, 255, 0.02);
}

/* Estilos específicos para campos select */
.form-group select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 16px !important;
    padding-right: 3rem !important;
    cursor: pointer;
    background-color: var(--white) !important;
}

.form-group select:hover {
    border-color: var(--primary-blue);
}

.form-group select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23154AFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-color: rgba(21, 74, 255, 0.02) !important;
}

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

.recaptcha-container {
    margin: 0.8rem 0;
}

.recaptcha-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.recaptcha-wrapper input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.recaptcha-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.recaptcha-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.8rem;
}

.recaptcha-separator {
    color: var(--gray-400);
}


/* Loading spinner para botões */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animações Simples e Elegantes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUpFromBottom {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classes de animação - Simples e Elegantes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-on-scroll.animate-fadeInScale {
    animation: fadeInScale 0.8s ease-out forwards;
}

.animate-on-scroll.animate-slideUpFromBottom {
    animation: slideUpFromBottom 1.0s ease-out forwards;
}

/* Delays para animações em sequência */
.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-500 {
    animation-delay: 0.5s;
}

.animate-delay-600 {
    animation-delay: 0.6s;
}

/* ANIMAÇÕES HERO - CADA LINHA E BOTÃO SEPARADAMENTE */
.hero-title {
    font-family: var(--font-manrope);
    font-size: 56px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--white);
    margin-bottom: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.hero-description {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0.01em;
    text-align: center;
    display: flex;
    flex-direction: column;
}

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

/* ===== ANIMAÇÕES HERO - CADA LINHA E BOTÃO SEPARADAMENTE ===== */

/* Seções do Hero */
.hero-title-section {
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.hero-subtitle-section {
    flex: 0 0 auto;
    margin-bottom: 1.5rem;
}

.hero-description-section {
    flex: 0 0 auto;
    margin-bottom: 2rem;
}

.hero-ctas-section {
    flex: 0 0 auto;
    margin-top: 1rem;
}

.hero-title {
    font-family: var(--font-manrope);
    font-size: 56px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--white);
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.hero-description {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--white);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0.01em;
    text-align: center;
    display: flex;
    flex-direction: column;
}

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

/* Estado inicial para elementos animados */
.hero-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animação para cada linha individual */
.hero-line {
    display: block;
}

/* Animação para cada botão individual - herda estilos de .hero-animate */

/* Estado animado */
.hero-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delays específicos aplicados via data-delay */
.hero-animate[data-delay="0.2"] { transition-delay: 0.2s; }
.hero-animate[data-delay="0.4"] { transition-delay: 0.4s; }
.hero-animate[data-delay="0.6"] { transition-delay: 0.6s; }
.hero-animate[data-delay="0.8"] { transition-delay: 0.8s; }
.hero-animate[data-delay="1.0"] { transition-delay: 1.0s; }
.hero-animate[data-delay="1.2"] { transition-delay: 1.2s; }
.hero-animate[data-delay="1.4"] { transition-delay: 1.4s; }
.hero-animate[data-delay="1.6"] { transition-delay: 1.6s; }

/* Responsividade para mobile */
@media (max-width: 768px) {
    /* ===== HERO SECTION ===== */
    .hero {
        padding-top: 70px;
        min-height: 100vh;
    }
    
    .hero-container {
        min-height: calc(100vh - 70px);
        padding: 2rem 1rem;
    }
    
    .hero-content {
        gap: 1.5rem;
        padding: 2rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* ===== CASES SECTION (Index.html) ===== */
    /* Cards exibem um por linha no mobile, igual aos cards do blog */
    .cases {
        padding: 3rem 0;
    }
    
    .cases-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    /* Força exibição de 1 coluna em mobile para cases */
    .cases .cases-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
    }
    
    .case-card {
        background: var(--white);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    
    .case-image {
        width: 100%;
        height: 220px;
        overflow: hidden;
        position: relative;
    }
    
    .case-image-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .case-card:active .case-image-img {
        transform: scale(1.05);
    }
    
    .case-content {
        padding: 1.75rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .case-title {
        font-size: 1.375rem;
        font-weight: 700;
        color: var(--gray-900);
        margin: 0;
        line-height: 1.3;
    }
    
    .case-description {
        font-size: 0.95rem;
        color: var(--gray-700);
        line-height: 1.6;
        margin: 0;
    }
    
    .case-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--primary-blue);
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: 0.5rem;
    }
    
    .case-link:hover {
        gap: 0.75rem;
    }
    
    /* Section Header - Cases */
    .cases .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cases .section-title {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: var(--gray-900);
    }
    
    .cases .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--gray-700);
        max-width: 100%;
    }
    
    .cases .section-subtitle br {
        display: none;
    }
    
    /* ===== SERVICES SECTION ===== */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    /* ===== BLOG SECTION ===== */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        padding: 1.5rem;
    }
    
    .blog-post-title {
        font-size: 1.125rem;
    }
    
    /* ===== BUTTONS & CTAS ===== */
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    /* ===== SECTION SPACING ===== */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* ===== TYPOGRAPHY ===== */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* ===== ANIMATIONS ===== */
    .hero-animate {
        transform: translateY(20px);
        transition-duration: 0.6s;
    }
    
    /* Delays mais rápidos no mobile */
    .hero-animate[data-delay="0.2"] { transition-delay: 0.1s; }
    .hero-animate[data-delay="0.4"] { transition-delay: 0.2s; }
    .hero-animate[data-delay="0.6"] { transition-delay: 0.3s; }
    .hero-animate[data-delay="0.8"] { transition-delay: 0.4s; }
    .hero-animate[data-delay="1.0"] { transition-delay: 0.5s; }
    .hero-animate[data-delay="1.2"] { transition-delay: 0.6s; }
    .hero-animate[data-delay="1.4"] { transition-delay: 0.7s; }
    .hero-animate[data-delay="1.6"] { transition-delay: 0.8s; }
    
    /* ===== IMAGES ===== */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .case-image-img,
    .blog-img {
        border-radius: 12px;
    }
    
    /* ===== FORMS ===== */
    input,
    textarea,
    select {
        font-size: 16px; /* Previne zoom no iOS */
        padding: 1rem;
    }
    
    /* ===== MODALS & OVERLAYS ===== */
    .modal,
    .overlay {
        padding: 1rem;
    }
    
    /* ===== BLOG SPECIFIC ===== */
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .blog-hero-text {
        max-width: 100%;
    }
    
    .blog-hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .blog-hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .blog-search {
        padding: 1.5rem 0;
    }
    
    .blog-search-box {
        max-width: 100%;
        padding: 1rem;
    }
    
    .blog-search-input {
        font-size: 16px;
        padding: 1rem 1rem 1rem 3rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-post-card {
        padding: 0;
    }
    
    .blog-post-image {
        height: 200px;
    }
    
    .blog-post-content {
        padding: 1.5rem;
    }
    
    .blog-post-title {
        font-size: 1.125rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .blog-post-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .blog-post-tags {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .blog-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.625rem;
    }
    
    .blog-newsletter {
        padding: 3rem 0;
    }
    
    .newsletter-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .newsletter-form {
        width: 100%;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input-group input {
        width: 100%;
        font-size: 16px;
        padding: 1rem;
    }
    
    .newsletter-input-group button {
        width: 100%;
        padding: 1rem 1.5rem;
        justify-content: center;
    }
    
    .newsletter-disclaimer {
        font-size: 0.875rem;
        text-align: center;
        margin-top: 1rem;
    }
    
    /* ===== SERVICE PAGE SPECIFIC (gestao-trafego.html) ===== */
    .service-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-hero-text {
        max-width: 100%;
    }
    
    .service-hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .service-hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Services Grid */
    .services-detailed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-detailed-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .service-detailed-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .service-detailed-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* FAQ Accordion */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        min-height: auto;
    }
    
    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-question-text {
        padding-right: 2rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1rem 1.5rem;
        max-height: 800px;
    }
    
    /* Pricing Cards */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 0;
    }
    
    .pricing-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .pricing-price {
        font-size: 2.5rem;
        margin: 1rem 0;
    }
    
    .pricing-price-small {
        font-size: 1.25rem;
    }
    
    .pricing-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-features {
        margin-bottom: 1.5rem;
    }
    
    .pricing-feature {
        font-size: 0.9rem;
        padding: 0.75rem 0;
    }
    
    .pricing-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    /* Platforms Section */
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .platform-card {
        padding: 2rem 1.5rem;
    }
    
    .platform-logo {
        height: 32px;
        margin-bottom: 1rem;
    }
    
    .platform-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .platform-description {
        font-size: 0.9rem;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .process-number {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .process-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .process-description {
        font-size: 0.9rem;
    }
    
    /* Benefits List */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
    
    .benefit-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
        margin-right: 0.75rem;
    }
    
    /* Traffic Benefits - Hero Section */
    .traffic-benefits {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .traffic-benefits .benefit-item {
        display: flex;
        align-items: center;
        gap: 0.625rem;
        padding: 0.625rem 0;
        font-size: 0.9rem;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .traffic-benefits .benefit-item i {
        color: var(--primary-blue);
        flex-shrink: 0;
        width: 18px;
        height: 18px;
    }
    
    .traffic-benefits .benefit-item span {
        color: var(--gray-700);
        line-height: 1.4;
    }
    
    /* ===== CASES PAGE SPECIFIC (lista-cases.html) ===== */
    .cases-hero {
        padding: 100px 0 60px;
    }
    
    .cases-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cases-hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .cases-hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Cases Grid */
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .cases-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-post-card {
        padding: 0;
        margin-bottom: 0;
        border-radius: 16px;
        overflow: hidden;
        background: var(--white);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }
    
    .case-post-image {
        height: 200px;
        position: relative;
        overflow: hidden;
    }
    
    .case-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .case-post-category {
        position: absolute;
        top: 0.875rem;
        left: 0.875rem;
        font-size: 0.7rem;
        padding: 0.375rem 0.875rem;
        border-radius: 20px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .case-post-badge {
        position: absolute;
        top: 0.875rem;
        right: 0.875rem;
        font-size: 0.7rem;
        padding: 0.375rem 0.875rem;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.95);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
    
    .case-post-content {
        padding: 1.5rem;
    }
    
    .case-post-meta {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }
    
    .case-post-duration,
    .case-post-roi {
        display: flex;
        align-items: center;
        gap: 0.375rem;
        font-size: 0.8rem;
        color: var(--gray-600);
    }
    
    .case-post-title {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 0.875rem;
        font-weight: 700;
    }
    
    .case-post-title a {
        color: var(--gray-900);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .case-post-title a:hover {
        color: var(--primary-blue);
    }
    
    .case-post-excerpt {
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--gray-700);
        margin-bottom: 1.25rem;
    }
    
    .case-post-results {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .result-item {
        background: var(--gray-50);
        padding: 0.875rem;
        border-radius: 8px;
        text-align: center;
    }
    
    .result-value {
        display: block;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 0.25rem;
    }
    
    .result-label {
        display: block;
        font-size: 0.7rem;
        color: var(--gray-600);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
    }
    
    .case-post-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .case-tag {
        font-size: 0.7rem;
        padding: 0.375rem 0.75rem;
        border-radius: 6px;
    }
    
    .case-post-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        padding: 0.875rem 1.5rem;
        background: var(--primary-blue);
        color: var(--white);
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
        justify-content: center;
    }
    
    .case-post-link:hover {
        background: var(--secondary-blue);
        transform: translateY(-2px);
    }
    
    /* Cases Filter */
    .cases-filter {
        padding: 1.5rem 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-buttons {
        flex-wrap: nowrap;
        gap: 0.75rem;
        padding: 0 1rem;
        overflow-x: auto;
    }
    
    .filter-btn {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
        white-space: nowrap;
        min-width: auto;
    }
    
    /* Cases Stats */
    .cases-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Case CTA Section */
    .case-cta-section {
        padding: 3rem 1rem;
        text-align: center;
    }
    
    .case-cta-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .case-cta-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .case-cta-button {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    /* ===== SOBRE PAGE SPECIFIC (sobre.html) ===== */
    
    /* Hero Stats */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem 1.25rem;
        background: var(--white);
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 100px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: var(--gray-700);
        font-weight: 500;
        line-height: 1.3;
    }
    
    /* Partners Section */
    .partners-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-item {
        width: 100%;
    }
    
    .partner-badge {
        background: var(--white);
        padding: 2rem 1.5rem;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: 240px;
        justify-content: center;
    }
    
    .partner-logo {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        background: var(--gray-50);
        border-radius: 12px;
        padding: 1rem;
    }
    
    .partner-logo img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .google-logo img {
        max-width: 70px;
    }
    
    .meta-logo img {
        max-width: 50px;
    }
    
    .analytics-logo img {
        max-width: 55px;
    }
    
    .badge-title {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--gray-900);
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .badge-description {
        font-size: 0.875rem;
        color: var(--gray-600);
        line-height: 1.6;
    }
}

/* Para usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
    .hero-animate {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
}

/* Animações para botões - Simples e Elegantes */

.map-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: var(--white);
    padding: 0;
}

.map-container {
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 5rem 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    font-family: var(--font-manrope);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem; /* Consistente com footer-title */
    letter-spacing: -0.02em;
}

.footer-tagline {
    color: var(--gray-400);
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.footer-description {
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-top: 0;
    margin-bottom: 0; /* Remove margem inferior extra */
    line-height: 1.4;
    letter-spacing: 0.01em;
    max-width: 400px;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 0; /* Adicione isso */
    letter-spacing: 0.01em;
}

.footer-menu {
    list-style: none;
    margin: 0; /* Importante! */
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.4rem;
}

.footer-menu li:first-child {
    margin-top: 0;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-menu a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.8rem;
}

.footer-menu a:hover {
    color: var(--white);
}

.contact-info {
    margin-top: 0; /* Remove margem superior extra */
}

.contact-info p {
    margin-bottom: 0.4rem;
}

.contact-info p:first-child {
    margin-top: 0;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.8rem;
}

.contact-info a:hover {
    color: var(--gray-400);
    font-size: 0.75rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-blue);
    border-radius: 50%;
    transition: all var(--transition-normal);
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    color: var(--white);
    transform: scale(1.1);
}

.social-link svg,
.social-link i {
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2.5rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* ===== NEW FOOTER STYLES ===== */
.footer-new {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

.footer-main {
    padding: 80px 0 60px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-section .footer-logo {
    font-family: var(--font-manrope);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--gray-400);
    line-height: 1.5;
    max-width: 320px;
}

.footer-nav-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-title {
    font-family: var(--font-manrope);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

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

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.contact-link:hover {
    color: var(--white);
}

.contact-link i {
    color: var(--gray-400);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.contact-link:hover i {
    color: var(--white);
}

.footer-social-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.social-link-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-new:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
}

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

.copyright {
    color: var(--gray-500);
    font-size: 0.8rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

/* New Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-social-section {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }
    
    .footer-nav-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .social-links-new {
        justify-content: center;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .form-container {
        padding: 0 1rem;
    }

    .form-card {
        padding: 2rem 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    /* Mega Menu Mobile */
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin: 0;
        background: rgba(21, 74, 255, 0.02);
    }

    .mega-menu::before {
        display: none;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .mega-menu-section {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(21, 74, 255, 0.08);
        padding-bottom: 1rem;
    }

    .mega-menu-section:last-child {
        border-bottom: none;
    }

    .mega-menu-cta {
        margin-top: 1rem;
    }

    .hamburger {
        display: flex;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(21, 74, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: none;
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(21, 74, 255, 0.4);
}

.back-to-top i,
.back-to-top svg {
    color: white;
    stroke: white;
    fill: none;
    transition: all 0.3s ease;
}

/* WhatsApp Button Styles with Enhanced Animations */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 2s infinite, whatsapp-float 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(37, 211, 102, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.whatsapp-float:hover::before {
    transform: translateX(100%);
}

.whatsapp-float:active {
    transform: scale(1.05);
    transition: transform 0.1s;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

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



/* Responsividade dos botões flutuantes */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

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

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

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .differentials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .case-post-results {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .result-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .result-item:last-child {
        border-bottom: none;
    }
    
    .result-value {
        font-size: 1.125rem;
        margin-bottom: 0;
    }
    
    .result-label {
        font-size: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }



    .map-container iframe {
        height: 300px;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        padding-top: 60px; /* Espaçamento ainda menor em telas pequenas */
    }

    .hero-container {
        padding: 0 15px;
        min-height: calc(100vh - 60px);
    }
    
    .hero-content {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 36px;
    }

    .service-card,
    .case-card,
    .blog-card {
        margin: 0 10px;
    }




    .about-image {
        height: 300px;
    }
}





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

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

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

.fade-in-scale {
    animation: fadeInScale 0.8s ease forwards;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Scroll suave para âncoras */
html {
    scroll-behavior: smooth;
}

/* Elementos com animação de entrada */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.animate-on-scroll-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.animate-on-scroll-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* ===== SEÇÃO DE ESTATÍSTICAS ===== */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.stats .section-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.stats .section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    letter-spacing: 0.01em;
    max-width: 700px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
    min-height: 320px;
    height: auto;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 105, 9, 0.12);
    border-color: rgba(255, 105, 9, 0.2);
}

.stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
    background: rgba(255, 105, 9, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 105, 9, 0.2);
    flex-shrink: 0;
}

.stat-icon i {
    color: var(--accent-gold);
    stroke-width: 1.5;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-family: var(--font-manrope);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 0 8px 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.stat-label {
    font-family: var(--font-inter);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
    letter-spacing: 0.01em;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 8px 0;
    display: block;
    white-space: normal;
    overflow: visible;
    flex-grow: 1;
}

/* Layout responsivo para os cards */
@media (max-width: 768px) {
    .stats .section-title {
        white-space: normal;
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    
    .stat-item {
        min-height: 280px;
        height: auto;
        padding: 32px 20px;
    }
    
    .stat-label {
        font-size: 0.85rem;
        max-width: 200px;
        height: auto;
        min-height: auto;
        max-height: none;
    }
}

.stats-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}



@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 28px 18px;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 80px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 32px 20px;
        min-height: 240px;
    }
    
    .stat-number {
        font-size: 2.2rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.95rem;
        font-weight: 400;
        max-width: 300px;
        line-height: 1.5;
        word-wrap: break-word;
        height: auto;
        min-height: auto;
        max-height: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Aprimoramentos de mobile para a seção de números (index) */
@media (max-width: 768px) {
    .stats .stats-grid {
        gap: 24px;
    }
    
    .stats .stat-item {
        padding: 36px 24px;
        min-height: 280px;
    }
    
    .stats .stat-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 12px;
    }
    
    .stats .stat-icon i,
    .stats .stat-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .stats .stat-number {
        font-size: 2.6rem;
    }
    
    .stats .stat-label {
        font-size: 1rem;
        max-width: 320px;
        line-height: 1.6;
    }
}

/* ===== SEÇÃO DE PARCEIROS ===== */
.partners {
    padding: 100px 0;
    background: url('assets/Artboard-2.svg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.partners .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.partners .section-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.partners .section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
    letter-spacing: 0.01em;
    max-width: 700px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.partner-item {
    display: flex;
    justify-content: center;
}

.partner-badge {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    max-width: 350px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.partner-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partner-badge:hover::before {
    transform: scaleX(1);
}

.partner-badge:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.partner-badge:hover .partner-logo {
    background: var(--light-blue);
    transform: scale(1.1);
}

.partner-logo svg,
.partner-logo img {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    object-fit: contain;
}

.partner-badge:hover .partner-logo svg,
.partner-badge:hover .partner-logo img {
    transform: scale(1.1);
}

.google-logo svg,
.google-logo img {
    width: 80px;
    height: 26px;
}

.meta-logo svg,
.meta-logo img {
    width: 32px;
    height: 32px;
}

.analytics-logo svg,
.analytics-logo img {
    width: 50px;
    height: 50px;
}

.badge-title {
    font-family: var(--font-manrope);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 15px;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
}

.partner-badge:hover .badge-title {
    color: var(--primary-blue);
}

.badge-description {
    font-family: var(--font-inter);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .partners {
        padding: 80px 0;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partner-badge {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .partner-logo {
        width: 70px;
        height: 70px;
    }
    
    .partner-logo svg,
    .partner-logo img {
        width: 45px;
        height: 45px;
    }
    
    .google-logo svg,
    .google-logo img {
        width: 70px;
        height: 23px;
    }
    
    /* Aumenta Analytics para equilibrar com Meta no mobile */
    .analytics-logo svg,
    .analytics-logo img {
        width: 58px;
        height: 58px;
    }
    
    /* Diminui apenas o logo da Meta no mobile */
    .meta-logo svg,
    .meta-logo img {
        width: 38px;
        height: 38px;
    }
    
    .badge-title {
        font-size: 1.2rem;
        font-weight: 500;
    }
}

/* ===== SEÇÃO COMO FAZEMOS ===== */
.how-we-work {
    padding: 100px 0;
    background: var(--white);
}

.how-we-work .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-we-work .section-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.how-we-work .section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
    letter-spacing: 0.01em;
    max-width: 700px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.process-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--gray-50);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.process-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(21, 74, 255, 0.12);
    border-color: rgba(21, 74, 255, 0.2);
}

.process-item:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(21, 74, 255, 0.1) 0%, rgba(139, 69, 255, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all var(--transition-normal);
}

.process-icon i {
    color: var(--primary-blue);
    stroke-width: 1.5;
}

.process-title {
    font-family: var(--font-manrope);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.process-description {
    font-family: var(--font-inter);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

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

/* Removido estilos específicos para padronizar com outros botões */

@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .how-we-work {
        padding: 80px 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-item {
        padding: 30px 20px;
    }
    
    .process-title {
        font-size: 1.2rem;
        font-weight: 500;
    }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus states para acessibilidade */
.btn:focus,
.nav-link:focus,
.social-link:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}


/* ===== ESTILOS ESPECÍFICOS DO BLOG ===== */

/* Hero do Blog */
.blog-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(21,74,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.blog-hero-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-hero-text {
    max-width: 600px;
}

.blog-hero-title {
    font-family: var(--font-manrope);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.blog-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.blog-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-hero-placeholder {
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(21, 74, 255, 0.2);
    transition: all var(--transition-normal);
}

.blog-hero-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(21, 74, 255, 0.3);
}

/* Hero dos Cases */
.cases-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cases-hero::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(21,74,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.cases-hero-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.cases-hero-text {
    max-width: 600px;
}

.cases-hero-title {
    font-family: var(--font-manrope) !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 500 !important;
    color: var(--gray-900) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.03em !important;
}

.cases-hero-subtitle {
    font-size: 1.1rem !important;
    color: var(--gray-600) !important;
    line-height: 1.6 !important;
    letter-spacing: 0.01em !important;
}

.cases-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cases-hero-placeholder {
    width: 140px;
    height: 140px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(21, 74, 255, 0.2);
    transition: all var(--transition-normal);
}

.cases-hero-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(21, 74, 255, 0.3);
}

/* Filtros do Blog e Cases */
.blog-filters,
.cases-filters {
    padding: 2.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filters-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--font-inter);
    transition: all var(--transition-normal);
    background: var(--white);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(21, 74, 255, 0.08);
}

.search-box input::placeholder {
    color: var(--gray-500);
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-600);
    border-radius: 8px !important;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    font-family: var(--font-inter);
}

.filter-tab:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: rgba(21, 74, 255, 0.05);
    border-radius: 8px !important;
}

.filter-tab.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    border-radius: 8px !important;
}

/* Posts do Blog */
.blog-posts {
    padding: 5rem 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}


.blog-post-image {
    position: relative;
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-placeholder {
    color: var(--white);
    opacity: 0.9;
}

.blog-post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.blog-post-content {
    padding: 2.5rem;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-post-title {
    font-family: var(--font-manrope);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 1.2rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.blog-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.blog-post-title a:hover {
    color: var(--primary-blue);
}

.blog-post-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.blog-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 400;
    transition: all var(--transition-normal);
}

.blog-tag:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.blog-post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.blog-post-link:hover {
    color: var(--accent-purple);
    gap: 0.75rem;
}

/* Paginação */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-600);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: rgba(21, 74, 255, 0.05);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-number {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-600);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: rgba(21, 74, 255, 0.05);
}

.pagination-number.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.pagination-dots {
    color: var(--gray-400);
    font-weight: 500;
}

/* Newsletter */
.blog-newsletter {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.blog-newsletter::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(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    background: var(--white);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-family: var(--font-inter);
    color: var(--gray-800);
}

.newsletter-input-group input:focus {
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: var(--gray-500);
}

.newsletter-input-group .btn {
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Link ativo na navegação */
.nav-link.active {
    color: var(--primary-blue);
    font-weight: 500;
}

/* ========================================
   BLOG ARTICLE PAGE
======================================== */

/* Breadcrumb */
.breadcrumb {
    background: var(--gray-50);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.breadcrumb-link {
    color: var(--gray-600);
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

.breadcrumb-current {
    color: var(--gray-900);
    font-weight: 500;
}

/* Article Header */
.article-header {
    background: var(--white);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-category {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.article-date,
.article-read-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.article-title {
    font-family: var(--font-manrope);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.article-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.article-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

/* Featured Image */
.article-featured-image {
    background: var(--white);
    padding: 2rem 0;
}

.featured-image-container {
    max-width: 1000px;
    margin: 0 auto;
}

.featured-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.featured-image-placeholder i {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.featured-image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Article Content */
.article-content {
    background: var(--white);
    padding: 3rem 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.article-main {
    min-width: 0;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.article-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 8px 8px 0;
}

.article-body h2 {
    font-family: var(--font-manrope);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
}

.article-body h3 {
    font-family: var(--font-manrope);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 2.5rem 0 1rem;
    line-height: 1.4;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Highlight Boxes */
.highlight-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--blue-50);
    border: 1px solid var(--blue-200);
    border-radius: 12px;
    margin: 2rem 0;
}

.highlight-box.highlight-warning {
    background: var(--orange-50);
    border-color: var(--orange-200);
}

.highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.highlight-warning .highlight-icon {
    background: var(--orange-500);
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Article Quote */
.article-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--gray-50);
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.quote-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gray-800);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-author {
    text-align: right;
}

.quote-author cite {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-style: normal;
    font-weight: 500;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-card {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal);
}

.tip-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 1rem;
}

.tip-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.tip-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Metrics Table */
.metrics-table {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-name {
    font-weight: 600;
    color: var(--gray-900);
}

.metric-description {
    color: var(--gray-600);
    line-height: 1.5;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.widget-title {
    font-family: var(--font-manrope);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

/* Author Card */
.author-card {
    text-align: center;
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.related-post:hover {
    background: var(--gray-100);
    transform: translateX(4px);
}

.related-post-image {
    flex-shrink: 0;
}

.related-placeholder {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.related-post-content {
    flex: 1;
}

.related-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.related-post-date {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
}

/* Newsletter Widget */
.newsletter-widget p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form-widget {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-form-widget input {
    padding: 0.8rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-inter);
}

.newsletter-form-widget input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(21, 74, 255, 0.08);
}

/* Social Sharing */
.article-sharing {
    background: var(--gray-50);
    padding: 2rem 0;
    border-top: 1px solid var(--gray-100);
}

.sharing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sharing-title {
    font-family: var(--font-manrope);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.sharing-buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

.sharing-buttons::-webkit-scrollbar {
    height: 4px;
}

.sharing-buttons::-webkit-scrollbar-track {
    background: transparent;
}

.sharing-buttons::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 2px;
}

.sharing-buttons::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.share-facebook {
    background: #1877f2;
    color: var(--white);
}

.share-twitter {
    background: #1da1f2;
    color: var(--white);
}

.share-linkedin {
    background: #0077b5;
    color: var(--white);
}

.share-whatsapp {
    background: #25d366;
    color: var(--white);
}

.share-telegram {
    background: #0088cc;
    color: var(--white);
}

.share-copy {
    background: var(--gray-600);
    color: var(--white);
}

.share-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rss-subscribe {
    margin-top: 1rem;
}

.rss-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

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

/* Related Articles */
.related-articles {
    background: var(--white);
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-article-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.related-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.related-article-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.related-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: var(--white);
}

.related-article-content {
    padding: 2rem;
}

.related-article-category {
    display: inline-block;
    background: var(--blue-100);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.related-article-title {
    font-family: var(--font-manrope);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.related-article-excerpt {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.related-article-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.related-article-link:hover {
    color: var(--secondary-blue);
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 600;
    color: var(--orange-500);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.cta-final .btn {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-final .btn:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Força a cor laranja no título da seção CTA */
.cta-final .cta-title {
    color: var(--orange-500) !important;
}

/* CTA Responsive */
@media (max-width: 768px) {
    .cta-final {
        padding: 2.5rem 0;
    }
    
    .cta-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Article Responsive */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
    }
    
    .sidebar-widget {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .article-header {
        padding: 2rem 0 1.5rem;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .featured-image-placeholder {
        height: 250px;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .article-content {
        padding: 2rem 0;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.7rem;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
    }
    
    .article-intro {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .sharing-buttons {
        gap: 0.6rem;
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .share-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-subtitle {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.2rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .related-article-content {
        padding: 1.5rem;
    }
    
    .related-article-title {
        font-size: 1.2rem;
    }
}

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

/* ========================================
   LANDING PAGE GESTÃO DE TRÁFEGO
======================================== */

/* Traffic Hero Section */
.traffic-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 140px 20px 100px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.traffic-hero .container {
    position: relative;
    z-index: 3;
}

.traffic-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 74, 255, 0.85) 0%, rgba(15, 63, 217, 0.85) 100%);
    z-index: 1;
}

.traffic-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
}

.traffic-hero-title {
    font-family: var(--font-manrope);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.traffic-hero-title .highlight {
    color: var(--orange-400);
    font-weight: 600;
}

.traffic-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.95;
}

.traffic-benefits {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.benefit-item i {
    color: var(--green-400);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
}

.traffic-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.traffic-hero-form {
    background: var(--white) !important;
    border-radius: 16px;
    padding: 2rem 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(21, 74, 255, 0.1);
    min-width: 0;
}

.traffic-hero-form .form-group input,
.traffic-hero-form .form-group select,
.traffic-hero-form .form-group textarea {
    font-size: 0.75rem;
    padding: 0.7rem 0.9rem;
}


.form-container {
    position: relative;
    z-index: 1;
    color: var(--gray-900);
    background: var(--white) !important;
}

.form-title {
    font-family: var(--font-manrope);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}



.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0.8rem;
}

.form-section-title {
    font-family: var(--font-manrope);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title::before {
    content: '';
    width: 3px;
    height: 16px;
    background: var(--primary-blue);
    border-radius: 2px;
}


.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
}

.form-submit {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    margin-top: 0.8rem;
    transition: all var(--transition-normal);
}

.form-submit:hover {
    box-shadow: 0 8px 25px rgba(21, 74, 255, 0.3);
}

/* Process Section */
.traffic-process {
    padding: 100px 0;
    background: var(--white);
}

.process-sequence {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
}

.process-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    cursor: pointer;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    opacity: 0.1;
    z-index: 0;
}

.process-step > * {
    position: relative;
    z-index: 1;
}

/* Gradiente de cores para cada etapa */
.step-1 {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: var(--white);
}

.step-2 {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: var(--white);
}

.step-3 {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: var(--white);
}

.step-4 {
    background: linear-gradient(135deg, #059669, #10b981);
    color: var(--white);
}

.step-5 {
    background: linear-gradient(135deg, #047857, #34d399);
    color: var(--white);
}

/* Setas conectoras */
.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1.5rem;
    margin: 0 0.5rem;
    flex-shrink: 0;
    align-self: center;
    height: 80px;
}

.process-arrow i {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.process-arrow:hover i {
    background: var(--orange-500);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.process-step:hover {
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.25);
    border-color: var(--orange-400);
    background: linear-gradient(135deg, var(--orange-50) 0%, var(--orange-100) 100%);
}

.process-step:hover .step-number {
    color: var(--orange-600);
    text-shadow: none;
}

.process-step:hover .step-title {
    color: var(--orange-800);
    text-shadow: none;
}

.process-step:hover .step-description {
    color: var(--orange-700);
}

.process-step:hover .step-icon {
    background: var(--orange-500);
    border-color: var(--orange-400);
    color: var(--white);
}

.step-number {
    font-family: var(--font-manrope);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-title {
    font-family: var(--font-manrope);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    flex-shrink: 0;
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    transition: all 0.3s ease;
    text-align: center;
}

.step-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 6.5rem;
    padding: 0 0.5rem;
}

.process-stats {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.stats-header {
    margin-bottom: 2.5rem;
}

.stats-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.stats-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 130px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    box-shadow: 0 8px 25px rgba(21, 74, 255, 0.15);
    border-color: var(--primary-blue);
}

.stat-number {
    font-family: var(--font-manrope);
    font-size: clamp(1.8rem, 2.8vw, 2.3rem);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.6rem;
    line-height: 1.2;
    flex-shrink: 0;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    flex-grow: 1;
    display: block;
    white-space: normal;
    overflow: visible;
    height: auto;
    min-height: auto;
    max-height: none;
}

/* Ads Platforms Section */
.ads-platforms-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.platforms-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.platform-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.platform-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.platform-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.google-platform::before {
    background: linear-gradient(90deg, #4285f4, #34a853);
}

.meta-platform::before {
    background: linear-gradient(90deg, #1877f2, #42a5f5);
}

.platform-logo {
    margin-bottom: 2rem;
    text-align: center;
    flex-shrink: 0;
    height: 80px; /* Aumentei para acomodar melhor */
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-logo img {
    max-width: 100%;
    max-height: 60px; /* Altura máxima consistente */
    width: auto;
    height: auto;
    object-fit: contain; /* Mantém proporção */
}

/* Ajustes específicos para cada logo */
.google-platform .platform-logo img {
    max-height: 50px; /* Google logo é mais largo, então pode ser menor */
}

.meta-platform .platform-logo img {
    max-height: 60px; /* Meta logo é quadrado, pode ser um pouco maior */
}

.platform-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
    flex-shrink: 0;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 1.5rem 0;
    text-align: center;
    min-height: 3rem;
}

.platform-formats {
    margin: 1.5rem 0;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.formats-title {
    font-family: var(--font-manrope);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: left;
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.platform-why {
    margin: 0.5rem 0 1rem 0;
}

.why-title {
    font-family: var(--font-manrope);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: left;
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.platform-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.platform-benefits .benefit-item {
    color: var(--gray-700);
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Padronização de todos os ícones de check e bullets */
i[data-lucide="check-circle"],
i[data-lucide="check"],
i[data-lucide="check-square"],
.benefit-item i[data-lucide],
.platform-benefits i[data-lucide],
.promises-benefits i[data-lucide] {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
}

/* Força os SVGs dentro dos ícones Lucide a terem o mesmo tamanho */
i[data-lucide="check-circle"] svg,
i[data-lucide="check"] svg,
i[data-lucide="check-square"] svg,
.benefit-item i[data-lucide] svg,
.platform-benefits i[data-lucide] svg,
.promises-benefits i[data-lucide] svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
}

/* Estilo para emojis de check */
.emoji-check {
    font-size: 20px !important;
    line-height: 1 !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.platform-benefits .benefit-item i {
    color: var(--green-500);
    flex-shrink: 0;
    margin-top: 0.1rem;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
}

.platform-benefits .benefit-item strong {
    color: var(--gray-900);
    font-weight: 600;
}

.platform-item .btn {
    margin-top: auto;
    flex-shrink: 0;
    width: 100%;
    justify-content: center;
}

.unified-channels {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background: var(--primary-blue);
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.channel-item:hover {
    color: var(--orange-100);
    transform: scale(1.05);
}

.channel-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.channel-item:hover i {
    background: var(--orange-500);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}


/* No Empty Promises Section */
.no-promises-section {
    padding: 3rem 0;
    background: var(--white);
}

.promises-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.promises-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.promises-main-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.promises-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.promises-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1rem 0;
}

.promises-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.promises-benefits .benefit-item i {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    color: var(--green-500);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.promises-cta {
    background: var(--gray-50);
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary-blue);
}

.promises-cta h4 {
    font-family: var(--font-manrope);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.3;
}

.promises-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-normal);
    width: 100%;
    max-width: 220px;
    min-height: 120px;
}

.logo-item:hover {
    border-color: var(--primary-blue);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.platform-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    min-height: 60px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1024px) {
    .promises-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .promises-logos {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .logo-item {
        max-width: 180px;
        min-height: 100px;
    }
    
    .platform-logo-img {
        max-height: 70px;
        min-height: 50px;
    }
}

@media (max-width: 768px) {
    .no-promises-section {
        padding: 2rem 0;
    }
    
    .promises-content {
        gap: 1.5rem;
    }
    
    .promises-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-item {
        max-width: 160px;
        min-height: 90px;
        padding: 1.5rem;
    }
    
    .platform-logo-img {
        max-height: 60px;
        min-height: 40px;
    }
}

/* About Page Styles */
.about-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.about-hero-title {
    font-family: var(--font-manrope);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-hero-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.about-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-cta {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
}

.cta-question {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Mission Parallax Section */
.mission-parallax-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.parallax-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.3) contrast(1.1);
    transform: translateZ(0);
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

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

.highlight-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Parallax Effect */
@media (prefers-reduced-motion: no-preference) {
    .parallax-image {
        transform: translateY(-20px) scale(1.05);
        transition: transform 0.3s ease-out;
    }
    
    .mission-parallax-section:hover .parallax-image {
        transform: translateY(-30px) scale(1.08);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .mission-parallax-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .mission-parallax-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .mission-parallax-section {
        height: 45vh;
        min-height: 300px;
    }
    
    .mission-parallax-content {
        padding: 0 1rem;
    }
    
    .highlight-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    
    .highlight-description {
        font-size: 1rem;
    }
}

/* Strategy Section */
.strategy-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.strategy-content {
    max-width: 800px;
    margin: 0 auto;
}

.strategy-title {
    font-family: var(--font-manrope);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 2rem;
    text-align: center;
}

.strategy-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: center;
}

.strategy-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.strategy-benefit {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: all var(--transition-normal);
}

.strategy-benefit:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.strategy-benefit h3 {
    font-family: var(--font-manrope);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.4;
}

.strategy-cta {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-blue);
}

.cta-title {
    font-family: var(--font-manrope);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--orange-500);
    margin-bottom: 2rem;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-hero-image {
        order: -1;
    }
    
    .strategy-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    .about-hero-content {
        gap: 2rem;
    }
    
    .mission-section,
    .strategy-section {
        padding: 3rem 0;
    }
    
    .mission-highlight,
    .strategy-cta {
        padding: 2rem;
    }
    
    .strategy-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Target Audience Section */
.target-audience {
    padding: 60px 0;
    background: var(--gray-50);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.audience-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.audience-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: var(--blue-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.audience-title {
    font-family: var(--font-manrope);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 1rem;
    flex-shrink: 0;
    height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
}

.audience-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    flex-grow: 1;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 4.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0 40px 0;
    background: var(--white);
}

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

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    min-height: 80px;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.faq-question {
    padding: 1.5rem;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
    border: none;
    width: 100%;
}

.faq-question:hover {
    background: transparent;
}

.faq-question h3 {
    font-family: var(--font-manrope);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-900);
    margin: 0;
}

.faq-question i {
    color: var(--gray-400);
    transition: transform var(--transition-normal);
}

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

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

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

.faq-item.active {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

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

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: transparent;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: transparent;
    border-radius: 8px;
    transition: all var(--transition-normal);
    filter: grayscale(100%);
    opacity: 0.7;
    height: 120px;
    min-height: 120px;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    height: auto;
}

/* Contact Section */
.contact-section {
    padding: 40px 0 100px 0;
    background: var(--white);
}

/* Contact Info within Contact Section */
.contact-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--gray-600) !important;
    background: transparent !important;
    flex-shrink: 0;
    margin-top: 0.1rem;
    transition: none !important;
}

.contact-item:hover i,
.contact-item i:hover {
    color: var(--gray-600) !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    transform: none !important;
    box-shadow: none !important;
}


.contact-item a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    transform: none !important;
}

.contact-item a:hover {
    color: var(--primary-blue);
    transform: none !important;
}


.address-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    transform: none !important;
}

.address-info:hover {
    color: var(--primary-blue);
    transform: none !important;
}

.address-info span {
    font-weight: 400;
    line-height: 1.3;
    font-size: 0.9rem;
    transform: none !important;
}

.address-info:hover span {
    transform: none !important;
}


.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-map {
    flex: 1;
    display: flex;
    margin-top: 1.5rem;
}

.contact-map iframe {
    border: 0;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.contact-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.contact-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-form-container {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
}

.contact-form .form-grid {
    gap: 0.7rem;
}

.contact-form .recaptcha-container {
    margin: 0.6rem 0;
}

.contact-form .form-submit {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    margin-top: 0.6rem;
}

.contact-form .form-group textarea {
    min-height: 70px;
}




/* Traffic Landing Page Responsive */
@media (max-width: 1024px) {
    .traffic-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        max-width: 100%;
    }
    
    .process-sequence {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
        height: auto;
    }
    
    .process-step {
        min-width: auto;
        max-width: 400px;
        min-height: 450px;
    }
    
    .step-title {
        height: 4.2rem;
    }
    
    .step-description {
        min-height: 5.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-header {
        margin-bottom: 2rem;
    }
    
    .stats-title {
        font-size: clamp(1.2rem, 2vw, 1.5rem);
    }
    
    .stat-item {
        min-height: 110px;
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: clamp(1.6rem, 2.2vw, 2rem);
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    .google-ads-content,
    .meta-ads-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 100%;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .traffic-hero {
        padding: 100px 20px 60px;
    }
    
    .traffic-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .traffic-hero-form .form-group input,
    .traffic-hero-form .form-group select,
    .traffic-hero-form .form-group textarea {
        font-size: 0.72rem;
        padding: 0.65rem 0.85rem;
    }
    
    .traffic-hero-title {
        font-size: 2.2rem;
    }
    
    .traffic-hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .traffic-hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Hero - Benefícios no mobile: texto branco e itens mais próximos */
    .traffic-benefits {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .traffic-benefits .benefit-item {
        gap: 0.5rem;
        margin-bottom: 0.4rem;
        padding: 0.35rem 0;
    }
    
    .traffic-benefits .benefit-item span {
        color: #fff;
    }
    
    .process-sequence {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    /* Website - Os 4 Pilares: força 1 coluna no mobile */
    #pilares .process-sequence {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        justify-items: center !important;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
        height: auto;
    }
    
    .process-step {
        min-width: auto;
        max-width: 350px;
        min-height: 320px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-header {
        margin-bottom: 1.5rem;
    }
    
    .stats-title {
        font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    }
    
    .stat-item {
        min-height: 95px;
        padding: 1.2rem 1rem;
    }
    
    .stat-number {
        font-size: clamp(1.4rem, 1.8vw, 1.8rem);
        margin-bottom: 0.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        height: auto;
        min-height: auto;
        max-height: none;
        line-height: 1.2;
    }
    
    .google-channels,
    .meta-channels {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-item {
        min-height: 260px;
    }
    
    .client-logo {
        height: 110px;
        min-height: 110px;
        padding: 1.2rem;
    }
    
}

@media (max-width: 480px) {
    .traffic-hero-form {
        padding: 1.5rem 1.2rem;
    }
    
    .traffic-hero-form .form-group input,
    .traffic-hero-form .form-group select,
    .traffic-hero-form .form-group textarea {
        font-size: 0.7rem;
        padding: 0.6rem 0.8rem;
    }
    
    .form-section {
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }
    
    .form-section-title {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .form-title {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .contact-form-container {
        padding: 1.2rem;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .contact-form .form-grid {
        gap: 0.6rem;
    }
    
    .contact-form .form-submit {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .audience-item {
        padding: 2rem 1.5rem;
        min-height: 250px;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .client-logo {
        height: 100px;
        min-height: 100px;
        padding: 1rem;
    }
    
    .contact-info {
        margin-top: 1.5rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .address-info span {
        font-size: 0.85rem;
    }
    
    .social-links {
        margin-top: 1.2rem;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
}

/* Responsividade do Blog e Cases - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .blog-hero-content,
    .cases-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Cases grid mantém 2 colunas apenas em tablets, não em mobile */
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin: 3.5rem 0;
    }
}

/* Regra específica para mobile - Cases Grid */
@media (max-width: 768px) {
    /* Força cases grid a exibir 1 coluna em mobile */
    .cases-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
    }
}

/* Responsividade para Ads Platforms Section */
@media (max-width: 768px) {
    .ads-platforms-section {
        padding: 80px 0;
    }
    
    .traffic-process {
        padding: 80px 0;
    }
    
    .platforms-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .platform-item {
        padding: 2rem;
    }
    
    .platform-title {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
        min-height: 2.8rem;
    }
    
    .formats-title,
    .why-title {
        min-height: 2rem;
    }
    
    .unified-channels {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .channel-item {
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 480px) {
    .unified-channels {
        flex-direction: column;
        gap: 1rem;
    }
    
    .channel-item {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 80px;
    }
    
    .cases-hero {
        padding: 120px 0 70px;
    }
    
    /* Harmonização do hero do blog no mobile */
    .blog-hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        max-width: 720px;
        margin: 0 auto;
    }
    
    .blog-hero-title {
        font-size: clamp(1.5rem, 5vw, 1.9rem) !important;
        line-height: 1.25 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.55 !important;
        color: var(--gray-700) !important;
    }
    
    .blog-hero-image {
        display: flex;
        justify-content: center;
    }
    
    /* Harmonização do hero dos cases no mobile */
    .cases-hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        max-width: 720px;
        margin: 0 auto;
    }
    
    .cases-hero-title {
        font-size: clamp(1.5rem, 5vw, 1.9rem) !important;
        line-height: 1.25 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .cases-hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.55 !important;
        color: var(--gray-700) !important;
    }
    
    .cases-hero-image {
        display: flex;
        justify-content: center;
    }
    
    .blog-filters,
    .cases-filters {
        position: static;
        padding: 2rem 0;
    }
    
    .filters-content {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    
    .search-box {
        max-width: none;
    }
    
    .filter-tabs {
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .blog-post-content {
        padding: 2rem;
    }
    
    .blog-pagination {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .pagination-numbers {
        order: -1;
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input-group .btn {
        width: 100%;
    }
    
    /* Harmonização da seção de newsletter no mobile */
    .blog-newsletter {
        padding: 60px 0;
    }
    
    .newsletter-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        max-width: 720px;
        margin: 0 auto;
    }
    
    .newsletter-title {
        font-size: clamp(1.5rem, 5vw, 1.9rem);
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
        line-height: 1.55;
        color: #fff;
    }
    
    .newsletter-input-group {
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .newsletter-input-group input[type="email"] {
        width: 100%;
        height: 52px;
        padding: 0 1rem;
        font-size: 1rem;
    }
    
    .newsletter-disclaimer {
        font-size: 0.875rem;
        color: #fff;
        margin-top: 0.75rem;
    }
}

@media (max-width: 480px) {
    .blog-hero-placeholder {
        width: 160px;
        height: 160px;
    }
    
    .cases-hero-placeholder {
        width: 110px;
        height: 110px;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .blog-post-content {
        padding: 1.8rem;
    }
    
    .pagination-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .pagination-number {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}

/* Print styles */
@media print {
    .header,
    .hero-bg,
    .btn,
    .social-links {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Privacy Link Styles */
.privacy-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}
