/*
=========================================================================
                        W.P.V - WEB PRA VOCÊ
                    Arquivo de estilos principal
=========================================================================

Estrutura do arquivo:
1. Reset e configurações básicas
2. Tipografia e emojis
3. Layout e utilitários
4. Header e navegação
5. Seção Hero
6. Seções de conteúdo
7. Formulários
8. Modais
9. Footer
10. Modo escuro
11. Media queries responsivas
12. Correções específicas

Paleta de cores:
- Laranja principal: #ff6b35
- Laranja hover: #e55a2b
- Azul escuro: #2c3e50
- Cinza claro: #f8fafc
- Cinza médio: #e2e8f0

=========================================================================
*/

/* ===================================================================== */
/* 1. RESET E CONFIGURAÇÕES BÁSICAS                                     */
/* ===================================================================== */

/* Reset universal para remover margens e paddings padrão dos navegadores */
* {
    margin: 0;
    padding: 0;
    /* Border-box faz com que padding e border sejam incluídos na largura/altura */
    box-sizing: border-box;
}

/* Configurações globais do body */
body {
    /* Stack de fontes com fallbacks e suporte a emojis */
    font-family: 'Roboto', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    line-height: 1.6; /* Espaçamento entre linhas para melhor legibilidade */
    color: #333; /* Cor do texto padrão */
    overflow-x: hidden; /* Evita scroll horizontal indesejado */
    background-color: #e8eaf0; /* Cor de fundo padrão (cinza claro) */
    /* Configurações avançadas de renderização de texto */
    -webkit-font-feature-settings: "liga", "kern"; /* Ligaduras e kerning no WebKit */
    font-feature-settings: "liga", "kern"; /* Ligaduras e kerning padrão */
    text-rendering: optimizeLegibility; /* Otimização de renderização */
}

/* Container centralizado com largura máxima responsiva */
.container {
    max-width: 1200px; /* Largura máxima para desktop */
    margin: 0 auto; /* Centralização horizontal */
    padding: 0 20px; /* Padding lateral para dispositivos móveis */
}

/* Classe utilitária para padding padrão de seções */
.section-padding {
    padding: 80px 0; /* 80px no topo e embaixo, 0 nas laterais */
}

/* ===================================================================== */
/* 2. TIPOGRAFIA E SUPORTE PARA EMOJIS                                  */
/* ===================================================================== */

/* Fonte específica para emojis com fallbacks multiplataforma */
.emoji, 
[role="img"], /* Elementos com role de imagem (acessibilidade) */
.emoji-font {
    /* Stack de fontes de emoji para diferentes sistemas operacionais */
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', 'EmojiOne', 'Twemoji Mozilla', sans-serif;
    font-style: normal; /* Garante que emojis não fiquem em itálico */
    font-variant: normal; /* Evita variações de fonte */
    text-rendering: auto; /* Renderização automática */
    -webkit-font-smoothing: antialiased; /* Suavização de fonte no WebKit */
}

/* ===================================================================== */
/* 2.1. CORREÇÕES ESPECÍFICAS PARA FONT AWESOME                         */
/* ===================================================================== */

/* Regras globais para garantir renderização correta dos ícones Font Awesome */
.fas, .far, .fal, .fab, .fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "Font Awesome 5 Pro", sans-serif !important;
    font-weight: 900; /* Peso padrão para ícones sólidos */
    font-style: normal !important; /* Remove itálico */
    font-variant: normal !important; /* Remove variações */
    text-rendering: auto; /* Renderização automática */
    line-height: 1; /* Remove espaçamento de linha extra */
    -webkit-font-smoothing: antialiased; /* Suavização no WebKit */
    -moz-osx-font-smoothing: grayscale; /* Suavização no Firefox */
    display: inline-block; /* Garante renderização como bloco inline */
    vertical-align: middle; /* Alinhamento vertical padrão */
}

/* Correção específica para ícones regulares (far) */
.far {
    font-weight: 400 !important; /* Peso específico para ícones regulares */
}

/* Correção específica para ícones light (fal) */
.fal {
    font-weight: 300 !important; /* Peso específico para ícones light */
}

/* Correção específica para ícones de marca (fab) */
.fab {
    font-weight: 400 !important; /* Peso específico para ícones de marca */
}

/* Proteção para emojis em elementos com gradiente */
strong .emoji,
em .emoji,
strong::before,
strong::after,
em::before,
em::after,
h1 .emoji,
h2 .emoji,
h3 .emoji,
h4 .emoji,
h5 .emoji,
h6 .emoji {
    -webkit-text-fill-color: unset !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    color: inherit !important;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji' !important;
}

/* Classe de proteção específica para elementos que contêm emojis */
/* Aplicada automaticamente via JavaScript quando emojis são detectados */
.has-emoji {
    -webkit-text-fill-color: unset !important; /* Remove preenchimento de texto WebKit */
    background: none !important; /* Remove background que pode esconder emoji */
    -webkit-background-clip: unset !important; /* Remove clipping de background WebKit */
    background-clip: unset !important; /* Remove clipping de background padrão */
}

/* ===================================================================== */
/* 3. TIPOGRAFIA DE SEÇÕES                                              */
/* ===================================================================== */

/* Títulos principais de seções - padrão consistente em todo o site */
.section-title {
    font-size: 2.5rem; /* Tamanho grande para destaque */
    text-align: center; /* Centralizado para melhor composição */
    margin-bottom: 1rem; /* Espaço inferior controlado */
    color: #2c3e50; /* Azul escuro da paleta */
    font-weight: 700; /* Peso bold para destaque */
    /* Fonte padrão será Roboto ou fallback do sistema */
}

/* Subtítulos de seções - texto explicativo abaixo do título */
.section-subtitle {
    text-align: center; /* Centralizado como o título */
    font-size: 1.2rem; /* Levemente maior que texto normal */
    color: #666; /* Cinza médio para hierarquia visual */
    margin-bottom: 3rem; /* Espaço generoso antes do conteúdo */
    max-width: 600px; /* Largura limitada para melhor legibilidade */
    margin-left: auto; /* Centralização automática */
    margin-right: auto; /* Centralização automática */
}

/* ===================================================================== */
/* 4. HEADER E NAVEGAÇÃO                                                */
/* ===================================================================== */

/* Header principal - fixo no topo da página */
.header {
    background-color: #2c3e50; /* Azul escuro da identidade visual */
    position: fixed; /* Fixo no topo durante scroll */
    top: 0; /* Colado no topo da viewport */
    width: 100%; /* Largura total da tela */
    z-index: 1000; /* Alto z-index para ficar sobre outros elementos */
    box-shadow: 0 2px 20px rgba(0,0,0,0.1); /* Sombra sutil para profundidade */
    transition: background-color 0.4s ease; /* Transição suave para mudanças de cor */
}

/* Estado do header quando a página fez scroll (classe adicionada via JavaScript) */
.header.header-scrolled {
    /* Gradiente que combina laranja e azul da paleta */
    background: linear-gradient(135deg, #ff6b35 0%, #2c3e50 100%);
}

.navbar {
    padding: 0.5rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
    margin-left: 0;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: filter 0.3s ease;
}

.logo:hover .logo-image {
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.4));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
    margin: 0;
}

.logo-tagline {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 1px;
}

.logo-wpv {
    color: #f39c12;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(243, 156, 18, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
}

.logo:hover .logo-wpv {
    background: rgba(243, 156, 18, 0.2);
    border-color: rgba(243, 156, 18, 0.5);
    transform: translateY(-1px);
}

.logo-separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.logo-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: color 0.3s ease;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Theme Toggle Switch */
.theme-controls {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.theme-switch {
    position: relative;
    width: 60px;
    height: 30px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.theme-switch:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

.theme-switch-track {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.15),
        0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.theme-switch-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 20px;
    transition: opacity 0.3s ease;
}

.theme-switch-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.2),
        0 1px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.theme-icon {
    font-size: 14px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.theme-switch:hover .theme-switch-track {
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.theme-switch:hover .theme-switch-thumb {
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 2px 6px rgba(0, 0, 0, 0.15);
}

.theme-switch:active .theme-switch-thumb {
    transform: scale(0.95);
}

/* ===========================
   EFEITOS DE BLUR DECORATIVOS
   =========================== */

.blur-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.blur-orange-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b35, #f39c12);
    top: 15%;
    right: 8%;
    animation-delay: 0s;
}

.blur-orange-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #f39c12, #ff6b35);
    bottom: 25%;
    left: 12%;
    animation-delay: 2s;
}

.blur-orange-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #ff6b35, #e67e22);
    top: 45%;
    left: 8%;
    animation-delay: 4s;
}

.blur-orange-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #e67e22, #d35400);
    top: 70%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.05); }
    50% { transform: translate(-15px, 15px) scale(0.95); }
    75% { transform: translate(25px, 10px) scale(1.02); }
}

/* ===========================
   HERO SECTION MODERNIZADO
   =========================== */

.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); /* Fundo claro elegante */
    color: #2d3748;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(44, 62, 80, 0.05));
    filter: blur(100px);
    animation: float 20s ease-in-out infinite alternate;
}

.shape-1 {
    width: 450px;
    height: 450px;
    top: 10%;
    left: 15%;
    animation-duration: 18s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    bottom: 5%;
    right: 10%;
    animation-duration: 22s;
}

.shape-3 {
    display: none; /* Opcional, para um visual mais limpo */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInContent 1.2s ease-out forwards;
}

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

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    color: #2d3748;
    text-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.hero-title .static-text {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(45, 55, 72, 0.7);
    margin-bottom: 0.5rem;
}

/* Garante que elementos no hero tenham cores adequadas no modo claro */
.hero .hero-subtitle {
    color: rgba(45, 55, 72, 0.8);
}

.typed-text {
    color: #ff6b35; /* Cor laranja de destaque */
    border-right: 3px solid #ff6b35; /* Efeito de cursor piscando */
    padding-right: 5px;
    animation: blinkCursor 0.8s infinite;
    min-height: 50px;
    display: inline-block;
}

@keyframes blinkCursor {
    from, to { border-color: transparent; }
    50% { border-color: #ff6b35; }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: #2d3748;
    border: 2px solid rgba(45, 55, 72, 0.4);
}

.hero-buttons .btn-secondary:hover {
    background: #2d3748;
    color: white;
    border-color: #2d3748;
}

/* Esconde o ícone antigo */
.hero-image {
    display: none;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-title .static-text {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #333333;
    border: 2px solid #333333;
}

.btn-secondary:hover {
    background: #333333;
    color: white;
    transform: translateY(-2px);
}

/* Estilo específico para o contexto do hero */
.hero-buttons .btn-secondary {
    background: transparent;
    color: #2d3748;
    border: 2px solid #2d3748;
}

.hero-buttons .btn-secondary:hover {
    background: #2d3748;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    text-align: center;
}

/* Services Section */
.services {
    background: #dde1e7;
}

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

.service-card {
    background: #f4f6f8;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Features Section */
.features {
    background: #e8eaf0;
}

/* Features Section Equilibrada */
.features {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08), rgba(243, 156, 18, 0.05));
    border-radius: 50%;
    filter: blur(60px);
    animation: float 10s ease-in-out infinite;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.06), rgba(255, 107, 53, 0.04));
    border-radius: 50%;
    filter: blur(70px);
    animation: float 12s ease-in-out infinite reverse;
}

.features .container {
    position: relative;
    z-index: 2;
}

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

.feature-item {
    text-align: center;
    padding: 1rem 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 2rem;
    color: white !important;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
}

.feature-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(243, 156, 18, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-top: auto;
    flex-shrink: 0;
}

