/* ===== VARIÁVEIS CSS GLOBAIS ===== */
:root {
    /* Cores Principais */
    --primary-color: #00BFFF;      
    --secondary-color: #FF9E00;    
    --dark-color: #030B17;         
    --dark-blue: #051428;          
    --light-color: #f3f4f6;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --alert-primary-color: #DC2626;
    --alert-dark-red: #B91C1C;
    
    /* Sistema de Cores */
    --text-color: rgba(255, 255, 255, 1);
    --background-color: #030B17;
    --card-bg: rgba(5, 20, 40, 0.85);
    --gray-100: rgba(255, 255, 255, 0.1);
    --gray-200: rgba(255, 255, 255, 0.2);
    --gray-300: rgba(255, 255, 255, 0.3);
    --gray-400: rgba(255, 255, 255, 0.4);
    --gray-500: rgba(255, 255, 255, 0.6);
    --gray-600: rgba(255, 255, 255, 0.75);
    --gray-700: rgba(255, 255, 255, 0.85);
    --gray-800: rgba(255, 255, 255, 0.95);
    --gray-900: rgba(255, 255, 255, 1);
    
    /* Efeitos e Sombras */
    --border-radius: 4px;
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    --blue-glow: 0 0 15px rgba(0, 191, 255, 0.5);
    --orange-glow: 0 0 15px rgba(255, 158, 0, 0.5);
    --transition: all 0.3s ease;
    
    /* Efeitos Glass */
    --glass-bg: rgba(5, 20, 40, 0.15);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
    --glass-blur: blur(8px);
    
    /* Tipografia */
    --title-font: 'Poppins', sans-serif;
    --body-font: 'Nunito', sans-serif;
    --alt-font: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
    min-height: 100vh;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
    background-image: url('../images/hero_background.png') !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-position: center !important;
    background-size: cover !important;
    min-height: 100%;
    overflow-x: hidden;
    transition: background-color 0.5s ease;
    position: relative;
}

/* ===== CORREÇÕES DE LAYOUT ===== */
/* Correção para o espaço vazio após o rodapé no desktop */
body::after {
    content: none !important;
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

body::before {
    display: none;
}

.footer {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Ajuste do footer para chegar até o fim da página */
.footer .container,
.footer-content {
    margin-bottom: 0;
    padding-bottom: 30px;
}

/* Padding inferior apenas para mobile */
@media (max-width: 992px) {
    .footer {
        padding-bottom: 80px !important; 
    }
}

/* ===== OVERLAYS E EFEITOS DE FUNDO ===== */
/* Overlay dinâmico para o Hero */
.dynamic-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.9) 30%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Ajuste do overlay para a seção Hero */
.hero {
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.9) 30%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Ocultando overlay em dispositivos móveis */
@media (max-width: 992px) {
    .dynamic-overlay {
        display: none !important;
    }
    
    .hero::before {
        display: none !important;
    }
}

/* ===== GRADIENTES LATERAIS ===== */
.side-gradient {
    position: fixed;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.left-gradient {
    left: -20%;
    background: radial-gradient(ellipse at center, rgba(255, 183, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    transform-origin: center center;
}

.right-gradient {
    right: -20%;
    background: radial-gradient(ellipse at center, rgba(0, 191, 255, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    transform-origin: center center;
}

/* ===== ANIMAÇÕES KEYFRAMES ===== */
@keyframes floatLeft {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-3%) translateY(-2%); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes floatRight {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(3%) translateY(-2%); }
    100% { transform: translateX(0) translateY(0); }
}

/* ===== ANIMAÇÕES DE SCROLL ===== */
.animate-on-scroll {
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
}

section {
    padding: 5rem 0;
    position: relative;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 2;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section:not(.visible) {
    opacity: 0.8;
    transform: translateY(20px);
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
    font-family: var(--title-font);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    font-family: var(--body-font);
    color: var(--text-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

/* ===== TÍTULOS E SEÇÕES ===== */
.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    font-family: var(--title-font);
    color: white;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: var(--blue-glow);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--gray-900);
    font-family: var(--body-font);
    font-size: 1.1rem;
    background-color: transparent !important;
    padding: 20px;
    border-radius: var(--border-radius);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    transition: all 0.5s ease;
    opacity: 1 !important;
}

.about .section-description {
    color: rgba(255, 255, 255, 1);
    line-height: 1.8;
    margin-bottom: 2rem;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    opacity: 1 !important;
}

/* ===== ELEMENTOS DE DESTAQUE ===== */
.highlight {
    position: relative;
    display: inline-block;
    animation: none;
    font-weight: 700;
    box-shadow: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: none;
    }
}

@keyframes pulseOrange {
    0%, 100% {
        box-shadow: none;
    }
}

/* Cores dos ícones */
.format-icon.orange i, .card-icon.orange i {
    color: #FF9900;
}

.format-icon.blue i, .card-icon.blue i {
    color: #00AFFF;
}

/* Destaque laranja com efeito de brilho */
.highlight.orange {
    color: #FFA500;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 158, 0, 0.7);
}

.highlight.blue {
    color: #0095FF;
    font-weight: 700; 
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
}

/* Removendo a barra de destaque */
.highlight::after {
    display: none;
}

/* ===== SISTEMA DE BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    outline: none;
    font-family: var(--alt-font);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: scale(1);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn:hover::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid rgba(0, 191, 255, 0.5);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.btn-primary:hover {
    background-color: #1a9dff;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 191, 255, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: 1px solid rgba(255, 158, 0, 0.5);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.btn-secondary:hover {
    background-color: #ff8c00;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 158, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: white;
    position: relative;
    z-index: 1;
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    overflow: hidden;
}

.btn-outline.blue {
    border: 2px solid var(--primary-color);
    color: #ffffff;
    font-weight: 600;
}

.btn-outline.blue:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline.orange {
    border: 2px solid var(--secondary-color);
    color: #ffffff;
    font-weight: 600;
}

.btn-outline.orange:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 158, 0, 0.3);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline:hover::before {
    opacity: 0.3;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===== HEADER E NAVEGAÇÃO ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(3, 11, 23, 0.95);
    border-bottom: none;
    transition: all 0.4s ease;
    padding: 15px 0;
    --header-line-opacity: 0.8;
    --header-line-height: 3px;
    --gradient-position: 50%;
    --glow-position: 50%;
    --glow-intensity: 0.5;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3); /* Sombra para combinar com o estilo scrolled */
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--header-line-height);
    background: linear-gradient(to right, 
        #FF9400 0%, 
        #FFAE00 30%, 
        #00A6DE 70%, 
        #00BFFF 100%
    );
    opacity: var(--header-line-opacity);
    box-shadow: 
        0 0 10px rgba(255, 158, 0, 0.5) inset,
        0 0 15px rgba(0, 191, 255, 0.5) inset,
        0 0 20px rgba(255, 255, 255, calc(0.3 * var(--glow-intensity))) var(--glow-position);
    transition: all 0.4s ease;
    background-position: var(--gradient-position);
    background-size: 120% 100%;
}

.header.scrolled {
    background-color: rgba(3, 11, 23, 0.95);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.header.scrolled::after {
    opacity: 0.4;
    height: 2px;
    background: linear-gradient(to right,
        var(--secondary-color) 0%,
        var(--primary-color) 100%
    );
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-right: auto;
    padding-left: 0;
}

.logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

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

.nav-menu {
    display: flex;
    flex: 0 0 auto;
    justify-content: flex-end;
    margin-left: auto;
    padding-right: 0;
}

.menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--alt-font);
    justify-content: flex-end;
}

.menu li {
    position: relative;
}

.nav-link {
    position: relative;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-900);
    padding: 0.5rem 0;
    font-family: var(--alt-font);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    width: auto;
    margin: 0;
}

.nav-link::before {
    display: none !important;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::before {
    display: none !important;
    width: 0 !important;
    opacity: 0 !important;
}

.nav-link.highlight {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
}

.nav-link.highlight:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.3);
}

.nav-link.active {
    color: white;
}

.nav-link.active::before {
    display: none !important;
    width: 0 !important;
    opacity: 0 !important;
}

.nav-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-link:hover .nav-icon {
    transform: none !important;
    color: inherit !important;
}

/* Menu para dispositivos móveis */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center; /* Alterado para center para alinhar corretamente */
    align-items: center; /* Adicionado para centralizar horizontalmente */
    width: 28px;
    height: 28px; /* Aumentado para acomodar melhor as barras */
    cursor: pointer;
    z-index: 2000;
    position: relative;
    background: transparent;
    border: none;
    padding: 4px; /* Reduzido para não interferir no espaçamento interno */
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    margin: 3px 0; /* Espaçamento uniforme entre as barras */
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}

/* Removido o span + span para usar margem em todos os spans */
/* .mobile-menu-btn span + span {
    margin-top: 7px;
} */

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    width: 100%;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    width: 100%;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
        margin-right: 10px;
    }
    
    .mobile-menu-header {
        display: block;
        width: 90%;
        text-align: left;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background-color: rgba(3, 11, 23, 0.98); /* Cor sólida em vez de transparente */
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1500; /* Menor que o botão, mas maior que o header */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
        overflow-y: auto;
        padding: 80px 20px 30px; /* Ajustado para dar mais espaço */
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu {
        gap: 8px; /* Espaçamento reduzido entre itens */
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    
    .menu li {
        width: 100%;
        margin-bottom: 5px;
        box-sizing: border-box;
    }
    
    .nav-link {
        padding: 12px 15px; /* Reduzido para melhorar o espaço */
        width: 100%;
        border-radius: var(--border-radius);
        font-size: 1rem;
        background-color: rgba(0, 0, 0, 0.2);
        margin: 3px 0;
        border: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        box-sizing: border-box;
        opacity: 1;
        transform: translateX(0);
        transition: 
            opacity 0.3s ease,
            transform 0.3s ease,
            background-color 0.3s ease,
            box-shadow 0.3s ease;
    }
    
    /* Header deve ficar atrás do menu quando aberto */
    .header::after {
        z-index: 900; /* Bem menor que o menu */
    }
    
    /* Esconder linha colorida quando menu mobile estiver aberto */
    body.menu-open .header::after {
        display: none;
    }
    
    /* Garantir que todos os itens do menu sejam visíveis */
    .menu li:last-child {
        margin-bottom: 20px;
    }
    
    .nav-link.highlight {
        margin-top: 10px;
        padding: 12px 15px;
        width: 100%;
        text-align: center;
        justify-content: center;
        background-color: transparent;
        border: 2px solid var(--primary-color);
        box-shadow: var(--blue-glow);
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 90%;
        padding: 70px 15px 30px;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .mobile-menu-header h3 {
        font-size: 1.3rem;
    }
}

/* ===== SEÇÃO HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    padding-top: 80px;
    z-index: 1;
    background: transparent;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    font-family: var(--title-font);
}

.hero h1 .text-gradient {
    background: linear-gradient(to right, #FFB000, #00CEFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: brightness(1.2);
    opacity: 1;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    line-height: 1.5;
    max-width: 90%;
    font-family: var(--body-font);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: transparent;
    z-index: 1;
    opacity: 0;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: transparent;
    z-index: 1;
    opacity: 0;
}

@keyframes pulseBrightness {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* Animações de entrada dos elementos */
.animate-title {
    animation: fadeInDown 1.2s ease-out;
}

.animate-text {
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

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

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

/* Estilização dos botões na seção hero */
.hero .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.hero .btn-primary:hover {
    background-color: #1e50ca;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(21, 69, 192, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

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

.hero .btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.hero .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.hero .btn-secondary:hover {
    background-color: #e7960f;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(224, 134, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero .btn-secondary:hover::before {
    left: 100%;
}

/* Estatísticas */

.stat-item {
    text-align: center;
    min-width: 200px;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item:nth-child(1) {
    border-top: 2px solid var(--secondary-color);
}

.stat-item:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 158, 0, 0.15), transparent 80%);
    z-index: -1;
}

.stat-item:nth-child(2) {
    border-top: 2px solid var(--gray-500);
}

.stat-item:nth-child(3) {
    border-top: 2px solid var(--primary-color);
}

.stat-item:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.15), transparent 80%);
    z-index: -1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-700);
    font-family: var(--body-font);
    white-space: nowrap;
    text-transform: none;
}

/* Seção Formatos */
.formats {
    text-align: center;
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.format-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--glass-border);
    transform: translateY(0);
    box-shadow: var(--glass-shadow);
    transform-style: preserve-3d;
}

.format-card:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.format-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.format-icon.orange {
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(255, 158, 0, 0.7);
}

.format-icon.blue {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.7);
}

.format-card h3 {
    margin-bottom: 1.2rem;
    font-family: var(--title-font);
    font-size: 1.4rem;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
}

.format-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.6;
}

/* Cards da seção de formatos - seguindo o padrão de cores esquerda/direita */
.format-card:nth-child(1) {
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: var(--glass-bg) !important;
}

.format-card:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: var(--glass-bg) !important;
}

.format-card:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: var(--glass-bg) !important;
}

.format-card:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: var(--glass-bg) !important;
}

/* Efeitos de hover específicos */
.format-card:hover .format-icon {
    transform: scale(1.1);
}

.format-card:hover h3 {
    color: var(--secondary-color);
}

.format-card:nth-child(3):hover h3,
.format-card:nth-child(4):hover h3 {
    color: var(--primary-color);
}

/* Responsividade */
@media (max-width: 1200px) {
    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .format-card {
        padding: 2rem 1.5rem;
    }
    
    .format-icon {
        font-size: 2.5rem;
        height: 70px;
    }
    
    .format-card h3 {
        font-size: 1.3rem;
    }
}

.formats-action {
    margin-top: 3rem;
}

/* Seção Newsletter (agora usada para Performance) */
.newsletter {
    position: relative;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.6), 
        rgba(0, 0, 0, 0.6)), 
        linear-gradient(to right,
        rgba(255, 158, 0, 0.3) 0%, 
        transparent 30%,
        transparent 70%,
        rgba(0, 191, 255, 0.3) 100%);
    border-left: 3px solid var(--secondary-color);
    border-right: 3px solid var(--primary-color);
    color: white;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at left, rgba(255, 158, 0, 0.15), transparent 50%),
                radial-gradient(circle at right, rgba(0, 191, 255, 0.15), transparent 50%);
    z-index: -1;
    opacity: 0.8;
}

.newsletter .section-title {
    color: white;
    margin-bottom: 2.5rem;
}

.newsletter .section-title::after {
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.newsletter-content {
    max-width: 1200px;
    margin: 0 auto;
}

.performance-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin: 0 auto 3rem;
    max-width: 1200px;
}

.performance-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--glass-border);
    transform: translateY(0);
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.performance-card:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.performance-card .feature-icon {
    margin-bottom: 1.5rem;
}

.performance-card .feature-text h3 {
    margin-bottom: 1.2rem;
    font-family: var(--title-font);
    font-size: 1.4rem;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
}

.performance-card .feature-text p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .performance-highlights {
        justify-content: center;
        gap: 2rem;
    }
    
    .performance-card {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .performance-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .performance-card {
        width: 100%;
        max-width: 500px;
    }
    
    .newsletter .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .newsletter .section-title {
        font-size: 1.8rem;
    }
    
    .performance-card {
        padding: 1.5rem;
    }
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 191, 255, 0.2);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    flex-wrap: nowrap;
}

/* Remover qualquer filtro ou backdrop de todos os elementos dentro da newsletter */
.newsletter * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
}

.newsletter-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--secondary-color), transparent 60%, var(--primary-color));
    border-radius: calc(var(--border-radius) + 2px);
    z-index: -1;
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}