.feature-highlight span {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Portfolio Section */
.portfolio {
    background: #dde1e7;
}

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

.portfolio-item {
    background: #f4f6f8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    background: linear-gradient(135deg, #ff6b35 0%, #2c3e50 100%);
    padding: 3rem;
    text-align: center;
}

.portfolio-icon {
    font-size: 4rem;
    color: white;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.portfolio-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.example-btn {
    display: inline-block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #2c3e50 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.example-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #2c3e50 0%, #ff6b35 100%);
}

/* About Section */
.about {
    background: #e8eaf0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.team-member {
    background: #f4f6f8;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.member-image {
    margin-bottom: 2rem;
}

.member-icon {
    font-size: 4rem;
    color: #ff6b35;
    background: #f4f6f8;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 120px;
    height: 120px;
    
    /* Centralização simples e direta */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Regra específica para ícones Font Awesome dentro de member-icon */
.member-icon i {
    /* Se ainda estiver desalinhado, ajuste manual */
    margin-top: -2px; /* Ajuste fino para centralização perfeita */
}

.member-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #ff6b35;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.member-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: left;
}

.member-skills {
    text-align: left;
}

.member-skills h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.skills-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.skill {
    background: #ff6b35;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.member-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
    min-width: 100px;
}

.portfolio-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #e55a2b 0%, #d14819 100%);
}

.portfolio-btn i {
    margin-right: 8px;
    font-size: 1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 4rem 0;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35 !important;
}

.stat-label {
    color: #1a202c !important;
    font-size: 0.9rem;
    font-weight: 600;
}

.team-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    border-radius: 15px;
}

.team-description h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.team-description p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    background: #dde1e7;
}

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

.pricing-card {
    background: #f4f6f8;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid #ff6b35;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    color: #666;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features i {
    color: #27ae60;
    font-size: 1.1rem;
}

.pricing-description {
    color: #666;
    font-style: italic;
    text-align: center;
    font-size: 0.9rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f4f6f8;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* Payment Model Section */
.payment-model {
    background: #e8eaf0;
}

.payment-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.payment-phase {
    background: #dde1e7;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.phase-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #2c3e50 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.phase-header h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 0;
}

.phase-content h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.phase-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.phase-features {
    list-style: none;
    margin-bottom: 2rem;
}

.phase-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #555;
}

.phase-features i {
    color: #27ae60;
    font-size: 1rem;
}

.payment-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.maintenance-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.maintenance-plan {
    background: #f4f6f8;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.maintenance-plan:hover {
    transform: translateY(-3px);
    border-color: #ff6b35;
}

.maintenance-plan.featured-plan {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #ff6b3510 0%, #2c3e5010 100%);
}

.maintenance-plan h5 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 1rem;
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f39c12;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #555;
    font-size: 0.9rem;
}

.plan-features i {
    color: #27ae60;
    font-size: 0.9rem;
}

.payment-benefits {
    margin-top: 4rem;
    text-align: center;
}

.payment-benefits h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.5;
}

.payment-faq {
    margin-top: 4rem;
    background: #dde1e7;
    padding: 2.5rem;
    border-radius: 15px;
}