.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--body-font);
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white;
    border: 1px solid rgba(0, 191, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    min-width: 0; /* Permite que o input encolha corretamente */
    width: 100%;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--blue-glow);
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter .btn-primary {
    font-family: var(--alt-font);
    font-weight: 600;
    padding: 1rem 1.5rem;
    border: none;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    box-shadow: var(--blue-glow);
    transition: all 0.3s ease;
    white-space: nowrap; /* Impede que o texto quebre */
    min-width: fit-content; /* Garante tamanho mínimo para o botão */
}

.newsletter .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.newsletter .btn-primary:hover {
    background-color: #00A6DE;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.4);
}

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

.disclaimer {
    font-size: 0.875rem;
    margin-top: 1.5rem;
    opacity: 0.8;
    font-family: var(--body-font);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: var(--gray-600);
}

/* Seção Soluções */
.solutions {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

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

.solutions-content {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
}

.solutions-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    opacity: 0.1;
}

.solution-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all 0.5s ease;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    border: 1px solid var(--glass-border);
    transform: translateY(0);
    transform-style: preserve-3d;
}

.solution-card:hover {
    transform: translateY(-5px) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.solution-card.advertiser {
    border-bottom: 1px solid var(--glass-border);
}

.solution-card.advertiser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 158, 0, 0.1), transparent 70%);
    z-index: -1;
}

.solution-card.publisher {
    border-bottom: 1px solid var(--glass-border);
}

.solution-card.publisher::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 191, 255, 0.1), transparent 70%);
    z-index: -1;
}

.solution-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.card-icon.orange {
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(255, 158, 0, 0.7);
}

.card-icon.blue {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
}

.solution-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--title-font);
    position: relative;
    padding-bottom: 15px;
}

.solution-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
}

.solution-card.advertiser h3::after {
    background: var(--secondary-color);
    box-shadow: var(--orange-glow);
}

.solution-card.publisher h3::after {
    background: var(--primary-color);
    box-shadow: var(--blue-glow);
}

.solution-card p {
    color: var(--gray-800);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: var(--body-font);
}

/* Seção Depoimentos */
.testimonials {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 158, 0, 0.05), transparent, rgba(0, 191, 255, 0.05));
    z-index: -1;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-item {
    display: none;
    padding: 1rem;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.8s ease-in-out;
}

.testimonial-content {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    transform: translateY(0);
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.testimonial-content:hover {
    transform: translateY(-5px) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--gray-800);
    font-family: var(--body-font);
    position: relative;
    z-index: 2;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text p {
    margin-bottom: 0;
    color: #FFFFFF;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.author-info p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.875rem;
    font-family: var(--alt-font);
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    margin-right: 1rem;
    box-shadow: var(--glass-shadow);
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
    font-size: 1.5rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
}

.prev-btn:hover, .next-btn:hover {
    color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot:nth-child(1) {
    background-color: #FF9E00; /* Mudado de #FFB800 para um laranja mais forte */
}

.dot:nth-child(2) {
    background-color: #5A7C6C; /* Verde-acinzentado */
}

.dot:nth-child(3) {
    background-color: #0077FF; /* Azul */
}

.dot.active {
    width: 8px;
    border-radius: 50%;
    filter: brightness(1.5);
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.3);
}

.dot:nth-child(1).active {
    background-color: #FF9E00; /* Manter a cor laranja quando ativa */
    filter: brightness(1.2); /* Menos brilho para manter a cor mais natural */
    box-shadow: 0 0 8px 2px rgba(255, 158, 0, 0.4); /* Sombra laranja */
}

/* Seção Contato */
.contact {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 11, 23, 0.5);
    z-index: -1;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.contact-form {
    flex: 2;
    min-width: 300px;
    max-width: 700px;
    background: var(--dark-blue);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    position: relative;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    border-left: 3px solid var(--secondary-color);
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    border-left-color: var(--secondary-color);
    transition: all 0.4s ease;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 158, 0, 0.15), transparent 70%);
    z-index: -1;
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 50%;
    background: linear-gradient(to bottom, var(--secondary-color), transparent);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    align-self: flex-start;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(5, 20, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-size: 1rem;
    color: white;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: var(--orange-glow);
    background-color: rgba(5, 20, 40, 0.6);
}

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

.contact-form .btn {
    padding: 0.9rem 2rem;
    font-weight: 600;
    width: auto;
    margin-right: auto;
    font-family: var(--alt-font);
    background-color: transparent;
    color: white;
    border: 2px solid var(--secondary-color);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    overflow: hidden;
}

.contact-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 158, 0, 0.2), transparent);
    z-index: -1;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.contact-form .btn:hover {
    transform: translateY(-6px);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(255, 158, 0, 0.4);
    color: white;
}

.contact-form .btn:hover::before {
    opacity: 0.3;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.contact-message {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-family: var(--body-font);
}

.info-block {
    background: var(--dark-blue);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    position: relative;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    border-right: 3px solid var(--primary-color);
    background: linear-gradient(to bottom left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.info-block:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-right-color: var(--primary-color);
    transition: all 0.4s ease;
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 191, 255, 0.15), transparent 70%);
    z-index: -1;
}

.info-block::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 50%;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.info-block h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--title-font);
    text-shadow: var(--blue-glow);
    position: relative;
    padding-bottom: 15px;
}

.info-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: var(--blue-glow);
}

.info-block p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-family: var(--body-font);
    color: var(--gray-800);
}

.info-block .btn {
    margin-top: 1.5rem;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    font-family: var(--alt-font);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    overflow: hidden;
}

.info-block .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 191, 255, 0.2), transparent);
    z-index: -1;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.info-block .btn:hover {
    transform: translateY(-4px);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
}

.info-block .btn:hover::before {
    opacity: 0.3;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

/* Footer */
.footer {
    position: relative;
    background-color: rgba(3, 11, 23, 0.95);
    color: white;
    padding: 5rem 0 2rem;
    z-index: 2;
    overflow: hidden;
    border-left: 3px solid var(--secondary-color);
    border-right: 3px solid var(--primary-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at left, rgba(255, 158, 0, 0.15), transparent 50%),
                radial-gradient(circle at right, rgba(0, 191, 255, 0.15), transparent 50%);
    z-index: -1;
    opacity: 0.8;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.5s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.7s;
}

.footer h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-family: var(--title-font);
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
}

/* Ajustes de cores para os títulos das colunas */
.footer-column:nth-child(2) h3::after {
    background: linear-gradient(to right, var(--secondary-color), transparent);
    box-shadow: var(--orange-glow);
}

.footer-column:nth-child(3) h3::after {
    background: linear-gradient(to right, var(--secondary-color), transparent);
    box-shadow: var(--orange-glow);
}

.footer-column:nth-child(4) h3::after {
    background: linear-gradient(to right, var(--primary-color), transparent);
    box-shadow: var(--blue-glow);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.footer-column:hover {
    transform: translateY(-5px) rotateX(3deg) rotateY(-3deg);
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: 1px;
    background: linear-gradient(to bottom, var(--secondary-color), transparent);
}

.footer-column:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.5s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.7s;
}

.footer-column:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 50%;
    width: 1px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
}

.footer-logo img {
    height: auto;
    max-width: 150px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-logo:hover img {
    opacity: 0.9;
    transform: scale(1.05);
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.6;
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.privacy-link {
    color: var(--gray-600);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0;
    position: relative;
}

.privacy-link::before {
    display: none !important;
}

.privacy-link:hover {
    color: inherit !important;
    transform: none !important;
}

.privacy-link:hover::before {
    width: 0 !important;
    display: none !important;
}

.footer-links,
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a,
.social-links a {
    color: var(--gray-600);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
    position: relative;
    font-family: var(--alt-font);
}

.footer-links a::before,
.social-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: linear-gradient(to right, var(--primary-color), transparent);
    transition: all 0.3s ease;
    opacity: 0;
}

.footer-links a:hover,
.social-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before,
.social-links a:hover::before {
    width: 100%;
    opacity: 1;
}

.social-links i {
    margin-right: 0.8rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover i {
    color: white;
    text-shadow: var(--blue-glow);
}

.footer-newsletter {
    margin-top: 0.5rem;
    position: relative;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    background: linear-gradient(45deg, transparent, rgba(0, 191, 255, 0.2), transparent);
    border-radius: calc(var(--border-radius) + 5px);
    z-index: -1;
    opacity: 0.3;
}

.footer-newsletter input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    margin-bottom: 0.85rem;
    font-size: 0.875rem;
    background-color: rgba(5, 20, 40, 0.4);
    color: white;
    border: 1px solid rgba(0, 191, 255, 0.2);
    transition: all 0.3s ease;
    font-family: var(--body-font);
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--blue-glow);
    background-color: rgba(5, 20, 40, 0.6);
}

.footer-newsletter .btn {
    width: 100%;
    background-color: transparent;
    color: white;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transform: translateY(0);
}

.footer-newsletter .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.footer-newsletter .btn:hover {
    transform: translateY(-2px);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(0, 191, 255, 0.3);
}

.footer-newsletter .btn:hover::before {
    left: 100%;
}

.small-disclaimer {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.85rem;
    line-height: 1.8;
    font-family: var(--body-font);
}

/* Botão de volta ao topo */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--blue-glow);
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.8);
}

.back-to-top i {
    font-size: 1.2rem;
}

/* Animações */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease forwards 0.3s;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease forwards 0.6s;
    opacity: 0;
}

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

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Media Queries para Responsividade */
@media (max-width: 1024px) {
    .footer-content {
        gap: 2rem;
        justify-content: space-around;
    }
    
    .footer-column {
        min-width: 180px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        gap: 3rem;
    }
    
    .footer-column {
        min-width: 250px;
        max-width: 100%;
    }
    
    .media-stats {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .feature-item {
        gap: 0.75rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-text h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .footer-column {
        min-width: 100%;
    }
}

/* Ajustes para outras seções para manter o padding consistente */
section .container {
    padding: 0 2rem;
}

/* Seção About */
.about {
    position: relative;
    padding: 6rem 0;
    z-index: 2;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.6), 
        rgba(0, 0, 0, 0.6)), 
        linear-gradient(to right,
        rgba(255, 158, 0, 0.3) 0%, 
        transparent 30%,
        transparent 70%,
        rgba(0, 191, 255, 0.3) 100%) !important;
    border-left: 3px solid var(--secondary-color) !important;
    border-right: 3px solid var(--primary-color) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.about::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: radial-gradient(circle at left, rgba(255, 158, 0, 0.15), transparent 50%),
                radial-gradient(circle at right, rgba(0, 191, 255, 0.15), transparent 50%) !important;
    z-index: -1 !important;
    opacity: 0.8 !important;
}

/* Estilo específico para algumas seções para garantir contraste adequado */
.about, .formats, .solutions, .testimonials, .contact {
    /* Removendo o background-color transparent para a seção .about */
}

.about .highlight {
    font-weight: 600;
}

/* Animações para o rodapé */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito hover nos links do rodapé */
.footer-links a::before,
.social-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.footer-links a:hover::before,
.social-links a:hover::before {
    width: 100%;
}

/* Botão de volta ao topo */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--blue-glow);
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.8);
}

.back-to-top i {
    font-size: 1.2rem;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
    opacity: 0;
    z-index: 1;
}

/* Efeito de brilho nos cantos */
.hero:before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    top: -100px;
    left: -100px;
    background: transparent;
    z-index: 1;
    opacity: 0;
}

.hero:after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -100px;
    right: -100px;
    background: transparent;
    z-index: 1;
    opacity: 0;
}



/* Highlight na seção hero */
.hero .highlight {
    color: var(--secondary-color);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Botões específicos do hero */
.hero .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.hero .btn-primary:hover {
    background-color: #1e50ca;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(21, 69, 192, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero .btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.hero .btn-secondary:hover {
    background-color: #e7960f;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(224, 134, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

/* Adiciona um fundo semitransparente para melhorar a legibilidade das seções após o hero */
section:not(.hero) {
    position: relative;
    z-index: 2;
}

section:not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: -1;
}

/* Estilo específico para algumas seções para garantir contraste adequado */
.about, .formats, .solutions, .testimonials, .contact {
    background-color: transparent !important;
}

/* Limpar os estilos anteriores da newsletter para aplicar gradiente definido acima */
.newsletter {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Posicionamento: dourado à esquerda, azul à direita */
.solutions-content {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
}

/* Adicionar efeito amarelo/dourado à esquerda e azul à direita em cada seção */
section:not(.hero):not(.newsletter):not(.footer):not(:last-child)::after {
    content: none;
}

/* Reorganização de elementos específicos */
.solution-card.advertiser {
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                radial-gradient(circle at top left, rgba(245, 158, 11, 0.3), transparent 70%);
    border-left: 3px solid var(--secondary-color);
}

.solution-card.publisher {
    background: linear-gradient(to bottom left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                radial-gradient(circle at top right, rgba(37, 99, 235, 0.3), transparent 70%);
    border-right: 3px solid var(--primary-color);
}

/* Adaptar cores dos elementos de formulário */
.form-group input,
.form-group textarea,
.newsletter-form input,
.footer-newsletter input {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.newsletter-form input::placeholder,
.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Separadores entre seções */
section:not(.hero):not(.newsletter):not(.footer):not(:last-child)::after,
section:not(.hero):not(.newsletter):not(.footer):not(:last-child)::before {
    content: none;
}

/* Ajuste para posicionar corretamente as seções */
section {
    padding: 5rem 0;
    position: relative;
}

/* Aumente ligeiramente o espaçamento entre seções */
section + section {
    margin-top: 1px;
}

/* Estilos para Fundo e Transições */
#background-effect {
    opacity: 0.8;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(2px);
}

body {
    transition: background-color 0.5s ease;
    background-color: rgba(10, 15, 25, 0.9) !important;
}

/* Estilos para Animações */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease forwards 0.3s;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease forwards 0.6s;
    opacity: 0;
}



/* Melhorias nos Elementos Interativos */
.btn {
    transition: all 0.3s ease;
    transform: scale(1);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.card-icon {
    transition: transform 0.3s ease;
}

.format-card:hover .card-icon,
.solution-card:hover .card-icon {
    transform: translateY(-5px) scale(1.1);
}

.section-title, .section-description {
    transition: all 0.5s ease;
}

section:hover .section-title {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Melhoria no Estilo de Cartões */
.format-card, .solution-card {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.format-card:hover, .solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Efeito de Gradiente em Movimento */
.text-gradient {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-shadow: none;
    opacity: 1;
}

/* Efeito Pulsante */
.highlight {
    animation: pulse 2s infinite;
}

.highlight.orange {
    animation: pulseOrange 2s infinite;
}

/* Efeito de Hover para imagens */
img:hover {
    transform: scale(1.03);
}

/* Fim das animações adicionais */

/* Estilos para header fixo */
.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 15, 25, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease;
    z-index: 1000;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Estilos para elementos com visibilidade */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.highlighted {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1) !important;
}

/* Adicionar efeito de degradê vertical para conectar a hero com as seções abaixo */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: none;
    z-index: 0;
    display: none;
}

/* Efeito Parallax para Seções - Removendo efeitos que possam causar transparência */
.parallax {
    background-attachment: initial;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-position 0.5s ease;
    background-color: transparent !important;
}

/* Melhorar contraste dos textos nos cards */
.format-card h3, .solution-card h3 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-card.advertiser h3::after {
    background: #FFA500;
    box-shadow: 0 0 10px rgba(255, 158, 0, 0.7);
}

.solution-card.publisher h3::after {
    background: #00AFFF;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.7);
}

/* Aumentar contraste dos textos nos testimonials */
.testimonial-text p {
    color: #FFFFFF;
    font-size: 1.05rem;
}

.author-info h4 {
    color: #FFFFFF;
    font-weight: 600;
}

/* Melhorar a visibilidade da seção de newsletter */
.newsletter .section-title {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: #FFFFFF;
}

.newsletter-form .btn-primary {
    font-weight: 700;
}

/* Estilo para o menu aberto (mobile) */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Animação para os ícones da navbar */
.nav-icon {
    transform: translateY(0);
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-link:hover .nav-icon {
    transform: translateY(-3px);
    color: var(--primary-color);
}

.nav-link.highlight:hover .nav-icon {
    color: white;
}

/* Estilos para a seção 'about' redesenhada - Soluções de mídia */
.about-content-wrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: 4rem;
    position: relative;
    align-items: center; /* Alterado de flex-start para center para alinhar verticalmente */
    padding-top: 2rem;
}

.about-text {
    flex: 0.7; /* Reduzido de 1 para 0.7 para compensar o aumento do about-media */
    max-width: 40%; /* Reduzido de 45% para 40% */
    margin-top: 0;
}

.about-media {
    flex: 1.3; /* Aumentado de 1 para 1.3 para dar mais largura ao container */
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: -75px;
}

.media-card {
    width: 100%;
    max-width: 100%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    padding: 4rem 3.5rem;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-bottom: 2.5rem;
}

.media-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 191, 255, 0.1), transparent 70%);
    z-index: -1;
}