.payment-faq h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.payment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-item {
    background: #f4f6f8;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-item h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* New Compact Pricing Section */
.service-types {
    max-width: 1000px;
    margin: 0 auto;
}

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

.type-selector {
    display: inline-flex;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.type-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.type-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.toggle-pricing-btn {
    background: #333;
    border: none;
    color: white;
    width: auto;
    min-width: 80px;
    height: 40px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    font-size: 14px;
    padding: 0 15px;
}

.toggle-pricing-btn:hover {
    background: #555;
    transform: scale(1.1);
}

.pricing-collapsible-content {
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-collapsible-content.collapsed {
    display: none;
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

.client-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.client-category.compact {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.client-category.compact .category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.client-category.compact .category-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-category.compact .category-header i {
    font-size: 2rem;
    color: #ff6b35;
    background: #fff5f0;
    padding: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.client-category.compact .category-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.client-category.compact .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
    text-align: right;
    flex-shrink: 0;
}

.maintenance-compact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.maintenance-compact span {
    color: #666;
    font-size: 0.9rem;
}

.maintenance-option {
    margin-bottom: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.maintenance-option:last-child {
    margin-bottom: 0;
}

.maintenance-option strong {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 600;
}

.maintenance-price {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1rem;
}

.maintenance-desc {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

/* Dark mode para texto branco nos preços */
[data-theme="dark"] .client-category.compact .category-header h3 {
    color: #ffffff;
}

[data-theme="dark"] .client-category.compact .price {
    color: #ffffff;
}

[data-theme="dark"] .maintenance-compact span {
    color: #cccccc;
}

[data-theme="dark"] .maintenance-option strong {
    color: #ffffff;
}

[data-theme="dark"] .maintenance-price {
    color: #ff9770;
}

[data-theme="dark"] .maintenance-desc {
    color: #cccccc;
}

.features-summary {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.features-summary h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.features-grid span {
    color: #666;
    font-size: 0.9rem;
}

.panel-intro {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff5f0;
    border-radius: 10px;
}

.panel-intro h3 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.panel-intro p {
    color: #666;
    margin: 0;
}

.hosting-warning {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
}

.hosting-warning h4 {
    color: #856404;
    margin-bottom: 1rem;
}

.hosting-warning p {
    color: #856404;
    margin: 0;
    line-height: 1.5;
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ Section */
.faq {
    background: #e8eaf0;
}

.faq-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.faq-control-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 280px;
    margin: 0 auto;
}

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

.faq-control-btn:hover::before {
    left: 100%;
}

.faq-control-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #e55a2b 0%, #d14819 100%);
}

.faq-control-btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.faq-control-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-control-btn:hover i {
    transform: scale(1.1);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #dde1e7;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.faq-question i {
    color: #ff6b35;
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

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

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Search */
.faq-search-container {
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.faq-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-search-box:focus-within {
    border-color: #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.faq-search-box i.fa-search {
    color: #999;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.faq-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #333;
    background: transparent;
}

.faq-search-box input::placeholder {
    color: #999;
    font-style: italic;
}

.clear-search-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.clear-search-btn:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.search-results {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.faq-item.search-highlight {
    border: 2px solid #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.faq-item.search-hidden {
    display: none;
}

.search-match {
    background: rgba(255, 235, 59, 0.3);
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
    font-weight: 600;
}

/* ================================================
   Real Sites Section (Sites Reais)
   ================================================ */

/* Real Sites Toggle Button */
.real-sites-toggle-section {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.real-sites-toggle-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto;
    text-transform: none;
    letter-spacing: 0.5px;
}

.real-sites-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #e55a2b, #e8821a);
}

.real-sites-toggle-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.real-sites-toggle-btn.active i {
    transform: rotate(180deg);
}

/* Real Sites Container */
.real-sites-container {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.real-sites-container.show {
    opacity: 1;
    transform: translateY(0);
}

.real-sites-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.real-sites-intro h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.real-sites-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Real Sites Grid */
.real-sites-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.real-site-item {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.real-site-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.real-site-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.real-site-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.real-site-item h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.real-site-type {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem !important;
}

.real-site-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.real-site-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.real-site-link {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.real-site-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    color: white;
}

.real-site-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Real Sites CTA */
.real-sites-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.real-sites-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.cta-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.cta-button {
    background: #ff6b35 !important;
    color: white !important;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    text-decoration: none;
    position: relative;
    z-index: 999 !important;
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.cta-button:hover {
    background: #e55a2b !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white !important;
    text-decoration: none;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 15px rgba(255, 107, 53, 0.4);
}

/* Real Sites Responsive */
@media (min-width: 768px) {
    .real-sites-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .real-site-item {
        padding: 3rem;
    }
    
    .real-site-content {
        padding-right: 5rem;
    }
}

@media (min-width: 1024px) {
    .real-sites-intro h3 {
        font-size: 2.5rem;
    }
    
    .real-sites-intro p {
        font-size: 1.2rem;
    }
    
    .real-site-item h4 {
        font-size: 1.8rem;
    }
    
    .real-site-description {
        font-size: 1.1rem;
    }
}

/* Contact Section */
.contact {
    background: #dde1e7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    background: #f4f6f8;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-method i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.contact-method h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1.3rem;
}

.contact-method p {
    color: #666;
    margin: 0;
}

.contact-method .role {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.3rem;
    display: block;
}

/* Nova estrutura da seção de contato */
.contact-section {
    text-align: center;
}

.contact-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

/* Nossa Equipe */
.team-members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-member i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.member-info h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1.3rem;
}

.member-info .role {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    font-size: 1rem;
}

.member-info .email {
    color: #666;
    font-size: 0.9rem;
    word-break: break-all;
}

/* Agência Centralizada */
.agency-info-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.agency-icon {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.agency-info-centered h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.agency-subtitle {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.agency-email {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 25px;
    border: 2px solid #e0e0e0;
    margin: 0;
}

/* Informações de Atendimento */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.info-card i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.card-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.card-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Call to Action */
.contact-cta {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .btn {
    background: white;
    color: #ff6b35;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
    text-decoration: none;
}

.contact-cta .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-form-container {
    background: #f4f6f8;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

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

/* Novos estilos para formulário estruturado */
.form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.form-section-title {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.form-help {
    display: block;
    margin-top: 5px;
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    line-height: 1.4;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff, #e6f3ff);
    border: 2px solid #e1e8ff;
    border-radius: 12px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.terms-checkbox:hover {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff5f0, #ffe6d9);
}

.terms-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #ff6b35;
}

.terms-checkbox .checkbox-label {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #2c3e50;
    cursor: pointer;
    flex: 1;
}

.terms-link {
    color: #ff6b35 !important;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.terms-link:hover {
    color: #e55a2b !important;
    border-bottom-color: #e55a2b;
    text-decoration: none;
}

.terms-checkbox input[type="checkbox"]:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

.form-alert {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffecb5;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    position: relative;
    animation: slideIn 0.5s ease;
}

.form-alert .alert-content h5 {
    color: #856404;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-alert .alert-content p {
    color: #856404;
    margin-bottom: 15px;
    line-height: 1.5;
}

.form-alert .alert-content ul {
    color: #856404;
    margin: 10px 0 15px 20px;
    line-height: 1.6;
}

.form-alert .alert-content ul li {
    margin-bottom: 5px;
    padding-left: 5px;
}

/* Aviso sobre preços no formulário de painel */
.pricing-notice {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left: 4px solid #007bff;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    position: relative;
}

.pricing-notice p {
    margin-bottom: 8px;
    color: #1565c0;
}

.pricing-notice p:last-child {
    margin-bottom: 0;
}

.pricing-notice strong {
    color: #0d47a1;
}

/* Notas nos cards de preços */
.price-note {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    padding: 8px;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 12px;
    text-align: center;
    border: 1px solid #4caf50;
}

/* Seção de explicação sobre tipos de site */
.pricing-explanation {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border: 1px solid #dee2e6;
}

.comparison-title {
    text-align: center;
    color: #495057;
    margin-bottom: 25px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.comparison-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.standard-card {
    border-left: 4px solid #28a745;
}

.panel-card {
    border-left: 4px solid #007bff;
}

.card-title-standard {
    color: #28a745;
    margin-bottom: 10px;
}

.card-title-panel {
    color: #007bff;
    margin-bottom: 10px;
}

.comparison-card p {
    margin-bottom: 8px;
    color: #495057;
}

.comparison-card p:last-child {
    margin-bottom: 0;
}

.why-budget-notice {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
}

.why-budget-notice p {
    margin-bottom: 8px;
    color: #856404;
}

.why-budget-notice p:last-child {
    margin-bottom: 0;
}

.btn-info {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-info:hover {
    background: linear-gradient(135deg, #138496, #117a8b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 132, 150, 0.3);
}

optgroup {
    font-weight: 600;
    font-style: normal;
    color: #ff6b35;
    padding: 8px 0;
}

optgroup option {
    font-weight: normal;
    color: #2c3e50;
    padding: 5px 15px;
}

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

/* Seção de Orçamento */
.orcamento {
    background: linear-gradient(135deg, #f0f2f5 0%, #e3e7eb 100%);
    padding: 80px 0;
}

.orcamento-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.orcamento-control-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 280px;
    margin: 0 auto;
}

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

.orcamento-control-btn:hover::before {
    left: 100%;
}

.orcamento-control-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a42a0 100%);
}

.orcamento-control-btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.orcamento-control-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.orcamento-control-btn:hover i {
    transform: scale(1.1);
}

.orcamento-container {
    max-width: 100%;
    width: 100%;
    background: var(--card-bg, white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color, #e0e0e0);
    margin: 0 auto;
}

.orcamento .section-title {
    text-align: center;
    color: var(--accent-color, #ff6b35);
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
}

.orcamento .section-subtitle {
    text-align: center;
    color: var(--text-color, #2c3e50);
    margin-bottom: 50px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
/* Footer Minimalista */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 1.5rem 0;
    border-top: 3px solid #ff6b35;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-left p {
    margin: 0.2rem 0;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.footer-left strong {
    color: #ff6b35;
}

.footer-left a {
    color: #ff6b35 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-left a:hover {
    color: #e55a2b !important;
    text-decoration: underline;
}

.footer-center {
    flex: 0 0 auto;
}

.counter-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 40px;
}

.counter-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.counter-compact span {
    font-size: 0.9rem;
    color: #ecf0f1;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
}

.counter-compact a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.counter-compact img {
    height: 24px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background: white;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
}

.counter-compact:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(243, 156, 18, 0.15) 100%);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

.counter-compact:hover img {
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.footer-right {
    flex: 1;
    text-align: right;
    min-width: 250px;
}

.footer-right p {
    margin: 0.2rem 0 0.8rem 0;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.footer-right strong {
    color: #ff6b35;
}

.footer-cta {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: #e85a2b;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(255, 107, 53, 0.3);
}

.back-portfolio {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.back-portfolio:hover {
    color: white;
}

/* Responsividade Melhorada */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 5px;
    }
    
    /* Logo responsivo */
    .logo {
        gap: 10px;
        margin-left: 0;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo-main {
        font-size: 1.6rem;
    }
    
    .logo-wpv {
        font-size: 0.9rem;
        padding: 2px 6px;
    }
    
    .logo-desc {
        font-size: 0.75rem;
    }
    
    .hamburger {
        display: flex;
    }

    /* garantir que o ícone seja o ponto de referência para o popup */
    .hamburger {
        position: relative;
        z-index: 2100;
    }
    
    /* Anchor the popup to the nav container (hamburger) */
    .nav-container {
        position: relative;
    }

    /* Menu como popup ancorado ao ícone (mobile) - compacto
       Usamos opacity/transform em vez de display para permitir animação.
    */
    .nav-menu {
        position: absolute;
        right: 12px;
        top: calc(100% + 6px); /* posiciona logo abaixo do container do nav */
        display: flex;
        flex-direction: column;
        background: #ffffff;
        color: #2c3e50;
        width: auto;
        min-width: 110px;
        max-width: 160px; /* compacto para itens curtos */
        text-align: left;
        transition: opacity 220ms cubic-bezier(.2,.9,.2,1), transform 220ms cubic-bezier(.2,.9,.2,1);
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        padding: 0.1rem 0;
        border-radius: 8px;
        z-index: 2000;
        overflow: hidden; /* necessário para o efeito de desenrolar */
        white-space: nowrap; /* manter itens em linha curta */
        opacity: 0;
        transform: scaleY(0);
        pointer-events: none;
        transform-origin: top center; /* desenrola a partir do topo */
    }

    /* Exibir quando ativo (classe controlada pelo JS) */
    .nav-menu.active {
        opacity: 1;
        transform: scaleY(1);
        pointer-events: auto;
    }

    /* Links no popup */
    .nav-menu li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-menu a {
        display: block;
        padding: 0.35rem 0.6rem;
        color: inherit;
        text-decoration: none;
        font-size: 0.95rem;
        text-align: center; /* visual compacto */
    }

    .nav-menu a:hover {
        background: rgba(0,0,0,0.03);
    }

    /* Adaptação para modo escuro */
    body.dark-mode .nav-menu {
        background: #2c3e50;
        color: #f7fafc;
        box-shadow: 0 10px 27px rgba(0,0,0,0.45);
    }
    
    /* reduzir espaçamento global de itens */
    .nav-menu li {
        margin: 0.12rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }

    /* Ajustes para telas muito pequenas: manter compacto e sem rolagem */
    @media (max-width: 420px) {
        .nav-menu {
            right: 8px;
            top: 52px;
            min-width: 110px;
            max-width: 160px;
            padding: 0.12rem 0;
            border-radius: 8px;
            overflow: visible;
        }

        .nav-menu a {
            padding: 0.28rem 0.45rem;
            font-size: 0.92rem;
        }
    }

    /* Corrigir regra conflitante que define nav full-height */
    .nav-container .nav-menu {
        height: auto !important;
        max-height: none !important;
        top: calc(100% + 6px) !important;
        overflow: visible !important;
    }
    
    .theme-controls {
        margin-left: 0.5rem;
    }
    
    .theme-switch {
        width: 50px;
        height: 25px;
    }
    
    .theme-switch-thumb {
        width: 19px;
        height: 19px;
        top: 3px;
        left: 3px;
    }
    
    .theme-icon {
        font-size: 10px;
    }
    
    body.dark-mode .theme-switch-thumb {
        transform: translateX(25px);
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: 80vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%; /* garante que os botões usem o espaço disponível */
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Fallback extra caso algum botão tenha posicionamento estranho */
    .hero-buttons .btn {
        display: block !important;
        margin: 0.45rem 0 !important;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .feature-item {
        padding: 1rem 0.8rem;
        min-height: auto;
        margin-bottom: 0.8rem;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.6rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        margin: 0 auto 1rem auto;
        max-width: 100%;
    }
    
    .feature-highlight {
        margin-top: 0.8rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-content {
        padding: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .member-contact {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .portfolio-btn {
        width: 100%;
        min-height: 38px;
        padding: 10px 14px;
        font-size: 0.8rem;
        text-align: center;
    }
    
    .faq-control-btn {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }
    
    .orcamento-control-btn {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 0;
    }
    
    .type-selector {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .type-btn {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .client-category.compact .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .payment-structure {
        grid-template-columns: 1fr;
    }
    
    .payment-phase {
        padding: 2rem 1.5rem;
    }
    
    .maintenance-plans {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-info {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 70px 0 50px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card,
    .contact-form-container,
    .team-member,
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-icon {
        font-size: 2.2rem;
    }
    
    .member-icon {
        font-size: 2.5rem;
        padding: 1rem;
        width: 80px;
        height: 80px;
    }
    
    .member-info h3 {
        font-size: 1.5rem;
    }
    
    .member-role {
        font-size: 1rem;
    }
    
    .skills-list {
        gap: 0.3rem;
    }
    
    .skill {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .portfolio-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        min-height: 36px;
        border-radius: 6px;
    }
    
    .faq-control-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        max-width: 200px;
    }
    
    .orcamento-control-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        max-width: 220px;
    }
    
    .type-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .client-category.compact {
        padding: 1rem;
    }
    
    .client-category.compact .category-header i {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
    
    .client-category.compact .price {
        font-size: 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .payment-phase {
        padding: 1.5rem 1rem;
    }
    
    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .phase-header h3 {
        font-size: 1.4rem;
    }
    
    .phase-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .maintenance-plan {
        padding: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-item i {
        font-size: 2rem;
    }
    
    .payment-options {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .payment-badge {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-members {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .agency-info-centered {
        padding: 2rem 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .agency-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .agency-info-centered h3 {
        font-size: 2rem;
    }
    
    .agency-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .agency-email {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card i {
        font-size: 2rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta h3 {
        font-size: 1.5rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
    
    .team-member {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .team-member i {
        font-size: 2.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
    
    .faq-search-box {
        padding: 0.6rem 0.8rem;
        border-radius: 20px;
    }
    
    .faq-search-box input {
        font-size: 0.9rem;
    }
    
    .search-results {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
    
    .portfolio-content {
        padding: 1.2rem;
    }
    
    .portfolio-content h3 {
        font-size: 1.2rem;
    }
    
    .portfolio-tags {
        gap: 0.3rem;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }
    
    .example-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Navegação mobile melhorada */
    .nav-menu {
        top: 55px;
        height: calc(100vh - 55px);
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        display: block;
        width: 100%;
    }
    
    /* Toggle switch para touch */
    .theme-switch {
        width: 48px;
        height: 24px;
    }
    
    .theme-switch-thumb {
        width: 18px;
        height: 18px;
        top: 3px;
        left: 3px;
    }
    
    .theme-icon {
        font-size: 9px;
    }
    
    body.dark-mode .theme-switch-thumb {
        transform: translateX(24px);
    }
    
    /* Botão hambúrguer maior */
    .hamburger {
        padding: 0.5rem;
    }
    
    .bar {
        width: 22px;
        height: 3px;
    }
    
    /* Melhor espaçamento para touch */
    .pricing-features li,
    .phase-features li,
    .plan-features li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    /* Footer mobile melhorado */
    .footer-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-section {
        padding: 1rem 0;
    }
    
    .footer-bottom {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Scroll suave para mobile */
    html {
        scroll-padding-top: 60px;
    }
    
    /* Melhor altura de linha para leitura mobile */
    body {
        line-height: 1.7;
    }
    
    p {
        line-height: 1.6;
    }
    
    /* Input touch-friendly */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
        border-radius: 6px;
    }
    
    /* Botão voltar ao topo mobile */
    .back-to-top {
        bottom: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
}

/* Media query para telas extra pequenas */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .service-card,
    .team-member,
    .pricing-card {
        padding: 1.2rem 0.8rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 0.8rem;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 0.8rem 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .theme-switch {
        width: 45px;
        height: 22px;
    }
    
    .theme-switch-thumb {
        width: 16px;
        height: 16px;
        top: 3px;
        left: 3px;
    }
    
    .theme-icon {
        font-size: 8px;
    }
    
    body.dark-mode .theme-switch-thumb {
        transform: translateX(23px);
    }
    
    .logo-image {
        height: 32px;
    }
    
    .logo h2 {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .member-icon {
        font-size: 2.2rem;
        width: 70px;
        height: 70px;
        padding: 0.8rem;
    }
    
    .phase-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .skill {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    .footer-section {
        padding: 0.8rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Orientação landscape em dispositivos móveis */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
        padding: 70px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .nav-menu {
        height: calc(100vh - 55px);
        top: 55px;
    }
}

/* Melhorias de performance para dispositivos móveis */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    .service-icon,
    .member-icon,
    .portfolio-icon {
        will-change: transform;
        transform: translateZ(0);
    }
    
    .btn,
    .nav-link,
    .theme-switch {
        touch-action: manipulation;
    }
    
    /* Checkbox dos termos responsivo */
    .terms-checkbox {
        flex-direction: column;
        gap: 8px;
        padding: 15px;
    }
    
    .terms-checkbox input[type="checkbox"] {
        align-self: flex-start;
    }
    
    .terms-checkbox .checkbox-label {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .terms-link {
        word-break: break-word;
    }
    
    /* Reduzir animações em dispositivos móveis para economia de bateria */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* ===========================
   MODO ESCURO (DARK MODE)
   =========================== */

body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

/* Header no modo escuro */
body.dark-mode .header {
    background-color: #2c3e50; /* Mesma cor do modo claro */
}

body.dark-mode .header.header-scrolled {
    background: linear-gradient(135deg, #ff6b35 0%, #2c3e50 100%); /* Mesma cor do modo claro */
}

/* Logo no modo escuro */
body.dark-mode .logo-main {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

body.dark-mode .logo-wpv {
    background: rgba(255, 167, 38, 0.15);
    border-color: rgba(255, 167, 38, 0.4);
    color: #ffa726;
}

body.dark-mode .logo-separator {
    color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .logo-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Seções no modo escuro */
body.dark-mode .services {
    background: #2d3748;
}

body.dark-mode .features {
    background: #1a1a1a;
}

body.dark-mode .portfolio {
    background: #2d3748;
}

body.dark-mode .about {
    background: #2d3748;
}

body.dark-mode .pricing {
    background: #2d3748;
}

body.dark-mode .payment-model {
    background: #1a1a1a;
}

body.dark-mode .faq {
    background: #1a1a1a;
}

body.dark-mode .contact {
    background: #2d3748;
}

/* Cartões no modo escuro */
body.dark-mode .service-card,
body.dark-mode .portfolio-item,
body.dark-mode .real-site-item,
body.dark-mode .team-member,
body.dark-mode .pricing-card,
body.dark-mode .contact-method,
body.dark-mode .contact-form-container,
body.dark-mode .info-item,
body.dark-mode .maintenance-plan,
body.dark-mode .pricing-note,
body.dark-mode .agency-info-centered,
body.dark-mode .client-category.compact,
body.dark-mode .features-summary,
body.dark-mode .panel-intro {
    background: #3a4655;
    border-color: #5a6577;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Novos elementos do modo escuro */
body.dark-mode .type-selector {
    background: #3a4655;
}

body.dark-mode .type-btn {
    color: #e2e8f0;
}

body.dark-mode .type-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
}

body.dark-mode .toggle-pricing-btn {
    background: #4a5568;
    color: white;
}

body.dark-mode .toggle-pricing-btn:hover {
    background: #718096;
}

body.dark-mode .hosting-warning {
    background: #4a3728;
    border-color: #6b4423;
}

body.dark-mode .hosting-warning h4,
body.dark-mode .hosting-warning p {
    color: #d4b896;
}

body.dark-mode .maintenance-compact span {
    color: #cbd5e0;
}

/* Textos no modo escuro - Títulos principais */
body.dark-mode .section-title,
body.dark-mode .service-card h3,
body.dark-mode .portfolio-content h3,
body.dark-mode .member-info h3,
body.dark-mode .pricing-header h3,
body.dark-mode .contact-method h4,
body.dark-mode .info-item h4,
body.dark-mode .contact-form-container h3,
body.dark-mode .faq-question h3,
body.dark-mode .agency-info-centered h3,
body.dark-mode h1, 
body.dark-mode h2, 
body.dark-mode h3, 
body.dark-mode h4 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Textos no modo escuro - Parágrafos e descrições */
body.dark-mode .section-subtitle,
body.dark-mode .service-card p,
body.dark-mode .portfolio-content p,
body.dark-mode .real-site-content p,
body.dark-mode .real-site-description,
body.dark-mode .member-description,
body.dark-mode .member-role,
body.dark-mode .pricing-description,
body.dark-mode .contact-method p,
body.dark-mode .info-item p,
body.dark-mode .faq-answer p,
body.dark-mode .agency-subtitle,
body.dark-mode .agency-email,
body.dark-mode p {
    color: #e2e8f0 !important;
}

/* Elementos específicos dos sites reais no modo escuro */
body.dark-mode .real-site-item h4 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

body.dark-mode .real-site-type {
    color: #ff6b35 !important;
}

body.dark-mode .real-sites-intro h3 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

body.dark-mode .real-sites-intro p {
    color: #e2e8f0 !important;
}

body.dark-mode .feature-tag {
    background: #4a5568 !important;
    color: #e2e8f0 !important;
    border-color: #6b7280 !important;
}

/* Listas e elementos específicos no modo escuro */
body.dark-mode .service-features li,
body.dark-mode .pricing-features li,
body.dark-mode li {
    color: #d1d9e0 !important;
}

body.dark-mode .service-features li:before,
body.dark-mode .pricing-features li:before {
    color: #ff6b35 !important;
}

/* Links e elementos de navegação no modo escuro */
body.dark-mode a:not(.btn):not(.portfolio-btn):not(.pricing-cta):not(.faq-control-btn):not(.orcamento-control-btn):not(.example-btn) {
    color: #93c5fd !important;
}

body.dark-mode a:not(.btn):not(.portfolio-btn):not(.pricing-cta):not(.faq-control-btn):not(.orcamento-control-btn):not(.example-btn):hover {
    color: #dbeafe !important;
}

/* Spans e elementos inline no modo escuro */
body.dark-mode span,
body.dark-mode small,
body.dark-mode .text-muted {
    color: #d1d9e0 !important;
}

/* Elementos com texto que podem estar invisíveis */
body.dark-mode .typed-text,
body.dark-mode .static-text {
    color: inherit !important;
}

/* Garantir visibilidade de todos os elementos de texto no modo escuro */
body.dark-mode .content-text,
body.dark-mode .description,
body.dark-mode .text-content,
body.dark-mode .info-text {
    color: #e2e8f0 !important;
}

/* Elementos específicos que podem precisar de correção */
body.dark-mode .feature-title,
body.dark-mode .item-title,
body.dark-mode .card-title {
    color: #ffffff !important;
}

body.dark-mode .contact-method .role,
body.dark-mode .agency-subtitle {
    color: #ff6b35 !important;
}

/* Campo de e-mail da agência no modo escuro */
body.dark-mode .agency-email {
    background: #2d3748 !important;
    border-color: #5a6577 !important;
    color: #e2e8f0 !important;
}

/* Modo escuro para nova estrutura de contato */
body.dark-mode .team-member,
body.dark-mode .info-card {
    background: #3a4655;
    border-color: #5a6577;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

body.dark-mode .member-info h4,
body.dark-mode .card-content h4 {
    color: #ffffff;
}

body.dark-mode .member-info .email,
body.dark-mode .card-content p {
    color: #e2e8f0;
}

body.dark-mode .member-info .role {
    color: #ff6b35;
}

body.dark-mode .contact-cta {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

body.dark-mode .contact-cta h3 {
    color: white;
}

body.dark-mode .contact-cta p {
    color: rgba(255, 255, 255, 0.9);
}

/* Estilos para formulário no modo escuro */
body.dark-mode .form-section {
    background: rgba(255, 107, 53, 0.1);
    border-left-color: #ff6b35;
}

body.dark-mode .form-section-title {
    color: #ff6b35;
}

body.dark-mode .form-group label {
    color: #e2e8f0;
}

body.dark-mode .form-help {
    color: #a0aec0;
}

body.dark-mode .terms-checkbox {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    border-color: #4a5568;
}

body.dark-mode .terms-checkbox:hover {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #3d2622, #4a2f28);
}

body.dark-mode .terms-checkbox .checkbox-label {
    color: #1a202c !important;
}

body.dark-mode .terms-link {
    color: #ff6b35 !important;
}

body.dark-mode .terms-link:hover {
    color: #f7931e !important;
}

body.dark-mode .terms-checkbox.checked,
body.dark-mode .terms-checkbox:has(input:checked) {
    border-color: #28a745 !important;
    background: linear-gradient(135deg, #1e3a2e, #2d5a41) !important;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
}

/* Estilos específicos para options no modo escuro */
body.dark-mode select option {
    background: #2d3748;
    color: #e2e8f0;
}

body.dark-mode select optgroup {
    background: #1a202c;
    color: #e2e8f0;
    font-weight: bold;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus,
body.dark-mode .form-group textarea:focus {
    border-color: #ff6b35;
    background: #374151;
}

body.dark-mode .form-alert {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #f59e0b;
}

body.dark-mode .form-alert .alert-content h5,
body.dark-mode .form-alert .alert-content p {
    color: #ffffff;
}

body.dark-mode .form-alert .alert-content ul {
    color: #ffffff;
}

body.dark-mode .form-alert .alert-content ul li {
    color: #ffffff;
}

/* Aviso sobre preços no modo escuro */
body.dark-mode .pricing-notice {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
    border-left: 4px solid #3b82f6;
}

body.dark-mode .pricing-notice p {
    color: #dbeafe;
}

body.dark-mode .pricing-notice strong {
    color: #ffffff;
}

/* Notas nos cards de preços - modo escuro */
body.dark-mode .price-note {
    background: linear-gradient(135deg, #1e4620, #2e7d2e);
    border-color: #4caf50;
    color: #c8e6c9;
}

/* Seção de explicação sobre tipos de site - modo escuro */
body.dark-mode .pricing-explanation {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-color: #4a5568;
}

body.dark-mode .comparison-title {
    color: #e2e8f0;
}

body.dark-mode .comparison-card {
    background: #2d3748;
    color: #e2e8f0;
}

body.dark-mode .card-title-standard {
    color: #68d391;
}

body.dark-mode .card-title-panel {
    color: #63b3ed;
}

body.dark-mode .comparison-card p {
    color: #cbd5e0;
}

body.dark-mode .why-budget-notice {
    background: #744210;
    border-color: #d69e2e;
}

body.dark-mode .why-budget-notice p {
    color: #fbb040;
}

body.dark-mode optgroup {
    background: #2d3748;
    color: #ff6b35;
}

body.dark-mode optgroup option {
    background: #2d3748;
    color: #e2e8f0;
}

/* Modo escuro para seção de orçamento */
body.dark-mode .orcamento {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

body.dark-mode .orcamento-container {
    background: #3a4655;
    border-color: #4a5568;
}

body.dark-mode .orcamento .section-title {
    color: #ff6b35;
}

body.dark-mode .orcamento .section-subtitle {
    color: #e2e8f0;
}

/* Textos especiais no modo escuro */
body.dark-mode .hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

body.dark-mode .hero-subtitle {
    color: #f7fafc !important;
}

/* Garantir visibilidade de todos os textos principais no modo escuro */
body.dark-mode .section-title {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

body.dark-mode .section-subtitle {
    color: #e2e8f0 !important;
}

body.dark-mode .stat-number {
    color: #ff6b35 !important;
}

body.dark-mode .stat-label {
    color: #e2e8f0 !important;
}

/* Elementos específicos no modo escuro */
body.dark-mode .about-stats,
body.dark-mode .payment-phase,
body.dark-mode .payment-faq {
    background: #3a4655;
}

/* Estatísticas no modo escuro */
body.dark-mode .stat-number {
    color: #ff6b35 !important;
}

body.dark-mode .stat-label {
    color: #e2e8f0 !important;
    font-weight: 500;
}

body.dark-mode .faq-question {
    background: #3a4655;
    color: #ffffff !important;
}

body.dark-mode .faq-question:hover {
    background: #4a5568;
}

body.dark-mode .faq-answer {
    background: #2d3748;
}

/* FAQ Search no modo escuro */
body.dark-mode .faq-search-box {
    background: #2d3748;
    border-color: #4a5568;
}

body.dark-mode .faq-search-box:focus-within {
    border-color: #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

body.dark-mode .faq-search-box i.fa-search {
    color: #cbd5e0;
}

body.dark-mode .faq-search-box input {
    background: transparent;
    color: #ffffff;
    border: none;
}

body.dark-mode .faq-search-box input::placeholder {
    color: #a0aec0;
}

body.dark-mode .faq-control-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.4);
    color: #ffffff !important;
}

body.dark-mode .faq-control-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d14819 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    color: #ffffff !important;
}

body.dark-mode .faq-control-btn span {
    color: #ffffff !important;
}

body.dark-mode .faq-control-btn i {
    color: #ffffff !important;
}

/* Adicionar regras para o botão de orçamento no modo escuro */
body.dark-mode .orcamento-control-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.4);
    color: #ffffff !important;
}

body.dark-mode .orcamento-control-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    color: #ffffff !important;
}

body.dark-mode .orcamento-control-btn span {
    color: #ffffff !important;
}

body.dark-mode .orcamento-control-btn i {
    color: #ffffff !important;
}

/* Regras ultra-específicas para garantir que funcionem */
body.dark-mode .faq-controls .faq-control-btn {
    color: #ffffff !important;
}

body.dark-mode .orcamento-controls .orcamento-control-btn {
    color: #ffffff !important;
}

body.dark-mode section.faq .faq-control-btn {
    color: #ffffff !important;
}

body.dark-mode section.contact .orcamento-control-btn {
    color: #ffffff !important;
}

body.dark-mode .member-icon {
    background: #3a4655;
    color: #ff6b35 !important;
    border: 2px solid #ff6b35;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    
    /* Centralização simples e direta */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Regra específica para ícones Font Awesome dentro de member-icon no modo escuro */
body.dark-mode .member-icon i {
    /* Se ainda estiver desalinhado, ajuste manual */
    margin-top: -2px; /* Ajuste fino para centralização perfeita */
}

/* Botão "Ver Sites que Já Criamos" no modo escuro */
body.dark-mode .real-sites-toggle-btn {
    color: #ffffff !important; /* Força o texto para branco */
}

body.dark-mode .real-sites-toggle-btn span {
    color: #ffffff !important; /* Força o span para branco */
}

/* Botões "Portfólio" e "GitHub" na seção Nossa Equipe no modo escuro */
body.dark-mode .portfolio-btn {
    color: #ffffff !important; /* Força o texto para branco */
}

body.dark-mode .portfolio-btn:hover {
    color: #ffffff !important; /* Força o texto para branco no hover */
}

/* Regras mais específicas para garantir que funcionem */
body.dark-mode .member-contact .portfolio-btn {
    color: #ffffff !important;
}

body.dark-mode .member-contact .portfolio-btn:hover {
    color: #ffffff !important;
}

body.dark-mode .team-member .portfolio-btn {
    color: #ffffff !important;
}

body.dark-mode .team-member .portfolio-btn:hover {
    color: #ffffff !important;
}

/* Formulários no modo escuro */
body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: #2d3748 !important;
    border: 2px solid #4a5568;
    color: #ffffff !important;
}

/* Estilos específicos para options e optgroups no modo escuro */
body.dark-mode select option {
    background: #2d3748 !important;
    color: #ffffff !important;
}

body.dark-mode select optgroup {
    background: #1a202c !important;
    color: #ffffff !important;
    font-weight: bold;
}

/* Forçar cores para diferentes navegadores */
body.dark-mode select {
    background: #2d3748 !important;
    color: #ffffff !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
    color: #cbd5e0 !important;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus,
body.dark-mode .form-group textarea:focus {
    border-color: #ff6b35;
    background: #374151 !important;
}

/* Skills e tags no modo escuro */
body.dark-mode .skill {
    background: #ff6b35;
    color: #ffffff !important;
}

body.dark-mode .tag {
    background: #4a5568;
    color: #e2e8f0 !important;
}

/* Preços no modo escuro */
body.dark-mode .price .amount,
body.dark-mode .price .currency {
    color: #ffffff !important;
}

body.dark-mode .pricing-features li {
    color: #e2e8f0 !important;
}

/* Features no modo escuro */
/* Blur Effects modo escuro */
body.dark-mode .blur-decoration {
    opacity: 0.08;
}

body.dark-mode .blur-orange-1 {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), rgba(243, 156, 18, 0.08));
}

body.dark-mode .blur-orange-2 {
    background: radial-gradient(circle, rgba(243, 156, 18, 0.12), rgba(255, 107, 53, 0.06));
}

body.dark-mode .blur-orange-3 {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), rgba(230, 126, 34, 0.05));
}

body.dark-mode .blur-orange-4 {
    background: radial-gradient(circle, rgba(230, 126, 34, 0.1), rgba(211, 84, 0, 0.05));
}

body.dark-mode .features::before {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05), rgba(243, 156, 18, 0.03));
}

body.dark-mode .features::after {
    background: radial-gradient(circle, rgba(243, 156, 18, 0.04), rgba(255, 107, 53, 0.02));
}

body.dark-mode .pricing::before {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.04), rgba(243, 156, 18, 0.02));
}

body.dark-mode .pricing::after {
    background: radial-gradient(circle, rgba(243, 156, 18, 0.03), rgba(255, 107, 53, 0.02));
}

/* Features modo escuro */
body.dark-mode .features {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

body.dark-mode .feature-item {
    background: transparent;
    border: none;
    box-shadow: none;
}

body.dark-mode .feature-item:hover {
    box-shadow: none;
    border: none;
}

body.dark-mode .feature-item h3 {
    color: #ffffff;
}

body.dark-mode .feature-item p {
    color: #e2e8f0;
}

body.dark-mode .feature-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(243, 156, 18, 0.08));
    border-color: rgba(255, 107, 53, 0.15);
}

body.dark-mode .feature-highlight span {
    color: #ff6b35;
}

/* Footer no modo escuro */
/* Footer modo escuro */
body.dark-mode .footer {
    background: #1a202c;
    border-top: 3px solid #ff6b35;
}

body.dark-mode .footer-left p,
body.dark-mode .footer-right p {
    color: #718096;
}

body.dark-mode .footer-left a {
    color: #ff6b35 !important;
}

body.dark-mode .footer-left a:hover {
    color: #f7931e !important;
}

/* Garantir que o link de Termos de Serviço mantenha a cor laranja */
body.dark-mode .footer-left a[href*="termos"] {
    color: #ff6b35 !important;
}

body.dark-mode .footer-left a[href*="termos"]:hover {
    color: #f7931e !important;
}

/* Regra específica para a classe terms-link */
body.dark-mode .terms-link {
    color: #ff6b35 !important;
}

body.dark-mode .terms-link:hover {
    color: #f7931e !important;
}

body.dark-mode .footer-left strong,
body.dark-mode .footer-right strong {
    color: #ff6b35;
}

body.dark-mode .counter-compact {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(243, 156, 18, 0.08) 100%);
    border-color: rgba(255, 107, 53, 0.15);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.05);
}

body.dark-mode .counter-compact::before {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

body.dark-mode .counter-compact span {
    color: #e2e8f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

body.dark-mode .counter-compact img {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .counter-compact:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(243, 156, 18, 0.12) 100%);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.08);
}

body.dark-mode .counter-compact:hover img {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

body.dark-mode .footer-cta {
    background: #ff6b35;
    color: white;
}

body.dark-mode .footer-cta:hover {
    background: #e85a2b;
}

/* Botão de tema no modo escuro */
body.dark-mode .theme-switch-track {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

body.dark-mode .theme-switch-track::before {
    opacity: 0.3;
}

body.dark-mode .theme-switch-thumb {
    transform: translateX(30px);
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.4),
        0 1px 4px rgba(0, 0, 0, 0.2);
}

body.dark-mode .theme-icon {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body.dark-mode .theme-switch:hover .theme-switch-thumb {
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Navegação no modo escuro */
body.dark-mode .nav-links a {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body.dark-mode .nav-links a:hover {
    color: #f7fafc !important;
}

body.dark-mode .hamburger span {
    background: #ffffff !important;
}

/* Botões no modo escuro */
body.dark-mode .btn {
    background: #4299e1;
    color: #ffffff !important;
    border: none;
}

body.dark-mode .btn:hover {
    background: #3182ce;
    color: #ffffff !important;
}

/* IMPORTANTE: Manter botões primários (laranja) no modo escuro - DEVE vir DEPOIS das regras gerais */
body.dark-mode .btn.btn-primary {
    background: #ff6b35 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .btn.btn-primary:hover {
    background: #e55a2b !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Estilo específico para botões secundários no modo escuro */
body.dark-mode .btn.btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
}

body.dark-mode .btn.btn-secondary:hover {
    background: #ffffff !important;
    color: #2d3748 !important;
}

/* Estilos específicos para botões secundários no hero no tema escuro */
body.dark-mode .hero-buttons .btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
}

body.dark-mode .hero-buttons .btn-secondary:hover {
    background: #ffffff !important;
    color: #2d3748 !important;
}

/* Para botões que são apenas .btn-primary (sem .btn) */
body.dark-mode .btn-primary {
    background: #ff6b35 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .btn-primary:hover {
    background: #e55a2b !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

body.dark-mode .btn-outline {
    border: 2px solid #4299e1;
    color: #4299e1 !important;
    background: transparent;
}

body.dark-mode .btn-outline:hover {
    background: #4299e1;
    color: #ffffff !important;
}

/* Lista de preços no modo escuro */
body.dark-mode .pricing-features li::before {
    color: #81c784 !important;
}

/* Melhorias para o hero no modo escuro */
body.dark-mode .hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #f7fafc;
}

body.dark-mode .hero h1 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

body.dark-mode .hero p {
    color: #e2e8f0 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Footer melhorado no modo escuro */
body.dark-mode footer {
    background: #1a202c !important;
    color: #e2e8f0 !important;
}

body.dark-mode .footer-content h3 {
    color: #ffffff !important;
}

body.dark-mode .footer-content p,
body.dark-mode .footer-content li {
    color: #cbd5e0 !important;
}

body.dark-mode .footer-content a {
    color: #81c784 !important;
}

body.dark-mode .footer-content a:hover {
    color: #a5d6a7 !important;
}

/* Estilos para nova estrutura de preços */
.client-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.client-category {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-header {
    background: linear-gradient(135deg, #ff6b35 0%, #2c3e50 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.category-icon {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon i {
    font-size: 1.8rem;
}

.category-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-header p {
    opacity: 0.9;
    font-size: 0.9rem;
}

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

.service-price-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-price-card.featured {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff5f2 0%, #ffeee8 100%);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #ff6b35;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-price-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1rem;
    color: #666;
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-left: 0.2rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-features i {
    margin-right: 0.5rem;
    color: #28a745;
    font-size: 0.8rem;
}

.service-features i.fa-info-circle {
    color: #17a2b8;
}

.maintenance-options {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

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

.maintenance-item h5 {
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.maintenance-price {
    color: #ff6b35;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.maintenance-desc {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
}

/* Maintenance Explanation Section */
.maintenance-explanation {
    margin-top: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.maintenance-explanation h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.maintenance-card {
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.maintenance-card:hover {
    transform: translateY(-5px);
}

.maintenance-icon {
    background: #ff6b35;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.maintenance-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.maintenance-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.maintenance-benefits {
    list-style: none;
    margin-bottom: 1rem;
}

.maintenance-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #555;
}

.maintenance-benefits i {
    margin-right: 0.8rem;
    color: #28a745;
    font-size: 1rem;
}

.complexity-levels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.level-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid;
}

.level-item.small {
    border-left-color: #28a745;
}

.level-item.medium {
    border-left-color: #ffc107;
}

.level-item.large {
    border-left-color: #dc3545;
}

.level-badge {
    font-weight: 600;
    color: #2c3e50;
    min-width: 60px;
}

.level-desc {
    color: #666;
    font-size: 0.9rem;
}

/* Dark mode para maintenance explanation */
body.dark-mode .maintenance-explanation {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

body.dark-mode .maintenance-explanation h3 {
    color: #ffffff;
}

body.dark-mode .maintenance-card {
    background: #2d3748;
}

body.dark-mode .maintenance-card h4 {
    color: #ffffff;
}

body.dark-mode .maintenance-card p {
    color: #cbd5e0;
}

body.dark-mode .level-item {
    background: #4a5568;
}

body.dark-mode .level-badge {
    color: #ffffff;
}

body.dark-mode .level-desc {
    color: #cbd5e0;
}

body.dark-mode .maintenance-benefits li {
    color: #e2e8f0;
}

/* Estilos do modo escuro para novos elementos de pricing */
body.dark-mode .pricing-toggle-btn {
    background: #4a5568;
    color: #e2e8f0;
    border-color: #5a6577;
}

body.dark-mode .pricing-toggle-btn:hover {
    background: #5a6577;
    color: #ffffff;
}

body.dark-mode .pricing-toggle-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #ffffff;
}

body.dark-mode .card-header h3 {
    color: #ffffff;
}

body.dark-mode .card-header i {
    color: #ff6b35;
}

body.dark-mode .card-badge {
    background: #5a6577;
    color: #ffffff;
}

body.dark-mode .card-badge.popular {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #ffffff;
}

body.dark-mode .card-price {
    background: linear-gradient(135deg, #4a5568, #5a6577);
    border: 1px solid #6b7280;
}

body.dark-mode .card-price .currency,
body.dark-mode .card-price .period {
    color: #cbd5e0;
}

body.dark-mode .card-price .amount {
    color: #ff6b35;
}

body.dark-mode .card-description p {
    color: #cbd5e0;
}

body.dark-mode .card-description p strong {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.2);
}

body.dark-mode .feature-item span {
    color: #e2e8f0;
}

body.dark-mode .feature-item i {
    color: white;
}

body.dark-mode .card-maintenance {
    background: #374151;
    border: 1px solid #4b5563;
}

body.dark-mode .card-maintenance h4 {
    color: #ffffff;
}

body.dark-mode .maintenance-option strong {
    color: #ff6b35;
}

body.dark-mode .maintenance-option span {
    color: #e2e8f0;
}

body.dark-mode .maintenance-option small {
    color: #a0aec0;
}

/* Dark mode para preços mensais */
body.dark-mode .card-pricing-details {
    background: linear-gradient(135deg, #374151, #4b5563);
    border-color: #48bb78;
}

body.dark-mode .card-pricing-details h4 {
    color: #48bb78;
}

body.dark-mode .monthly-amount {
    color: #48bb78;
}

body.dark-mode .monthly-price small {
    color: #a0aec0;
}

/* Dark mode para nota importante - Design Premium */
body.dark-mode .pricing-important-note {
    background: linear-gradient(135deg, #1a202c, #2d3748, #4a5568);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

body.dark-mode .note-header {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

body.dark-mode .note-header i {
    color: #ff6b35;
}

body.dark-mode .note-header h4 {
    color: #ffffff;
}

body.dark-mode .note-content {
    background: rgba(45, 55, 72, 0.95);
}

body.dark-mode .note-content::before {
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

body.dark-mode .note-content p {
    color: #e2e8f0;
}

body.dark-mode .note-content strong {
    color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Correção para emojis em modo escuro - strong */
body.dark-mode .note-content strong:has-emoji,
body.dark-mode .note-content strong[class*="emoji"] {
    -webkit-text-fill-color: #ff6b35 !important;
    background: none !important;
}

body.dark-mode .note-content em {
    color: #67e8f9;
    background: linear-gradient(135deg, #67e8f9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Correção para emojis em modo escuro - em */
body.dark-mode .note-content em:has-emoji,
body.dark-mode .note-content em[class*="emoji"] {
    -webkit-text-fill-color: #67e8f9 !important;
    background: none !important;
}

body.dark-mode .card-warning {
    background: rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
}

body.dark-mode .card-warning span {
    color: #fbbf24;
}

body.dark-mode .card-warning i {
    color: #f59e0b;
}

body.dark-mode .card-button {
    background: linear-gradient(135deg, #4a5568, #5a6577);
    color: #e2e8f0;
    border-color: #6b7280;
}

body.dark-mode .card-button:hover {
    background: linear-gradient(135deg, #5a6577, #6b7280);
    color: #ffffff;
}

body.dark-mode .card-button.primary {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #ffffff;
}

body.dark-mode .card-button.primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d14819 100%);
}

body.dark-mode .pricing-footer .pricing-note {
    color: #cbd5e0;
}

body.dark-mode .pricing-footer .pricing-note i {
    color: #ff6b35;
}

body.dark-mode .pricing-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #ffffff !important;
}

body.dark-mode .pricing-cta:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d14819 100%);
    color: #ffffff !important;
}

/* Responsivo para maintenance explanation */
@media (max-width: 768px) {
    .maintenance-cards {
        grid-template-columns: 1fr;
        margin: 0 1rem;
    }
    
    .maintenance-card {
        padding: 1.5rem;
    }
    
    .complexity-levels {
        gap: 0.8rem;
    }
    
    .level-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }
}

/* Descrição dos serviços */
.services-description {
    margin: 3rem 0;
}

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

.description-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.description-card:hover {
    transform: translateY(-3px);
}

.description-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #2c3e50 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.description-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.complexity-levels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    list-style: none;
}

.level {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.level.small {
    background: #d4edda;
    color: #155724;
}

.level.medium {
    background: #fff3cd;
    color: #856404;
}

.level.large {
    background: #f8d7da;
    color: #721c24;
}

/* Estilos para o card de domínio */
.domain-examples {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.domain-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35 0%, #2c3e50 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.domain-badge.free {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.domain-badge::before {
    content: "💎 ";
    margin-right: 0.3rem;
}

.domain-badge.free::before {
    content: "🆓 ";
}

/* Modo escuro para domain badges */
body.dark-mode .domain-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #2c3e50 100%);
}

body.dark-mode .domain-badge.free {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

/* Responsividade para domain examples */
@media (max-width: 768px) {
    .domain-examples {
        gap: 0.3rem;
    }
    
    .domain-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Modelo de cobrança atualizado */
.category-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.category-badge {
    background: rgba(255,107,53,0.1);
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255,107,53,0.3);
}

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

.maintenance-option {
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.maintenance-option:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
}

.maintenance-option h5 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-description p {
    margin-bottom: 1rem;
}

.option-benefits {
    list-style: none;
    margin: 1rem 0;
}

.option-benefits li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.option-price {
    background: linear-gradient(135deg, #ff6b35 0%, #2c3e50 100%);
    color: white;
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.complexity-pricing {
    margin: 1rem 0;
}

.complexity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.complexity-label {
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.complexity-price {
    font-weight: 700;
    color: #ff6b35;
}

.complexity-note {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Modo escuro para novas seções */
body.dark-mode .client-category {
    background: #2d3748;
}

body.dark-mode .service-price-card {
    background: #4a5568;
    color: #e2e8f0;
}

body.dark-mode .service-price-card.featured {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

body.dark-mode .service-price-card h4 {
    color: #e2e8f0;
}

body.dark-mode .maintenance-options {
    background: #4a5568;
    border-top-color: #2d3748;
}

body.dark-mode .maintenance-item h5 {
    color: #e2e8f0;
}

body.dark-mode .description-card {
    background: #2d3748;
    color: #e2e8f0;
}

body.dark-mode .description-card h4 {
    color: #e2e8f0;
}

body.dark-mode .maintenance-option {
    background: #2d3748;
    color: #e2e8f0;
}

body.dark-mode .maintenance-option h5 {
    color: #e2e8f0;
}

body.dark-mode .complexity-item {
    border-bottom-color: #4a5568;
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
    .client-categories {
        gap: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .maintenance-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .description-grid {
        grid-template-columns: 1fr;
    }
    
    .maintenance-comparison {
        grid-template-columns: 1fr;
    }
    
    .complexity-levels {
        flex-direction: column;
    }
}

/* Melhorias adicionais para legibilidade no modo escuro */
body.dark-mode .service-price-card p,
body.dark-mode .description-card p,
body.dark-mode .maintenance-option p {
    color: #e2e8f0 !important;
}

body.dark-mode .category-header h3,
body.dark-mode .category-header p {
    color: #ffffff !important;
}

body.dark-mode .maintenance-price {
    color: #ff6b35 !important;
}

body.dark-mode .complexity-price {
    color: #ff6b35 !important;
}

body.dark-mode .complexity-note {
    color: #a0aec0 !important;
}

body.dark-mode .option-description p {
    color: #e2e8f0 !important;
}

body.dark-mode .option-description strong {
    color: #ffffff !important;
}

body.dark-mode .option-benefits li {
    color: #e2e8f0 !important;
}

body.dark-mode .services-description h3 {
    color: #ffffff !important;
}

body.dark-mode .payment-structure h3,
body.dark-mode .payment-benefits h3,
body.dark-mode .payment-faq h3 {
    color: #ffffff !important;
}

body.dark-mode .payment-structure h4,
body.dark-mode .payment-benefits h4,
body.dark-mode .payment-faq h4 {
    color: #ffffff !important;
}

body.dark-mode .phase-content p,
body.dark-mode .benefit-item p,
body.dark-mode .info-item p {
    color: #e2e8f0 !important;
}

body.dark-mode .category-badge {
    background: rgba(255,107,53,0.3);
    color: #ff6b35 !important;
    border-color: rgba(255,107,53,0.6);
}

body.dark-mode .pricing-note p {
    color: #e2e8f0 !important;
}

body.dark-mode .pricing-note strong {
    color: #ffffff !important;
}

/* Melhorar contraste dos domain badges no modo escuro */
body.dark-mode .domain-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #2c3e50 100%);
    color: #ffffff !important;
}

body.dark-mode .domain-badge.free {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #ffffff !important;
}

/* Melhorar service features no modo escuro */
body.dark-mode .service-features li {
    color: #e2e8f0 !important;
}

body.dark-mode .service-features i.fa-check {
    color: #81c784 !important;
}

body.dark-mode .service-features i.fa-info-circle {
    color: #64b5f6 !important;
}

/* Melhorar phase features no modo escuro */
body.dark-mode .phase-features li {
    color: #e2e8f0 !important;
}

body.dark-mode .phase-features i {
    color: #81c784 !important;
}

/* Melhorar textos dos cards de descrição */
body.dark-mode .description-card h4 {
    color: #ffffff !important;
}

/* Melhorar visibility dos complexity levels */
body.dark-mode .level.small {
    background: #2e7d32;
    color: #ffffff !important;
}

body.dark-mode .level.medium {
    background: #f57c00;
    color: #ffffff !important;
}

body.dark-mode .level.large {
    background: #d32f2f;
    color: #ffffff !important;
}

/* Estilos para btn-outline */
.btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    padding: 12px 24px;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    width: 100%;
    margin-top: 1rem;
}

.btn-outline:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Estilos para service-price-card special */
.service-price-card.special {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #6c757d;
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 280px;
}

.service-price-card.special h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-price-card.special p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Seção Panel Edition */
.panel-edition {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.panel-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #2c3e50 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
}

.panel-hero h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.panel-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.panel-pricing h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

/* Usar as mesmas classes dos service-price-card para manter consistência */
.panel-categories .service-price-card {
    background: linear-gradient(135deg, #fff5f2 0%, #ffeee8 100%);
    border: 2px solid #ff6b35;
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.panel-categories .service-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.panel-categories .category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.panel-categories .category-icon {
    background: #ff6b35;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.panel-categories .service-price-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0;
}

.panel-categories .price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.panel-categories .price .currency {
    font-size: 1.2rem;
    color: #666;
}

.panel-categories .price .amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-left: 0.3rem;
}

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

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #555;
}

.features-list i {
    margin-right: 0.8rem;
    color: #28a745;
    font-size: 1rem;
}

/* Hosting Info */
.hosting-info {
    margin: 3rem 0;
}

.hosting-info h3 {
    text-align: center;
    color: #d73527;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.info-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #ff6b35;
}

.info-card .info-icon {
    background: #ff6b35;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Panel CTA */
.panel-cta {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.panel-cta h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.panel-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Dark mode para nova seção */
body.dark-mode .panel-edition {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

body.dark-mode .panel-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #1a202c 100%);
}

body.dark-mode .panel-categories .service-price-card {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-color: #ff6b35;
    color: #e2e8f0;
}

body.dark-mode .panel-categories .service-price-card h4 {
    color: #ffffff;
}

body.dark-mode .info-card {
    background: #2d3748;
    border-left-color: #ff6b35;
}

body.dark-mode .info-card h4 {
    color: #ffffff;
}

body.dark-mode .info-card p {
    color: #cbd5e0;
}

body.dark-mode .panel-cta {
    background: #2d3748;
}

body.dark-mode .panel-cta h3 {
    color: #ffffff;
}

body.dark-mode .panel-cta p {
    color: #cbd5e0;
}

body.dark-mode .service-price-card.special {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-color: #718096;
}

body.dark-mode .service-price-card.special h4 {
    color: #ffffff;
}

body.dark-mode .service-price-card.special p {
    color: #cbd5e0;
}

body.dark-mode .btn-outline {
    color: #4299e1;
    border-color: #4299e1;
}

body.dark-mode .btn-outline:hover {
    background: #4299e1;
    color: white;
}

/* Responsivo para nova seção */
@media (max-width: 768px) {
    .panel-categories {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .panel-hero {
        padding: 2rem 1rem;
    }
    
    .panel-hero h3 {
        font-size: 1.5rem;
    }
    
    .service-price-card.special {
        min-height: auto;
        padding: 1.5rem;
    }
    
    /* Responsividade da seção de orçamento */
    .orcamento {
        padding: 40px 0;
    }
    
    .orcamento-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .orcamento .section-title {
        font-size: 2rem;
    }
    
    .orcamento .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .form-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .form-section-title {
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Previne zoom no iOS */
    }
}

/* Media query para dispositivos touch (corrige problemas de hover em mobile) */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .portfolio-item:hover,
    .team-member:hover,
    .pricing-card:hover,
    .contact-method:hover,
    .info-card:hover,
    .maintenance-plan:hover {
        transform: none !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
    }
}

/* Footer Counter - Contador de Visitantes */
.footer-counter {
    margin-top: 10px;
}

.counter-stat {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.counter-stat:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.counter-stat:hover {
    transform: translateX(3px);
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
    padding-left: 4px;
}

.counter-stat i {
    font-size: 0.9rem;
    color: #ff6b35;
    margin-right: 8px;
    min-width: 16px;
    text-align: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.stat-info .stat-number {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1px;
}

.stat-info .stat-label {
    font-size: 0.7rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.footer-section h4 i {
    color: #ff6b35;
    margin-right: 6px;
    font-size: 0.9rem;
}

/* Responsividade do footer counter */
@media (max-width: 768px) {
    .counter-stat {
        margin-bottom: 6px;
        padding: 3px 0;
    }
    
    .counter-stat i {
        font-size: 0.8rem;
        margin-right: 6px;
        min-width: 14px;
    }
    
    .stat-number {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .footer-section h4 i {
        font-size: 0.8rem;
    }
}

/* ================================
   NOVA SEÇÃO DE PREÇOS ESTILIZADA 
   ================================ */

/* Pricing Section - Nova */
.pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06), rgba(243, 156, 18, 0.03));
    border-radius: 50%;
    filter: blur(90px);
    animation: float 15s ease-in-out infinite;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.05), rgba(255, 107, 53, 0.03));
    border-radius: 50%;
    filter: blur(75px);
    animation: float 18s ease-in-out infinite reverse;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

/* Toggle de tipos */
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    gap: 1rem;
}

.pricing-toggle-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-width: 220px;
    width: 220px;
    text-align: center;
}

.pricing-toggle-btn:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.pricing-toggle-btn.active {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-color: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.pricing-toggle-btn i {
    font-size: 1.2rem;
}

/* Cards de preços */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.pricing-cards.hidden {
    display: none;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.1);
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

.pricing-card.featured {
    transform: scale(1.02);
    border: 2px solid #ff6b35;
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.2);
}

/* Header do card */
.card-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.card-header i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    display: block;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: 700;
}

.card-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: #666;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(15deg);
}

.card-badge.popular {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Preço */
.card-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.card-price .currency {
    font-size: 1.2rem;
    color: #666;
    align-self: flex-start;
}

.card-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
}

.card-price .period {
    font-size: 1.2rem;
    color: #666;
    align-self: flex-end;
}

/* Descrição */
.card-description {
    text-align: center;
    margin-bottom: 2rem;
}

.card-description p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.card-description p:last-child {
    margin-bottom: 0;
}

.card-description p strong {
    color: #ff6b35;
    font-size: 0.95rem;
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    margin-top: 0.5rem;
}

/* Manutenção */
.card-maintenance {
    background: rgba(248, 249, 250, 0.7);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.card-maintenance h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.maintenance-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.maintenance-option {
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.maintenance-option strong {
    display: block;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.maintenance-option span {
    display: block;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.maintenance-option small {
    color: #666;
    font-size: 0.85rem;
}

/* Seção de preços mensais */
.card-pricing-details {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid #28a745;
    position: relative;
}

.card-pricing-details::before {
    content: '💰';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.card-pricing-details h4 {
    color: #28a745;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.monthly-price {
    text-align: center;
}

.monthly-amount {
    display: block;
    color: #28a745;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.monthly-price small {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

/* Nota importante sobre backend - Design Premium */
.pricing-important-note {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff8c42);
    border: none;
    border-radius: 15px;
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

.pricing-important-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    }
    100% {
        box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.note-header {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.note-header i {
    color: white;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.note-header h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.note-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.3rem 1.5rem;
    border-radius: 0 0 15px 15px;
    backdrop-filter: blur(10px);
    position: relative;
}

.note-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.note-content p {
    margin-bottom: 0.8rem;
    color: #2c3e50;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 500;
}

.note-content p:first-child {
    margin-top: 0.5rem;
}

.note-content p:last-child {
    margin-bottom: 0;
}

.note-content strong {
    color: #ff6b35;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Correção para emojis em elementos strong */
.note-content strong:has-emoji,
.note-content strong[class*="emoji"] {
    -webkit-text-fill-color: #ff6b35 !important;
    background: none !important;
}

.note-content em {
    color: #667eea;
    font-style: normal;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 2px 4px;
    border-radius: 4px;
}

/* Correção para emojis em elementos em */
.note-content em:has-emoji,
.note-content em[class*="emoji"] {
    -webkit-text-fill-color: #667eea !important;
    background: none !important;
}

/* Modo escuro para manutenção */
body.dark-mode .maintenance-options {
    background: rgba(55, 65, 81, 0.9);
}

body.dark-mode .maintenance-option {
    background: #374151;
    border: 1px solid #4b5563;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body.dark-mode .maintenance-option strong {
    color: #f3f4f6;
}

body.dark-mode .maintenance-option span {
    color: #ff6b35;
}

body.dark-mode .maintenance-option small {
    color: #d1d5db;
}

/* Warning para painel */
.card-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-warning i {
    color: #f39c12;
}

.card-warning span {
    color: #856404;
    font-size: 0.9rem;
}

/* Botão do card */
.card-button {
    width: 100%;
    padding: 1rem 2rem;
    background: #666;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-button:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-button.primary {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.card-button.primary:hover {
    background: linear-gradient(135deg, #e55a2b, #d63031);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Footer da seção */
.pricing-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.pricing-note {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-note i {
    color: #ff6b35;
}

.pricing-cta {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #e55a2b, #d63031);
}

/* Responsividade para os novos cards */
@media (max-width: 768px) {
    .pricing-toggle {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .pricing-toggle-btn {
        width: 280px;
        min-width: 280px;
        justify-content: center;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
        padding: 0 0.5rem;
    }
    
    .pricing-card {
        padding: 1rem 0.8rem;
        min-height: 350px;
        margin-bottom: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
        border: 1px solid #ff6b35;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-3px);
    }
    
    .card-header h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .card-price {
        margin: 1rem 0;
    }
    
    .card-price .amount {
        font-size: 2.2rem;
    }
    
    .card-description {
        margin-bottom: 1rem;
    }
    
    .card-description p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.3rem;
    }
    
    .card-features {
        margin: 1rem 0;
    }
    
    .card-features .feature-item {
        padding: 0.3rem 0;
        margin-bottom: 0.5rem;
    }
    
    .card-features .feature-item span {
        font-size: 0.8rem;
    }
    
    .card-maintenance {
        margin: 1rem 0;
        padding: 0.8rem;
    }
    
    .card-maintenance h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .maintenance-option {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .maintenance-option strong {
        font-size: 0.85rem;
    }
    
    .maintenance-option span {
        font-size: 0.8rem;
    }
    
    .maintenance-option small {
        font-size: 0.7rem;
    }
    
    .card-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .pricing-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Footer responsivo */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-left,
    .footer-right {
        min-width: auto;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .counter-compact {
        justify-content: center;
    }
}

/* Media query específica para telefones pequenos */
@media (max-width: 480px) {
    /* Benefícios otimizados para mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 1rem;
        padding: 0 0.5rem;
    }
    
    .feature-item {
        padding: 0.8rem 0.5rem;
        min-height: auto;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-content {
        margin-bottom: 1rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 100%;
        margin: 0;
    }
    
    .feature-highlight {
        margin-top: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .feature-highlight span {
        font-size: 0.75rem;
    }
    
    /* Preços otimizados para mobile */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
        padding: 0 0.3rem;
    }
    
    .pricing-card {
        padding: 0.8rem 0.6rem;
        min-height: 320px;
        border-radius: 12px;
    }
    
    .card-header {
        text-align: center;
        margin-bottom: 0.8rem;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .card-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .card-price {
        text-align: center;
        margin: 0.8rem 0;
    }
    
    .card-price .currency {
        font-size: 1rem;
    }
    
    .card-price .amount {
        font-size: 1.8rem;
    }
    
    .card-price .period {
        font-size: 1rem;
    }
    
    .card-description {
        margin-bottom: 0.8rem;
    }
    
    .card-description p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.2rem;
    }
    
    .card-features .feature-item {
        padding: 0.2rem 0;
        margin-bottom: 0.3rem;
        align-items: flex-start;
    }
    
    .card-features .feature-item i {
        font-size: 0.8rem;
        margin-top: 0.1rem;
    }
    
    .card-features .feature-item span {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .card-pricing-details {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .card-pricing-details h4 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .monthly-amount {
        font-size: 1.2rem !important;
    }
    
    .monthly-price small {
        font-size: 0.7rem;
    }
    
    .pricing-important-note {
        padding: 0;
        margin-bottom: 2rem;
        border-radius: 15px;
    }
    
    .note-header {
        padding: 1.2rem 1.5rem;
        border-radius: 15px 15px 0 0;
    }
    
    .note-header i {
        font-size: 1.5rem;
    }
    
    .note-header h4 {
        font-size: 1.2rem;
    }
    
    .note-content {
        padding: 1.5rem;
        border-radius: 0 0 15px 15px;
    }
    
    .note-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .note-content::before {
        width: 40px;
        height: 3px;
    }
    
    .card-maintenance {
        margin: 0.8rem 0;
        padding: 0.6rem;
        border-radius: 8px;
    }
    
    .card-maintenance h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .maintenance-option {
        padding: 0.4rem;
        margin-bottom: 0.4rem;
        border-radius: 6px;
    }
    
    .maintenance-option strong {
        font-size: 0.8rem;
    }
    
    .maintenance-option span {
        font-size: 0.75rem;
    }
    
    .maintenance-option small {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .card-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        margin-top: 0.8rem;
        border-radius: 8px;
    }
    
    .card-warning {
        padding: 0.5rem;
        font-size: 0.75rem;
        margin: 0.5rem 0;
    }
    
    .pricing-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .pricing-toggle-btn {
        width: 250px;
        min-width: 250px;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
}

/* Estilos para validação de formulário */
/* Campos obrigatórios - asterisco vermelho */
label:has(+ [required])::after,
label[for*="categoria"]::after,
label[for*="tipo-painel"]::after,
label[for*="tipo-site"]::after,
label[for*="telefone"]::after,
label[for*="projeto"]::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

/* Validação visual dos campos */
input:invalid:not(:placeholder-shown),
select:invalid:not([value=""]),
textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
    background-color: #fff5f5;
}

/* Campos válidos só se tiverem required e estiverem preenchidos */
input[required]:valid:not(:placeholder-shown),
select[required]:valid:not([value=""]),
textarea[required]:valid:not(:placeholder-shown) {
    border-color: #28a745;
    background-color: #f0fff4;
}

/* Campos sem required não devem aparecer como válidos ou inválidos */
input:not([required]),
select:not([required]),
textarea:not([required]) {
    border-color: #ced4da;
    background-color: #ffffff;
}

/* Estilos para campos obrigatórios vazios */
input[required]:not(:placeholder-shown):invalid,
select[required]:invalid,
textarea[required]:not(:placeholder-shown):invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Estilos para campos preenchidos corretamente */
input[required]:not(:placeholder-shown):valid,
select[required]:not([value=""]):valid,
textarea[required]:not(:placeholder-shown):valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Estilo para alertas de validação personalizados */
.validation-error {
    background: linear-gradient(135deg, #f8d7da, #fab1a0);
    border: 1px solid #dc3545;
    border-radius: 10px;
    color: #721c24;
    margin: 1rem 0;
    padding: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: slideIn 0.5s ease;
}

.validation-error h4 {
    margin: 0 0 0.8rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #721c24;
}

.validation-error ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.validation-error ul li {
    margin: 0.4rem 0;
    padding-left: 0.2rem;
}

/* Dark mode para validação */
body.dark-mode input:invalid:not(:placeholder-shown),
body.dark-mode select:invalid:not([value=""]),
body.dark-mode textarea:invalid:not(:placeholder-shown) {
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
}

/* Campos válidos só se tiverem required e estiverem preenchidos */
body.dark-mode input[required]:valid:not(:placeholder-shown),
body.dark-mode select[required]:valid:not([value=""]),
body.dark-mode textarea[required]:valid:not(:placeholder-shown) {
    border-color: #51cf66;
    background-color: rgba(81, 207, 102, 0.1);
}

/* Campos sem required no dark mode não devem aparecer como válidos ou inválidos */
body.dark-mode input:not([required]),
body.dark-mode select:not([required]),
body.dark-mode textarea:not([required]) {
    border-color: #4a5568;
    background-color: #2d3748;
}

body.dark-mode .validation-error {
    background: linear-gradient(135deg, rgba(248, 215, 218, 0.2), rgba(250, 177, 160, 0.2));
    border-color: #ff6b6b;
    color: #ffcccc;
}

body.dark-mode .validation-error h4 {
    color: #ffcccc;
}

/* CSS adicional para garantir visibilidade das opções em todos os navegadores */
body.dark-mode select,
body.dark-mode select * {
    background-color: #2d3748 !important;
    color: #ffffff !important;
}

/* Para Firefox */
@-moz-document url-prefix() {
    body.dark-mode select option {
        background-color: #2d3748 !important;
        color: #ffffff !important;
    }
    
    body.dark-mode select optgroup {
        background-color: #1a202c !important;
        color: #ffffff !important;
    }
}

/* Para WebKit (Chrome, Safari, Edge) */
body.dark-mode select::-webkit-scrollbar {
    background: #2d3748;
}

body.dark-mode select::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 4px;
}

/* Garantir que as opções sejam sempre visíveis */
body.dark-mode option {
    background: #2d3748 !important;
    color: #ffffff !important;
}

body.dark-mode optgroup {
    background: #1a202c !important;
    color: #ffffff !important;
}

/* Estilos responsivos para botões de controle melhorados */
@media (max-width: 768px) {
    .faq-control-btn, .orcamento-control-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 15px 25px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        display: block;
    }
    
    .faq-control-btn {
        margin-bottom: 1.5rem;
    }
    
    .orcamento-control-btn {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-control-btn, .orcamento-control-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 280px;
    }
}

/* ===========================
   MODAL DE DESAFIOS - ESTILO MODERNO
   =========================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 5% auto;
    max-width: 600px;
    width: 90%;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    animation: modalSlideUp 0.4s ease-out;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    transform: rotate(90deg);
}

.modal-content h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-content h3::before {
    content: '🛡️';
    font-size: 1.5rem;
}

.modal-content > p {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.challenge {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
    border: 2px solid #e1e8ff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.challenge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #ff6b35, #f39c12);
    transition: width 0.3s ease;
}

.challenge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}

.challenge:hover::before {
    width: 8px;
}

.challenge label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
    cursor: pointer;
}

.challenge input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ff;
    border-radius: 10px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    color: #2c3e50;
    font-weight: 500;
}

.challenge input:focus {
    outline: none;
    border-color: #ff6b35;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: scale(1.02);
}

.challenge-feedback {
    margin-top: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    min-height: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.challenge-feedback:not(:empty) {
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.modal-actions .btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.modal-actions .btn::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.5s ease;
}

.modal-actions .btn:hover::before {
    left: 100%;
}

.modal-actions .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.modal-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #e55a2b 0%, #e67e22 100%);
}

.modal-actions .btn-secondary {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.3);
}

.modal-actions .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(149, 165, 166, 0.4);
    background: linear-gradient(135deg, #839496 0%, #6c7b7d 100%);
}

/* Animações */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Modo escuro para o modal */
body.dark-mode .modal-content {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-color: rgba(255, 107, 53, 0.2);
    color: #e2e8f0;
}

body.dark-mode .modal-content h3 {
    color: #e2e8f0;
}

body.dark-mode .modal-content > p {
    color: #a0aec0;
}

body.dark-mode .challenge {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-color: #4a5568;
}

body.dark-mode .challenge label {
    color: #e2e8f0;
}

body.dark-mode .challenge input {
    background: rgba(45, 55, 72, 0.9);
    border-color: #4a5568;
    color: #e2e8f0;
}

body.dark-mode .challenge input:focus {
    background: #2d3748;
    border-color: #ff6b35;
}

body.dark-mode .challenge-feedback:not(:empty) {
    background: rgba(45, 55, 72, 0.7);
}

body.dark-mode .modal-close {
    color: #a0aec0;
}

body.dark-mode .modal-close:hover {
    background: rgba(231, 76, 60, 0.2);
    color: #fc8181;
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-content {
        margin: 2% auto;
        padding: 30px 25px;
        width: 95%;
        max-width: none;
    }
    
    .modal-content h3 {
        font-size: 1.5rem;
    }
    
    .challenge {
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .challenge {
        padding: 15px;
    }
    
    .challenge input {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .modal-actions .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* ===========================================
   CORREÇÃO CRÍTICA - BOTÃO ORÇAMENTO INVISÍVEL
   =========================================== */

/* Forçar cor laranja para botões primários - MÁXIMA ESPECIFICIDADE */
button.btn.btn-primary,
.btn.btn-primary,
button[type="submit"].btn-primary,
form button.btn-primary {
    background: #ff6b35 !important;
    color: #ffffff !important;
    border: none !important;
}

button.btn.btn-primary:hover,
.btn.btn-primary:hover,
button[type="submit"].btn-primary:hover,
form button.btn-primary:hover {
    background: #e55a2b !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4) !important;
}

/* Modo escuro - forçar cor laranja */
body.dark-mode button.btn.btn-primary,
body.dark-mode .btn.btn-primary,
body.dark-mode button[type="submit"].btn-primary,
body.dark-mode form button.btn-primary {
    background: #ff6b35 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode button.btn.btn-primary:hover,
body.dark-mode .btn.btn-primary:hover,
body.dark-mode button[type="submit"].btn-primary:hover,
body.dark-mode form button.btn-primary:hover {
    background: #e55a2b !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4) !important;
}

/* BACKUP: Se ainda não funcionar, usar seletores super específicos */
section.contact form.contact-form button[type="submit"].btn.btn-primary {
    background: #ff6b35 !important;
    color: #ffffff !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body.dark-mode section.contact form.contact-form button[type="submit"].btn.btn-primary {
    background: #ff6b35 !important;
    color: #ffffff !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* PROTEÇÃO CONTRA JAVASCRIPT: Garantir que botões com emoji não percam o fundo */
button.has-emoji,
.btn.has-emoji,
button[type="submit"].has-emoji {
    background: #ff6b35 !important;
    color: #ffffff !important;
}

body.dark-mode button.has-emoji,
body.dark-mode .btn.has-emoji,
body.dark-mode button[type="submit"].has-emoji {
    background: #ff6b35 !important;
    color: #ffffff !important;
}

/* FORÇAR VISIBILIDADE TOTAL DO BOTÃO DE ORÇAMENTO */
button[type="submit"]:contains("📧"),
button:contains("Solicitar Orçamento") {
    background: #ff6b35 !important;
    color: #ffffff !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* CORREÇÃO FINAL: Força cor branca nos botões de controle no modo escuro */
body.dark-mode .faq-control-btn,
body.dark-mode .faq-control-btn *,
body.dark-mode .orcamento-control-btn,
body.dark-mode .orcamento-control-btn * {
    color: #ffffff !important;
}

body.dark-mode .faq-control-btn:hover,
body.dark-mode .faq-control-btn:hover *,
body.dark-mode .orcamento-control-btn:hover,
body.dark-mode .orcamento-control-btn:hover * {
    color: #ffffff !important;
}

/* Força especificamente para os spans e ícones dentro dos botões */
body.dark-mode button.faq-control-btn span,
body.dark-mode button.faq-control-btn i,
body.dark-mode button.orcamento-control-btn span,
body.dark-mode button.orcamento-control-btn i {
    color: #ffffff !important;
}

/* Botões "Ver Exemplo" na seção de tipos de sites no modo escuro */
body.dark-mode .example-btn {
    color: #ffffff !important;
}

body.dark-mode .example-btn:hover {
    color: #ffffff !important;
}

/* ====================================== */
/* FORMULÁRIO MULTI-PASSO MODERNIZADO     */
/* ====================================== */

.form-wizard-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
}

/* Barra de Progresso */
.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e0e0e0;
    z-index: 1;
}

.progress-bar-fill {
    position: absolute;
    top: 18px;
    left: 0;
    height: 4px;
    background: #ff6b35;
    z-index: 2;
    transition: width 0.4s ease-in-out;
}

.progress-step {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    transition: all 0.4s ease;
    border: 4px solid #ffffff;
}

.progress-step.active .step-icon {
    background: #ff6b35;
    color: #ffffff;
    transform: scale(1.1);
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    transition: color 0.4s ease;
}

.progress-step.active .step-label {
    color: #ff6b35;
}

/* Estilos dos Passos do Formulário */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

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

.step-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: center;
}

.step-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Campos do Formulário */
.contact-form-modern .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-form-modern label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.contact-form-modern input:focus,
.contact-form-modern select:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form-modern input.is-invalid,
.contact-form-modern select.is-invalid,
.contact-form-modern textarea.is-invalid {
    border-color: #e53e3e;
    background: #fff5f5;
}

.form-error-message {
    color: #e53e3e;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    min-height: 1.2em;
}

/* Navegação */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.form-navigation .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-navigation .btn i {
    transition: transform 0.3s ease;
}

.form-navigation .btn:hover .fa-arrow-right {
    transform: translateX(4px);
}
.form-navigation .btn:hover .fa-arrow-left {
    transform: translateX(-4px);
}

/* Painel de Revisão */
.review-panel {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-panel h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.8rem;
}

#review-content p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #4a5568;
}

#review-content strong {
    color: #2c3e50;
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

/* Termos */
.terms-group {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
}

/* Avisos e alertas do formulário */
.form-alert {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    color: #856404;
}

.form-alert .alert-content h5 {
    color: #856404;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-alert .alert-content p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.form-alert .alert-content ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.form-alert .alert-content li {
    margin-bottom: 0.3rem;
}

.form-help {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.3rem;
    display: block;
}

/* Tela de Sucesso */
.form-success-message {
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeIn 0.5s ease-in-out;
}

.success-icon {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1.5rem;
}

.form-success-message h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-success-message p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-wizard-container {
        padding: 1.5rem;
    }
    .progress-bar {
        margin-bottom: 2rem;
    }
    .step-label {
        display: none;
    }
    .progress-step {
        width: auto;
    }
    .step-title {
        font-size: 1.5rem;
    }
    .form-navigation {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .form-navigation .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Modo escuro para o formulário multi-etapas */
body.dark-mode .form-wizard-container {
    background: #2d3748;
}

body.dark-mode .step-title {
    color: #ffffff;
}

body.dark-mode .step-subtitle {
    color: #a0aec0;
}

body.dark-mode .contact-form-modern label {
    color: #e2e8f0;
}

body.dark-mode .contact-form-modern input,
body.dark-mode .contact-form-modern select,
body.dark-mode .contact-form-modern textarea {
    background: #4a5568;
    border-color: #718096;
    color: #ffffff;
}

body.dark-mode .contact-form-modern input:focus,
body.dark-mode .contact-form-modern select:focus,
body.dark-mode .contact-form-modern textarea:focus {
    background: #2d3748;
    border-color: #ff6b35;
}

body.dark-mode .review-panel {
    background: #4a5568;
    border-color: #718096;
}

body.dark-mode .review-panel h4 {
    color: #ffffff;
    border-color: #718096;
}

body.dark-mode #review-content p {
    color: #e2e8f0;
}

body.dark-mode #review-content strong {
    color: #ffffff;
}

body.dark-mode .terms-group {
    background: #4a5568;
}

body.dark-mode .form-success-message h3 {
    color: #ffffff;
}

body.dark-mode .form-success-message p {
    color: #a0aec0;
}

body.dark-mode .form-navigation {
    border-color: #718096;
}

/* Modo escuro para avisos e alertas */
body.dark-mode .form-alert {
    background: #744210;
    border-color: #d69e2e;
    color: #faf089;
}

body.dark-mode .form-alert .alert-content h5 {
    color: #faf089;
}

body.dark-mode .form-alert .alert-content p {
    color: #faf089;
}

body.dark-mode .form-help {
    color: #a0aec0;
}

/* ===================================================================== */
/* MEDIA QUERIES RESPONSIVAS PARA NOVAS SEÇÕES                         */
/* ===================================================================== */

@media (max-width: 768px) {
    /* Seção de explicação sobre tipos de site - mobile */
    .pricing-explanation {
        padding: 20px;
        margin: 20px 0;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .comparison-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .comparison-card {
        padding: 15px;
    }
    
    .why-budget-notice {
        padding: 12px;
        margin-top: 15px;
    }
    
    .why-budget-notice p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Ajustes para telas muito pequenas */
    .pricing-explanation {
        padding: 15px;
        margin: 15px -10px;
    }
    
    .comparison-card {
        padding: 12px;
    }
    
    .price-note {
        font-size: 11px;
        padding: 6px;
    }
}