.media-card:hover {
    transform: translateY(-5px) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.media-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem; /* Aumentado de 2rem para 3rem */
    text-align: center;
}

.media-stat {
    padding: 2rem 1.5rem; /* Aumentado de 1.8rem 1.2rem para 2rem 1.5rem */
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.media-stat:hover {
    background: rgba(5, 20, 40, 0.25);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-value {
    font-size: 2.5rem; /* Aumentado o tamanho da fonte */
    font-weight: 700;
    margin-bottom: 0.8rem; /* Aumentado o espaçamento inferior */
    font-family: var(--title-font);
    background: linear-gradient(45deg, var(--secondary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-700);
    font-family: var(--body-font);
    white-space: nowrap;
    text-transform: none;
}

/* Ocultar o blue-tech-elements permanentemente */
.blue-tech-elements {
    display: none;
}

/* Ajustar o espaçamento do botão CTA */
.right-cta {
    text-align: center;
    width: 100%;
    margin-top: 5rem; /* Aumentado significativamente para garantir que o botão desça */
}

/* Novos elementos tech para o lado direito */
.blue-tech-elements {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    min-height: 70px;
}

.blue-tech-elements::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(0, 191, 255, 0.1), transparent 70%);
    z-index: -1;
    border-radius: var(--border-radius);
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 0 1rem; /* Espaçamento entre itens */
}

.tech-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 5px rgba(0, 191, 255, 0.5));
    transition: all 0.3s ease;
}

/* Ajuste na lista de features para alinhar com os cards à direita */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Removendo estilos iniciais de animação para o tech-badge */
.tech-item {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-icon {
    transition: all 0.3s ease;
}

/* .tech-badge {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
} */

/* Ajuste nas media queries */
@media (max-width: 1024px) {
    .about-content-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-text {
        max-width: 100%;
        order: 1;
    }
    
    .about-media {
        max-width: 100%;
        order: 2;
        margin-top: 0; /* Removido em layouts mobile */
    }
}

@media (max-width: 768px) {
    .media-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .feature-item {
        gap: 0.75rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-text h3 {
        font-size: 1.1rem;
    }
    
    .tech-item {
        transform: scale(0.9);
    }
}

@media (max-width: 480px) {
    .media-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .media-card {
        padding: 3rem 2rem; /* Ajustado para telas menores */
    }
    
    .media-stats {
        gap: 1.5rem; /* Reduzido para telas menores */
    }
    
    .media-stat {
        padding: 1.5rem 1rem; /* Reduzido para telas menores */
    }
}

/* Restaurando os estilos dos itens de feature */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: var(--border-radius);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    
    /* Efeito de vidro */
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.feature-item:hover {
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.5);
}

.feature-item.animate-item {
    opacity: 1;
    transform: translateX(0);
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
    box-shadow: var(--glass-shadow);
    z-index: 2;
}

.feature-icon.orange {
    box-shadow: var(--blue-glow);
}

.feature-icon.orange i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #FFFFFF;
}

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

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Ajustes específicos para os botões de CTA em lados opostos */
.about-media {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0; /* Alinhado verticalmente com o texto */
}

.blue-tech-elements {
    margin-bottom: 1.5rem; /* Espaço antes do botão */
}

.right-cta {
    text-align: center;
    width: 100%; /* Fazer ocupar toda a largura disponível */
    margin-top: 3rem; /* Aumentado para descer o botão um pouco mais */
}

.right-cta .btn {
    display: block;
    width: 100%; /* Botão ocupa toda a largura */
    text-align: center;
}

.left-cta {
    margin-top: 2rem; /* Espaço após os recursos para alinhar com o botão do lado direito */
    width: 100%; /* Fazer ocupar toda a largura disponível */
}

.left-cta .btn {
    display: block;
    width: 100%; /* Botão ocupa toda a largura */
    text-align: center;
}

/* Ajuste responsivo */
@media (max-width: 1024px) {
    .about-media {
        margin-top: 0;
    }
    
    .right-cta, .left-cta {
        text-align: center;
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .right-cta .btn, .left-cta .btn {
        width: 100%;
    }
}

/* Ajuste específico para o ícone "Aumente sua receita" */
.feature-item:first-child .feature-icon {
    margin-top: 15px; /* Move o ícone para baixo, posicionando-o entre o título e o texto */
}

/* Ajuste para os ícones de "Alcance preciso" e "Segurança garantida" */
.feature-item:nth-child(2) .feature-icon,
.feature-item:nth-child(3) .feature-icon {
    margin-top: 15px; /* Move os ícones para baixo para alinhamento */
}

.hero .container, .hero-container {
    padding-left: 4rem; /* Padding para mover o conteúdo para a direita */
    justify-content: flex-start; /* Alinhamento à esquerda */
    display: flex;
    margin-left: 0; /* O conteúdo começa na esquerda */
    margin-right: auto; /* Mantém o espaço à direita */
}

/* Ajuste para garantir comportamento responsivo */
@media (max-width: 1200px) {
    .hero .container {
        padding-left: 3rem; /* Ajustado para telas menores */
    }
}

@media (max-width: 768px) {
    .hero .container {
        padding-left: 2rem; /* Ajustado para telas ainda menores */
    }
    
    .hero-content {
        padding-left: 2rem; /* Reduzido para melhor responsividade */
    }
}

.hero-container {
    padding: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
}

/* Estilos de sobrescrita para garantir consistência visual */
/* Será adicionado no final para ter maior prioridade */

/* Seção About - Mesma aparência da newsletter */
.about {
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.6), 
        rgba(0, 0, 0, 0.6)), 
        linear-gradient(to right,
        rgba(255, 158, 0, 0.3) 0%, 
        transparent 30%,
        transparent 70%,
        rgba(0, 191, 255, 0.3) 100%) !important;
    border-left: 3px solid var(--secondary-color) !important;
    border-right: 3px solid var(--primary-color) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.about::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: radial-gradient(circle at left, rgba(255, 158, 0, 0.15), transparent 50%),
                radial-gradient(circle at right, rgba(0, 191, 255, 0.15), transparent 50%) !important;
    z-index: -1 !important;
    opacity: 0.8 !important;
}

/* Cards da seção de formatos - seguindo o padrão de cores esquerda/direita */
.format-card:nth-child(1),
.format-card:nth-child(2),
.format-card:nth-child(3),
.format-card:nth-child(4) {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: var(--glass-bg) !important;
}

.format-card:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 158, 0, 0.15), transparent 70%);
    z-index: -1;
}

.format-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(255, 158, 0, 0.1), transparent 70%);
    z-index: -1;
}

.format-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(0, 191, 255, 0.1), transparent 70%);
    z-index: -1;
}

.format-card:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 191, 255, 0.15), transparent 70%);
    z-index: -1;
}

.format-card::after {
    display: none !important;
}

/* Estilos para o carrossel de formatos */

.formats-carousel {
    width: 100%;
    padding: 2rem 0;
}

.swiper-slide {
    height: auto;
    transition: transform 0.5s ease;
}

/* Ajustes para os cards dentro do carrossel */
.swiper-slide .format-card {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

/* Efeito de brilho ao arrastar */
.formats-carousel .swiper-slide-active {
    z-index: 2;
}

/* Animação ao voltar à posição original */
@keyframes resetPosition {
    0% {
        transform: translateX(0);
    }
    10% {
        transform: translateX(-5px);
    }
    30% {
        transform: translateX(3px);
    }
    50% {
        transform: translateX(-2px);
    }
    70% {
        transform: translateX(1px);
    }
    100% {
        transform: translateX(0);
    }
}

.formats-carousel.resetting .swiper-wrapper {
    animation: resetPosition 0.8s ease forwards;
}

/* Estilos para a grade de formatos */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    width: 100%;
    padding: 2rem 0;
}

.formats-grid .format-card {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formats-grid .format-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Media queries para responsividade */
@media (max-width: 1200px) {
    .formats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .formats-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .formats-grid .format-card {
        min-height: 250px;
    }
}



/* Responsivos consolidados para right-cta e format-cards */
@media (max-width: 992px) {
    .right-cta { margin-top: 1rem; }
}

@media (max-width: 768px) {
    .right-cta { margin-top: 1rem; }
    .format-icon { width: 50px; height: 50px; }
    .format-icon.orange i, .format-icon.blue i { font-size: 1.5rem; }
    .format-card { padding: 1.8rem; }
}

@media (max-width: 480px) {
    .format-icon { width: 45px; height: 45px; }
    .format-icon.orange i, .format-icon.blue i { font-size: 1.3rem; }
}

/* Efeito hover melhorado */
.format-card:hover .format-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Media Stats sem o card-3d externo */
.media-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem; /* Aumentado de 2rem para 3rem */
    text-align: center;
}

.media-stat {
    padding: 2rem 1.5rem; /* Aumentado de 1.8rem 1.2rem para 2rem 1.5rem */
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.media-stat:hover {
    background: rgba(5, 20, 40, 0.25);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-value {
    font-size: 2.5rem; /* Aumentado o tamanho da fonte */
    font-weight: 700;
    margin-bottom: 0.8rem; /* Aumentado o espaçamento inferior */
    font-family: var(--title-font);
    background: linear-gradient(45deg, var(--secondary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-700);
    font-family: var(--body-font);
    white-space: nowrap; /* Garantir que o texto apareça em uma única linha */
    text-transform: none; /* Remover texto em caixa alta */
}



/* Estilo para os rótulos de estatísticas em linha única e sem caixa alta */
.single-line {
    white-space: nowrap !important;
    text-transform: capitalize !important;
}

/* Media Stats Novo Layout */
.media-stats-new-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: -1.9rem 0 0.25rem 0;
}

.media-stats-new-layout .bottom-stat {
    grid-column: 1 / -1;
}

.metrics-highlight {
    margin-bottom: -1rem;
}

@media (max-width: 768px) {
    .media-stats-new-layout { gap: 1.5rem; margin: 2rem 0; }
    .metrics-highlight { margin-bottom: 2rem; }
}

@media (max-width: 480px) {
    .media-stats-new-layout { gap: 1rem; margin: 1.5rem 0; }
    .metrics-highlight { margin-bottom: 1.5rem; }
}

/* Estilo para os stats - Ajustados para ocupar espaço */
.media-stat {
    padding: 2rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    width: 100%;  /* Garantir que ocupe toda a largura da célula */
    height: 100%; /* Garantir altura completa */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



/* Ajustar o botão para alinhar */
.right-cta {
    display: flex;
    justify-content: center;
    margin-top: 0.1rem;
}

.right-cta .btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.contact-form .section-title {
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Ajustes para alternar cores nos testimonials */
.testimonial-item:nth-child(1) .testimonial-content {
    border-left: 3px solid var(--secondary-color);
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.testimonial-item:nth-child(2) .testimonial-content {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.testimonial-item:nth-child(3) .testimonial-content {
    border-right: 3px solid var(--primary-color);
    background: linear-gradient(to bottom left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.testimonial-item:nth-child(1) .author-avatar {
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(255, 158, 0, 0.7);
}

.testimonial-item:nth-child(2) .author-avatar {
    color: #5A7C6C; /* Verde-acinzentado */
    text-shadow: 0 0 15px rgba(90, 124, 108, 0.5);
}

.testimonial-item:nth-child(3) .author-avatar {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
}

.testimonial-content:hover {
    transform: translateY(-5px) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-item:nth-child(1) .testimonial-content:hover {
    border-left-color: var(--secondary-color);
}

.testimonial-item:nth-child(3) .testimonial-content:hover {
    border-right-color: var(--primary-color);
}

.testimonial-item:nth-child(1) .testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 158, 0, 0.15), transparent 70%);
    z-index: -1;
}

.testimonial-item:nth-child(2) .testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(255, 158, 0, 0.1), transparent 70%);
    z-index: -1;
}

.testimonial-item:nth-child(3) .testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 191, 255, 0.15), transparent 70%);
    z-index: -1;
}

.contact-form h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 1.5rem;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    box-shadow: var(--orange-glow);
    display: none;
}

.info-block h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--title-font);
    text-shadow: var(--blue-glow);
    position: relative;
    padding-bottom: 15px;
}

.info-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: var(--blue-glow);
}

.info-block p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-family: var(--body-font);
    color: var(--gray-800);
}

.info-block .btn {
    margin-top: 1.5rem;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    font-family: var(--alt-font);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: white;
    position: relative;
    z-index: 1;
}

.info-block .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 191, 255, 0.2), transparent);
    z-index: -1;
    opacity: 0.1;
}

.info-block .btn:hover {
    box-shadow: var(--blue-glow);
}

.info-block .btn:hover::before {
    opacity: 0.3;
}

.contact-form .section-title::after {
    display: none;
}

.footer-logo::after {
    display: none;
}

.footer-column:nth-child(1)::before {
    display: none;
}

.footer-column:nth-child(4)::before {
    display: none;
}

.footer-newsletter .btn {
    width: 100%;
    background-color: transparent;
    color: white;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transform: translateY(0);
}

.footer-newsletter .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.footer-newsletter .btn:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.3);
}

.footer-newsletter .btn:hover::before {
    left: 100%;
}

.mobile-menu-header {
    display: none;
}

.mobile-menu-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--title-font);
    text-shadow: var(--blue-glow);
    margin: 0;
    padding: 0;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 992px) {
    .mobile-menu-header {
        display: block;
        width: 90%;
        text-align: left;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }
    
}

/* Media query para telas pequenas */
@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
        padding: 12px;
    }
    
    .newsletter-form input {
        width: 100%;
        margin-bottom: 0;
        padding: 0.9rem 1.25rem;
    }
    
    .newsletter .btn-primary {
        width: 100%;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
    
    .newsletter .btn-primary i {
        margin-right: 5px;
    }
}

/* Media query para telas médias */
@media (max-width: 768px) and (min-width: 481px) {
    .newsletter-form input {
        padding: 0.9rem 1.25rem;
    }
    
    .newsletter .btn-primary {
        padding: 0.9rem 1rem;
    }
    
    .newsletter .btn-primary i {
        margin-right: 5px;
    }
}

/* Melhorar responsividade da seção about para mobile */
@media (max-width: 768px) {
    .about-content-wrapper {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        padding-top: 0;
    }
    
    .about-text {
        flex: 1;
        max-width: 100%;
        order: 1;
        margin-top: 0;
    }
    
    .about-media {
        flex: 1;
        max-width: 100%;
        order: 2;
        margin-top: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .section-title::after {
        left: 0;
        transform: none;
    }
    
    .about .section-description {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-text h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .feature-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .media-stats-new-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .media-stats-new-layout .bottom-stat {
        grid-column: span 2;
    }
    
    .media-stat {
        padding: 1.25rem 1rem;
    }
    
    .stat-value {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Ajustes adicionais para telas muito pequenas */
@media (max-width: 480px) {
    .about-content-wrapper {
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about .section-description {
        font-size: 0.9rem;
    }
    
    .feature-list {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .media-stats-new-layout {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .media-stats-new-layout .top-stat,
    .media-stats-new-layout .bottom-stat {
        grid-column: span 1;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .about-cta {
        margin-top: 1rem;
    }
    
    .about-cta .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Reduzir a altura do espaçador vazio */
    .about-media div[style*="height: 320px"] {
        height: 50px !important;
    }
}

/* Removendo regras duplicadas e ajustando para quadrados mais compactos */
@media (max-width: 768px) {
    /* Ajustes específicos para os valores estatísticos */
    .stat-value {
        font-size: 1.8rem;
        margin-bottom: 0.25rem;
        width: 100%;
    }
    
    .stat-label {
        font-size: 0.85rem;
        width: 100%;
        margin: 0;
    }
    
    /* Ajustes para garantir que o stats de baixo ocupe duas colunas quando em duas colunas */
    .media-stats-new-layout .bottom-stat {
        grid-column: span 2;
    }
    
    /* Ajustes para o botão de CTA na parte de estatísticas */
    .right-cta {
        margin-top: 1.5rem;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .right-cta .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Ajustes para telas extremamente pequenas */
@media (max-width: 480px) {
    /* Override para telas muito pequenas - evitar overflow ou elementos cortados */
    .media-stats-new-layout {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .media-stats-new-layout .bottom-stat {
        grid-column: span 1;
    }
    
    .media-stat {
        padding: 1.25rem 0.5rem;
    }
    
    .stat-value {
        font-size: 1.6rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Ajuste no divisor para ficar mais discreto */
    .about-media::after {
        opacity: 0.3;
    }
}

/* Otimização de contêineres */
.about .container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1400px;
}

.about-content-wrapper {
    box-sizing: border-box;
    width: 100%;
}

/* Ocultar o texto de disclaimer no rodapé */
.small-disclaimer {
    display: none !important;
}

/* Ajustar espaçamento após o botão de inscrição */
.footer-newsletter button {
    margin-bottom: 0 !important;
}

.footer-column:last-child {
    margin-bottom: 20px !important;
}

.metrics-highlight {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.metrics-highlight:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.highlight-features {
    display: flex;
    justify-content: space-around;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
}

.highlight-item i {
    font-size: 2rem;
    color: #00c3ff;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .metrics-highlight { padding: 1.5rem; }
    .highlight-features { flex-direction: column; gap: 1.5rem; }
    .highlight-item { flex-direction: row; justify-content: flex-start; gap: 1rem; }
    .highlight-item i { font-size: 1.5rem; }
}



.about-cta.left-cta {
    text-align: left;
    margin-top: 3rem;
}

.left-cta .btn {
    margin-right: auto;
}

/* Botão da direita (Seja anunciante) deve ser amarelo */
.right-cta .btn-primary {
    background-color: var(--secondary-color);
    color: white;
    border: 1px solid rgba(255, 158, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 158, 0, 0.5);
    font-weight: 600;
}

.right-cta .btn-primary:hover {
    background-color: #ff8c00;
    box-shadow: 0 8px 25px rgba(255, 158, 0, 0.6);
}

.highlight-features i {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 15px rgba(255, 158, 0, 0.7) !important;
}

.btn-outline.orange {
    border: 2px solid var(--primary-color);
    color: #ffffff;
    font-weight: 600;
}

.btn-outline.orange:hover {
    box-shadow: var(--blue-glow);
}

/* Estilo específico para o botão no card Anunciante */
.solution-card.advertiser .btn-outline.orange {
    border: 2px solid var(--secondary-color);
    color: #ffffff;
    font-weight: 600;
}

.solution-card.advertiser .btn-outline.orange:hover {
    box-shadow: var(--orange-glow);
}

.solution-card.advertiser .btn-outline.orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, var(--secondary-color), transparent);
    z-index: -1;
    opacity: 0.1;
}

/* Seção Performance Metrics */
.performance-metrics {
    padding: 5rem 0;
    position: relative;
    background: var(--dark-color);
    overflow: hidden;
    z-index: 3;
}

.performance-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(3, 11, 23, 0.9) 0%,
        rgba(3, 11, 23, 0.85) 100%
    );
    z-index: -1;
}

.performance-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.performance-metrics .section-title {
    margin-bottom: 2.5rem;
    color: var(--gray-900);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.performance-metrics .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.performance-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.performance-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.performance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.performance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
    position: relative;
}

.performance-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 158, 0, 0.5), rgba(0, 191, 255, 0.5));
    z-index: -1;
    animation: pulse 2s infinite;
}

.performance-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.performance-text h3 {
    color: var(--gray-900);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.performance-text p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

.performance-cta {
    margin-top: 2rem;
}

.performance-cta .btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.performance-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.performance-cta .btn:hover::before {
    opacity: 1;
}

@media (max-width: 992px) {
    .performance-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .performance-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .performance-metrics .section-title {
        font-size: 2rem;
    }
    
    .performance-icon {
        width: 70px;
        height: 70px;
    }
    
    .performance-icon i {
        font-size: 2rem;
    }
    
    .performance-text h3 {
        font-size: 1.3rem;
    }
    
    .performance-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .performance-metrics .section-title {
        font-size: 1.8rem;
    }
    
    .performance-card {
        padding: 1.5rem;
    }
    
    .performance-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .performance-icon i {
        font-size: 1.5rem;
    }
    
    .performance-text h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
}

/* Atualização da seção newsletter (agora usada para Performance) */
.newsletter .feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    opacity: 1;
    transform: translateX(0);
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.newsletter .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 158, 0, 0.15), transparent 70%);
    z-index: -1;
}

.newsletter .feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.newsletter .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
    box-shadow: var(--glass-shadow);
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.newsletter .feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 158, 0, 0.5), rgba(255, 158, 0, 0.2));
    z-index: -1;
    animation: pulse 2s infinite;
}

.newsletter .feature-icon.orange {
    box-shadow: 0 0 15px rgba(255, 158, 0, 0.5);
}

.newsletter .feature-icon.orange i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 158, 0, 0.7);
}

.newsletter .feature-text {
    flex: 1;
}

.newsletter .feature-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #FFFFFF;
}

.newsletter .feature-text p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsividade para a nova seção */
@media (max-width: 768px) {
    .newsletter .feature-list {
        gap: 1rem;
    }
    
    .newsletter .feature-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .newsletter .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .newsletter .feature-icon.orange i {
        font-size: 1.3rem;
    }
    
    .newsletter .feature-text h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .newsletter .feature-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .newsletter .feature-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
    }
    
    .newsletter .feature-icon {
        margin-bottom: 2.5rem;
    }
}

/* Estilo para a grade de cards na seção performance */
.performance-highlights {
    margin: 3rem 0;
    width: 100%;
}

.performance-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Estilo para os cards com ícone à esquerda */
.feature-item.left-icon {
    border-right: none;
    text-align: left;
}

.feature-item.left-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 158, 0, 0.15), transparent 70%);
    z-index: -1;
}

/* Estilo para os cards com ícone à direita */
.feature-item.right-icon {
    flex-direction: row;
    border-left: none;
    text-align: left;
}

.feature-item.right-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 191, 255, 0.15), transparent 70%);
    z-index: -1;
}

.feature-item.right-icon:hover {
    /* Removido border-right-color */
}

/* Estilo para o ícone azul */
.feature-icon.blue {
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.feature-icon.blue::before {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.5), rgba(0, 191, 255, 0.2));
}

.feature-icon.blue i {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.7);
}

/* Responsividade para o grid */
@media (max-width: 992px) {
    .performance-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .grid-column {
        min-width: 100%;
    }
    
    .feature-item.right-icon {
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 1rem !important;
    }
    
    .feature-item.right-icon .feature-text {
        margin-bottom: 0.7rem;
        order: 1;
    }
    
    .feature-item.right-icon .feature-icon {
        order: 2;
        margin-top: 0;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .feature-item.right-icon {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 1rem !important;
    }
    
    .feature-item.right-icon .feature-text {
        text-align: left;
        margin-bottom: 0.7rem;
    }
    
    .feature-item.right-icon .feature-icon {
        margin-top: 0;
        order: 2;
        margin-bottom: 0 !important;
    }
}

/* Remover a linha laranja no botão do Painel do Parceiro */
.nav-link.highlight:hover::before {
    width: 0;
    opacity: 0;
}

/* Padronização da cor de fundo para todos os cards */
.metrics-highlight,
.media-stat,
.newsletter .feature-item,
.format-card,
.solution-card,
.testimonial-content,
.contact-form,
.info-block {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
}

/* Garantir que os gradientes específicos sejam removidos para uniformidade */
.format-card:nth-child(1),
.format-card:nth-child(2),
.format-card:nth-child(3),
.format-card:nth-child(4) {
    background: var(--glass-bg) !important;
}

.solution-card.advertiser,
.solution-card.publisher {
    background: var(--glass-bg) !important;
}

.testimonial-item:nth-child(1) .testimonial-content,
.testimonial-item:nth-child(2) .testimonial-content,
.testimonial-item:nth-child(3) .testimonial-content {
    background: var(--glass-bg) !important;
}

/* Botões de Cards - Efeito de shimmer + elevação */
.format-card .btn,
.solution-card .btn {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1);
    position: relative;
    overflow: hidden;
}

.format-card .btn:hover,
.solution-card .btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.format-card .btn::before,
.solution-card .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 ease;
    z-index: 0;
}

.format-card .btn:hover::before,
.solution-card .btn:hover::before {
    left: 100%;
}

/* Estilo específico para o botão "Saiba mais sobre parcerias" na seção about */
.about .btn-outline.orange {
    border: 2px solid var(--primary-color);
    color: #ffffff;
    font-weight: 600;
}

.about .btn-outline.orange:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.about .btn-outline.orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, var(--primary-color), transparent);
    z-index: -1;
    opacity: 0.1;
}

.about .btn-outline.orange:hover::before {
    opacity: 0.3;
}

/* ===== FOOTER TEMA PADRÃO (AMARELO/LARANJA À ESQUERDA, AZUL À DIREITA) ===== */
/* Footer com tema padrão do site - fundo escuro como a navbar */
.footer {
    background-color: rgba(3, 11, 23, 0.95) !important;
    color: #e0e0e0 !important;
    border-left: 3px solid var(--secondary-color) !important;
    border-right: 3px solid var(--primary-color) !important;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3) !important;
}

.footer::before {
    background: radial-gradient(circle at left, rgba(255, 158, 0, 0.15), transparent 50%),
                radial-gradient(circle at right, rgba(0, 191, 255, 0.15), transparent 50%) !important;
    opacity: 0.8 !important;
}

/* Títulos das colunas - cores por posição */
.footer-column:nth-child(1) h3::after {
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color)) !important;
    box-shadow: 0 0 8px rgba(255, 158, 0, 0.4) !important;
}

.footer-column:nth-child(2) h3::after {
    background: linear-gradient(90deg, var(--secondary-color), transparent) !important;
    box-shadow: 0 0 8px rgba(255, 158, 0, 0.4) !important;
}

.footer-column:nth-child(3) h3::after {
    background: linear-gradient(90deg, transparent, var(--primary-color)) !important;
    box-shadow: 0 0 8px rgba(0, 191, 255, 0.4) !important;
}

.footer-column:nth-child(4) h3::after {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color)) !important;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.3) !important;
}

/* Efeitos de fundo por coluna */
.footer-column:nth-child(1)::before {
    background: radial-gradient(circle, rgba(255, 158, 0, 0.15) 0%, transparent 70%) !important;
}

.footer-column:nth-child(2)::before {
    background: radial-gradient(circle, rgba(255, 158, 0, 0.1) 0%, transparent 70%) !important;
}

.footer-column:nth-child(3)::before {
    background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 70%) !important;
}

.footer-column:nth-child(4)::before {
    background: radial-gradient(circle, rgba(0, 191, 255, 0.2) 0%, transparent 70%) !important;
}

/* Links do footer - cores por posição */
.footer-column:nth-child(1) .footer-links a,
.footer-column:nth-child(1) .social-links a,
.footer-column:nth-child(1) .privacy-link {
    color: #e0e0e0 !important;
    transition: all 0.3s ease !important;
}

.footer-column:nth-child(1) .footer-links a:hover,
.footer-column:nth-child(1) .social-links a:hover,
.footer-column:nth-child(1) .privacy-link:hover {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 8px rgba(255, 158, 0, 0.6) !important;
}

.footer-column:nth-child(2) .footer-links a,
.footer-column:nth-child(2) .social-links a {
    color: #e0e0e0 !important;
    transition: all 0.3s ease !important;
}

.footer-column:nth-child(2) .footer-links a:hover,
.footer-column:nth-child(2) .social-links a:hover {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 8px rgba(255, 158, 0, 0.6) !important;
}

.footer-column:nth-child(3) .footer-links a,
.footer-column:nth-child(3) .social-links a {
    color: #e0e0e0 !important;
    transition: all 0.3s ease !important;
}

.footer-column:nth-child(3) .footer-links a:hover,
.footer-column:nth-child(3) .social-links a:hover {
    color: var(--primary-color) !important;
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.6) !important;
}

.footer-column:nth-child(4) .footer-links a,
.footer-column:nth-child(4) .social-links a {
    color: #e0e0e0 !important;
    transition: all 0.3s ease !important;
}

.footer-column:nth-child(4) .footer-links a:hover,
.footer-column:nth-child(4) .social-links a:hover {
    color: var(--primary-color) !important;
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.6) !important;
}

/* Ícones sociais - cores por posição */
.footer-column:nth-child(1) .social-links a:hover i {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 10px rgba(255, 158, 0, 0.8) !important;
    filter: drop-shadow(0 0 8px rgba(255, 158, 0, 0.9)) !important;
}

.footer-column:nth-child(2) .social-links a:hover i {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 10px rgba(255, 158, 0, 0.8) !important;
    filter: drop-shadow(0 0 8px rgba(255, 158, 0, 0.9)) !important;
}

.footer-column:nth-child(3) .social-links a:hover i {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.8) !important;
    filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.9)) !important;
}

.footer-column:nth-child(4) .social-links a:hover i {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.8) !important;
    filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.9)) !important;
}

/* Newsletter button - azul (última coluna) */
.footer-newsletter .btn {
    background-color: transparent !important;
    color: #e0e0e0 !important;
    border: 2px solid var(--primary-color) !important;
    transition: all 0.4s ease !important;
}

.footer-newsletter .btn::before {
    background: linear-gradient(45deg, transparent, var(--primary-color), transparent) !important;
}

.footer-newsletter .btn:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    text-shadow: none !important;
}

.footer-newsletter .btn:hover::before {
    opacity: 0.3 !important;
}

/* Logo footer - laranja (primeira coluna) */
.footer-logo::after {
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color)) !important;
    box-shadow: 0 0 10px rgba(255, 158, 0, 0.3) !important;
}

/* Ícones gerais */
.footer .fab,
.footer .fas,
.footer .fa {
    color: #e0e0e0 !important;
    transition: all 0.3s ease !important;
}

/* Override geral para links - manter texto básico */
.footer a {
    color: #e0e0e0 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

/* Copyright e privacy */
.footer .copyright {
    color: #e0e0e0 !important;
}

.footer .privacy-link {
    color: #e0e0e0 !important;
}

/* Limpeza de decorações */
.footer a::after,
.footer a::before {
    display: none !important;
}

.footer a:hover::after,
.footer a:hover::before {
    display: none !important;
}

.footer *,
.footer *:hover {
    box-shadow: none !important;
    border-bottom: none !important;
}