/* ==========================================================================
   1. RESET BÁSICO E NOVAS VARIÁVEIS GLOBAIS (TEMA CLARO)
   ========================================================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* NOVAS CORES (TEMA CLARO) */
    --primary-color: #3b82f6; /* Azul Principal da nova identidade */
    --dark-color: #1e293b;    /* Azul Escuro para Títulos */
    --gray-color: #64748b;    /* Cinza para Textos de parágrafo */
    --light-color: #f8fafc;   /* Cor de Fundo Clara Principal */
    --white-color: #FFFFFF;
    
    /* NOVAS FONTES (System UI - como na sua nova seção) */
    --title-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --body-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--gray-color); /* Define a cor padrão para parágrafos */
    background-color: var(--white-color); /* Fundo padrão do site */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-color);
}


/* ==========================================================================
   2. ESTILOS GERAIS (SEÇÃO DOS BOTÕES ATUALIZADA)
   ========================================================================== */

   .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--title-font);
    border: 1px solid transparent;
    cursor: pointer;
    /* ALTERADO: Transição mais completa para os novos efeitos */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, filter 0.3s ease;
}

.btn-primary {
    /* Design do botão */
    background: linear-gradient(135deg, #ddd77f 0%, #27c6ed 100%);
    color: var(--white-color);
    border-radius: 50px; /* Formato de pílula */
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
    
    /* Estrutura e transições */
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    overflow: hidden; /* Essencial para o efeito de brilho */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Animação de entrada para o botão */
    animation: ctaSlide 1s ease-out 0.6s both;
}

/* Efeito de brilho que passa no hover */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

/* Efeitos ao passar o mouse */
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.45);
}

/* Animação do ícone */
.btn-primary .fa-arrow-right {
    transition: transform 0.3s ease;
}

.btn-primary:hover .fa-arrow-right {
    transform: translateX(5px);
}

.btn-primary2 {
    /* Design do botão */
    background: linear-gradient(135deg, #ddd77f 0%, #27c6ed 100%);
    color: var(--white-color);
    border-radius: 50px; /* Formato de pílula */
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
    
    /* Estrutura e transições */
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    overflow: hidden; /* Essencial para o efeito de brilho */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Animação de entrada para o botão */
    animation: ctaSlide 1s ease-out 0.6s both;
}

/* Efeito de brilho que passa no hover */
.btn-primary2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

/* Efeitos ao passar o mouse */
.btn-primary2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.45);
}

/* Animação do ícone */
.btn-primary2 .fa-arrow-right {
    transition: transform 0.3s ease;
}

.btn-primary2:hover .fa-arrow-right {
    transform: translateX(5px);
}

/* ==========================================================================
   BOTÃO SECUNDÁRIO E SEÇÃO DE ESTATÍSTICAS DO HERO
   ========================================================================== */


/* Container das Estatísticas */
.hero-stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem; /* Espaçamento entre os itens */
    flex-wrap: wrap; /* Permite que os itens quebrem a linha em telas menores */
    margin-top: 4rem; /* Espaçamento acima da seção de estatísticas */
}

/* Item individual da estatística */
.stat-item {
    text-align: center;
}

/* Número da estatística */
.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #02ce2e; /* Usa a cor principal do seu site */
}

/* Texto descritivo da estatística */
.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgb(255, 255, 255);
    margin-top: 0.25rem;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 18px;
}

/* NOVO: Classe Reutilizável para Fundo com Gradiente Claro */
.bg-gradient-light {
    background: linear-gradient(29deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
}

/* ==========================================================================
   3. HEADER (VERSÃO REFINADA)
   ========================================================================== */
   .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 0 0 1px rgba(27, 31, 35, 0.08);
}

/* --- Top Bar (Barra Superior) --- */
.top-bar {
    background-color: #008aac;
    color: var(--light-color);
    padding: 12px 0; /* ALTERADO: Aumentando a espessura (altura) */
    font-size: 14px;
}

/* ... (O restante do .top-bar continua igual) ... */
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-details-top span {
    margin-right: 20px;
}
.contact-details-top i {
    color: #ffffff;
    margin-right: 8px;
}
.social-icons a {
    color: var(--light-color);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: #ded77f;
}

/* Remove estilos padrão */
.contact-details-top a {
  color: #ffffff; /* herda a cor do texto */
  text-decoration: none; /* remove sublinhado */
  cursor: pointer; /* mantém cursor de link */
}

/* Estado normal */
.contact-details-top a {
  color: #ffffff; /* cor padrão (azul estilo Bootstrap) */
}

/* Ao passar o mouse */
.contact-details-top a:hover {
  color: #ded77f; /* azul mais escuro */
}

/* Links já visitados */
.contact-details-top a:visited {
  color: #6f42c1; /* roxo para links visitados */
}

/* Quando o link está ativo (clicado) */
.contact-details-top a:active {
  color: #004085; /* tom mais escuro */
}



/* --- Header Principal --- */
.main-header {
    background-color: var(--white-color);
    padding: 13px 0;
    border-top-width: 5px; /* ALTERADO: Aumentando a espessura da linha */
    border-top-style: solid;
    border-image: linear-gradient(to right, #f57885, #f8b357, #59f5b2) 1;
}

.main-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--title-font);
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
}

/* ==========================================================================
   --- Navegação Principal (Super Refinada) ---
   ========================================================================== */
   .main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.main-nav a {
    display: block;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--title-font);
    font-size: 16px;
    position: relative; /* Essencial para o efeito de deslize */
    z-index: 1; /* Garante que o texto fique sempre visível */
    overflow: hidden; /* Esconde o fundo antes de deslizar */
    color: var(--dark-color);
    transition: color 0.4s ease-out;
}

/* NOVO: Pseudo-elemento que cria o fundo deslizante */
.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d6dfd3f;
    border-radius: 20px;
    transform: translateX(-101%); /* Começa totalmente à esquerda, fora do link */
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1); /* Transição suave */
    z-index: -1; /* Fica atrás do texto */
}

/* ALTERADO: Efeito hover agora ativa o deslize do fundo */
.main-nav a:hover {
    color: var(--dark-color); /* Mantém a cor do texto no hover */
}

.main-nav a:hover::before {
    transform: translateX(0); /* Move o fundo para a posição visível */
}

/* ALTERADO: Estilo premium para o link ativo com profundidade */
.main-nav a.active {
    background-color: #27c6ed;
    color: var(--white-color);
    box-shadow: 0 3px 15px rgba(13, 110, 253, 0.25); /* Sombra suave para dar profundidade */
}

/* Garante que o efeito de deslize não aconteça no link que já está ativo */
.main-nav a.active:hover::before {
    transform: translateX(-101%);
}

.nav-link a.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 3px 15px rgba(13, 110, 253, 0.25); /* Sombra suave para dar profundidade */
}

.main-nav a .fa-angle-down {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* ==========================================================================
   4. SEÇÃO HERO (SOLUÇÃO DEFINITIVA DE VÍDEO)
   ========================================================================== */

/* Container da seção Hero */
.hero-video-wrapper {
    position: relative; /* Essencial para posicionar o vídeo dentro dele */
    z-index: 2;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    overflow: hidden; /* Esconde qualquer parte do vídeo que vaze para fora */
}

/* Estilização do vídeo de fundo (COM A NOVA ABORDAGEM) */
.hero-video {
    position: absolute; /* Posicionado em relação ao .hero-video-wrapper */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centraliza o vídeo perfeitamente */
    min-width: 124%;
    min-height: 140%;
    width: auto;
    height: auto;
    z-index: 1; /* Fica no fundo, mas dentro da seção */
}

/* Camada escura sobre o vídeo */
.hero-video-wrapper .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2; /* Fica entre o vídeo e o conteúdo */
}

/* Conteúdo textual da seção */
.hero-video-wrapper .hero-content {
    position: relative;
    z-index: 3; /* Fica na frente de tudo */
    max-width: 800px;
    margin: 0 auto;
}

.hero-title, .hero-subtitle {
    /* Mantém os estilos anteriores para o título e subtítulo */
    font-family: var(--title-font);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ==========================================================================
   ESTILOS CORRIGIDOS PARA O TÍTULO E SUBTÍTULO DO HERO
   ========================================================================== */

   .hero-title {
    font-family: var(--title-font);
    font-size: clamp(2.8rem, 7vw, 4.5rem); /* Tamanho de fonte responsivo */
    font-weight: 800; /* Super pesado para dar impacto */
    color: var(--white-color); /* Cor branca para contraste */
    margin-bottom: 1.5rem;
    line-height: 1.1; /* Linha mais compacta para impacto */
    letter-spacing: -0.02em; /* Espaçamento negativo para modernidade */
}

/* Específico para a página sobre - sobrescreve o estilo geral */
.about-hero-section .hero-title {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem); /* Tamanho de fonte responsivo */
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    
    /* ESSA LINHA DEIXA A COR MAIS SUAVE E ELEGANTE */
    color: rgba(255, 255, 255, 0.85);
    
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;

    /* Animação de entrada com atraso */
    animation: subtitleSlide 1s ease-out 0.3s both;
}

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

/* ==========================================================================
   5. SEÇÃO SOBRE
   ========================================================================== */

/* ==========================================================================
   6. SEÇÃO SERVIÇOS
   ========================================================================== */
/* ==========================================================================
   SEÇÃO DE SERVIÇOS (VERSÃO FINAL - PREMIUM E TEMA CLARO)
   ========================================================================== */

/* ==========================================================================
   SEÇÃO DE SERVIÇOS (TEMA CLARO + EFEITOS DE HOVER PREMIUM)
   ========================================================================== */

#servicos.page-section {
    padding: 100px 0;

    position: relative;
    z-index: 5;
    overflow-x: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card de Serviço com preparação para o hover aprimorado */
.service-card {
    background-color: var(--white-color);
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease-out;
    position: relative;
    overflow: hidden;
    z-index: 1;

    /* Animação de entrada */
    opacity: 0;
    transform: translateY(30px);
}

/* NOVO: Pseudo-elemento para a borda de gradiente */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -1px; /* Compensa a largura da borda */
    border-radius: inherit; /* Herda o border-radius do card */
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

/* Ativação da animação de entrada */
.show-section .service-card {
    opacity: 1;
    transform: translateY(0);
}

.show-section .service-card:nth-child(1) { transition-delay: 0.2s; }
.show-section .service-card:nth-child(2) { transition-delay: 0.4s; }
.show-section .service-card:nth-child(3) { transition-delay: 0.6s; }

/* EFEITOS DE HOVER APRIMORADOS */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 41, 59, 0.1);
    border-color: transparent; /* Esconde a borda sólida para revelar o gradiente */
}

/* Revela a borda de gradiente no hover */
.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px auto;
    background-color: #27c6ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white-color);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Transição com "elasticidade" */
}

/* Animação do ícone no hover */
.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(15deg);
}

/* Estilo do número no fundo do card (adaptado para tema claro) */
.service-card .card-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 80px;
    font-weight: 800;
    /* Cor escura e com alta transparência para o fundo claro */
    color: rgba(30, 41, 59, 0.05); 
    z-index: 1;
    font-family: var(--title-font);
}
.service-card h3 {
    font-family: var(--title-font);
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
}


.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Responsividade (sem alterações) */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;

    /* Animação de entrada */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.show-section .section-header {
    opacity: 1;
    transform: translateY(0);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    /* Efeito de gradiente no texto */
    background: linear-gradient(135deg, #1e293b 0%, #27c6ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ==========================================================================
   SEÇÃO CONTATO PREMIUM
   ========================================================================== */

.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-section .section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-section .section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 60%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-text-side {
    padding-right: 20px;
}

.contact-text-side .section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(59, 130, 246, 0.1);
    color: #27c6ed;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text-side .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 60%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-text-side .section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-highlights {
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-item i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 500;
}


.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method:hover {
    transform: translateX(10px);
    background: rgba(59, 130, 246, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin: 0 -20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3px;
}

.contact-details span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}


/* Card do Formulário */
.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-header p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.modern-contact-form {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    background: transparent;
    font-size: 0.95rem;
    color: #1f2937;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #3b82f6;
}

.form-group input:focus + .form-focus-line,
.form-group select:focus + .form-focus-line,
.form-group textarea:focus + .form-focus-line {
    transform: scaleX(1);
}

.form-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.form-group select {
    cursor: pointer;
}

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

.form-submit {
    width: 100%;
    margin-top: 15px;
    justify-content: center;
    gap: 10px;
}

/* Elementos Decorativos */
.contact-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    animation: contactFloat 8s ease-in-out infinite;
}

.contact-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.contact-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 3s;
}

.contact-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 6s;
}

@keyframes contactFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }
    
    .contact-text {
        text-align: center;
        padding: 0 10px;
    }
    
    .contact-text h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .contact-text p {
        font-size: 1rem;
    }
    
    .contact-highlights {
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
    }
    
    .contact-form-card {
        padding: 25px 20px;
        margin: 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    .contact-form .btn {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }
}


/* ==========================================================================
   7. BOTÕES FLUTUANTES (BACK-TO-TOP E WHATSAPP)
   ========================================================================== */

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: none;
    font-size: 18px;
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, var(--primary-color) 100%);
    color: var(--white-color);
    text-decoration: none;
}

/* Botão WhatsApp Flutuante */
#whatsapp {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 998;
}

.wtsapp {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.wtsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    color: white;
    text-decoration: none;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

/* Responsividade para botões flutuantes */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    #whatsapp {
        bottom: 15px;
        right: 20px;
    }
    
    .wtsapp {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}


/* ==========================================================================
   7.5. GOOGLE MAPS SECTION
   ========================================================================== */

/* Seção do Mapa */
#map-section {
    padding: 0;
}

#map-section iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
    filter: invert(100%) grayscale(80%);
}


/* ==========================================================================
   8. FOOTER PREMIUM
   ========================================================================== */
.main-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--light-color);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.main-footer::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: footerGlow 8s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-about {
    position: relative;
}

.footer-about::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 50%;
    filter: blur(20px);
    animation: logoGlow 6s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

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

.footer-social-link:hover::before {
    left: 100%;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.footer-links h4,
.footer-contact h4,
.footer-services h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-services h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    border-radius: 2px;
}

.footer-links ul,
.footer-contact ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
    position: relative;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-links a::before,
.footer-services a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #ffffff;
    padding-left: 8px;
    transform: translateX(3px);
}

.footer-links a:hover::before,
.footer-services a:hover::before {
    width: 12px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-contact-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.footer-contact-list li:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.footer-contact-list li:hover::before {
    left: 100%;
}

.footer-contact-list i {
    color: #3b82f6;
    width: 24px;
    height: 24px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-list li:hover i {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.footer-contact-list div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-list strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.footer-contact-list span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 15px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent);
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact-list li {
        justify-content: center;
        text-align: left;
    }
}


/* ==========================================================================
   9. RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
    .main-header-container {
        padding: 0 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .header-actions .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: white;
    }
    
    .top-bar {
        transition: all 0.3s ease;
    }
    
    .top-bar.hidden {
        height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0;
    }
    
    .main-header {
        transition: all 0.3s ease;
    }
    
    /* Ocultar hamburguer quando menu mobile está ativo */
    .mobile-menu-toggle.menu-open {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    /* Adiciona espaço no body para compensar o header fixo */
    body {
        padding-top: 120px; /* Ajuste conforme necessário */
    }
    
    body.top-bar-hidden {
        padding-top: 70px; /* Menos espaço quando top bar está oculto */
    }
    
    .top-bar-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 15px;
        padding: 8px 15px;
    }
    
    .contact-details-top {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .social-icons {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .main-header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
}

    /* Hero Section Mobile */
    .hero-container,
    .about-content,
    .contact-container {
        flex-direction: column;
    }

    .hero-image {
        text-align: center;
        margin-top: 30px;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin: 20px 0 30px;
    }

    /* Services Section Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 15px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-contact {
        text-align: center;
    }
}


/* ==========================================================================
   ANIMAÇÕES DO HERO (ADICIONAR NO FINAL DO ARQUIVO)
   ========================================================================== */
   @keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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


/* Layout principal da seção sobre */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative; /* Garante que o conteúdo fique acima dos brilhos */
    z-index: 1;
}

/* Coluna da imagem com animação e interatividade */
.about-image {
    flex-basis: 45%;
    border-radius: 12px;
    overflow: hidden; /* Garante que o zoom da imagem não vaze */
    
    /* ANIMAÇÃO DE ENTRADA */
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.show-section .about-image {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.4s ease; /* Transição para o efeito de zoom */
}
/* NOVO: Efeito de hover na imagem */
.about-image:hover img {
    transform: scale(1.05);
}

/* Coluna do texto */
.about-text {
    flex-basis: 55%;
}

/* Bloco de código NOVO e CORRIGIDO */

/* ANIMAÇÃO DE ENTRADA */
#sobre .section-title,
#sobre .section-subtitle,
#sobre .about-list li {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Atrasos na animação para efeito escalonado (COM SELETORES CORRIGIDOS) */
#sobre.show-section .section-title { opacity: 1; transform: translateX(0); transition-delay: 0.2s; }
#sobre.show-section .section-subtitle { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }
#sobre.show-section .about-list li:nth-child(1) { transition-delay: 0.6s; opacity: 1; transform: translateX(0); }
#sobre.show-section .about-list li:nth-child(2) { transition-delay: 0.7s; opacity: 1; transform: translateX(0); }
#sobre.show-section .about-list li:nth-child(3) { transition-delay: 0.8s; opacity: 1; transform: translateX(0); }

/* NOVO: Efeito de hover nos itens da lista */
.about-list li:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.about-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.about-list li:hover .about-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

/* Responsividade para a seção Sobre */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 30px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .team-image-container {
        justify-content: center;
        text-align: left;
    }
    
    .about-section .section-header {
        padding: 0 30px;
    }
    
    .about-section .about-hero {
        padding: 0 20px;
    }
}

/* ==========================================================================
   NOVA SEÇÃO SOBRE NÓS (CSS FINAL COM ANIMAÇÕES CORRIGIDAS)
   ========================================================================== */

   .about-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* --- ESTILOS DOS ELEMENTOS --- */

.about-section .section-header { text-align: center; margin-bottom: 100px; padding: 0 40px; }
.about-section .section-badge { display: inline-block; padding: 0.5rem 1.5rem; background: rgba(59, 130, 246, 0.1); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.2); border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.about-section .section-title { font-size: clamp(2.5rem, 6vw, 3.5rem); font-weight: 800; color: #1e293b; margin-bottom: 2rem; line-height: 1.2; background: linear-gradient(135deg, #1e293b 0%, #27c6ed 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-section .section-subtitle { font-size: 1.2rem; color: #64748b; max-width: 700px; margin: 0 auto; font-weight: 400; line-height: 1.8; padding: 0 20px; }
.about-section .about-hero { margin-bottom: 120px; padding: 0 20px; }
.about-section .hero-image-container { position: relative; border-radius: 25px; overflow: hidden; margin-bottom: 60px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); transition: all 0.5s ease; }
.about-section .hero-image-container:hover { transform: translateY(-5px); box-shadow: 0 35px 60px rgba(0, 0, 0, 0.2); }
.about-section .hero-image { width: 100%; height: 400px; }
.about-section .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; padding: 0 40px; }
.about-section .about-text h3 { font-size: 2rem; color: #1e293b; margin-bottom: 2rem; font-weight: 700; position: relative; }
.about-section .about-text h3::after { content: ''; position: absolute; bottom: -15px; left: 0; width: 60px; height: 3px; background: linear-gradient(90deg, #3b82f6, #06b6d4); border-radius: 2px; }
.about-section .about-text p { font-size: 1.1rem; color: #475569; margin-bottom: 2rem; line-height: 1.9; }
.about-section .highlight-text { color: #27c6ed; font-weight: 600; }
.about-section .team-image { width: 100%; height: 350px; border-radius: 20px; box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1); }
.about-section .image-placeholder:hover::after { opacity: 1; }

/* --- LÓGICA DA ANIMAÇÃO (AGORA CORRIGIDA) --- */

/* 1. Define o estado inicial (invisível) para os elementos que serão animados */
.section-header,
.about-hero,
.about-text,
.team-image-container {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 2. Define o estado final (visível) quando a classe .show-section é adicionada pelo JS */
.section-header.show-section,
.about-hero.show-section,
.about-text.show-section,
.team-image-container.show-section {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Adiciona atrasos para a animação escalonada */
.about-hero.show-section { transition-delay: 0.2s; }
.about-text.show-section { transition-delay: 0.3s; }
.team-image-container.show-section { transition-delay: 0.4s; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .about-section .section-header { padding: 0 20px; margin-bottom: 60px; }
    .about-section .section-subtitle { padding: 0 15px; }
    .about-section .about-hero { padding: 0 15px; margin-bottom: 80px; }
    .about-section .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 20px;
    }
    .about-section .about-text p { margin-bottom: 1.5rem; }
}

/* ==========================================================================
   NOVA SEÇÃO NOSSOS VALORES (TEMA CLARO)
   ========================================================================== */

   .values-section {
    padding: 80px 0;
    
}

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

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0; /* Estado inicial para animação de entrada */
    transform: translateY(40px);
}

/* Classe adicionada pelo JavaScript para animar a entrada */
.value-card.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Linha colorida que aparece no hover */
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #10b981);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.value-card:hover::before {
    width: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f9ff, #dbeafe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #3b82f6; /* Cor do emoji/ícone */
    position: relative;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #ded77f, #27c6ed);
    transform: scale(1.1) rotate(5deg);
    color: white;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e2b3b;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.value-card:hover .value-title {
    color: #27c6ed;
}

.value-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================================
   SEÇÃO CTA (CALL TO ACTION)
   ========================================================================== */

.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    overflow: hidden;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.cta-text {
    flex: 1;
    max-width: 600px;
}

.cta-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 60%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Elementos decorativos */
.cta-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    animation: float 6s ease-in-out infinite;
}

.cta-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.cta-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

.cta-circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .cta-actions {
        align-items: center;
    }
}

/* ==========================================================================
   SEÇÃO SERVICES SHOWCASE (EXPANSÃO HORIZONTAL)
   ========================================================================== */

.services-showcase {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-showcase .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-showcase .section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-showcase .section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #27c6ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-showcase .section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

/* Container horizontal dos serviços */
.services-horizontal-container {
    display: flex;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    height: 400px;
}

/* Card individual */
.service-horizontal-card {
    position: relative;
    flex: 1;
    min-width: 200px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    outline: 1px solid rgba(18, 141, 255, 0.26);
    outline-offset: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s ease;
}

/* Imagem de fundo */
.service-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

/* Overlay escuro */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: background 0.6s ease;
}

/* Conteúdo do card */
.service-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    transition: all 0.6s ease;
}

/* Título do serviço */
.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    transition: font-size 0.6s ease;
}

/* Descrição (oculta por padrão) */
.service-description {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    max-height: 0;
    overflow: hidden;
}

.service-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Efeito hover - expansão horizontal */
.service-horizontal-card:hover {
    flex: 2.5; /* Expande para 2.5x o tamanho original */
    box-shadow: 0 4px 16px rgba(66, 55, 55, 0.993);
}

.service-horizontal-card:hover .service-background {
    transform: scale(1.05);
}

.service-horizontal-card:hover .service-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(59, 130, 246, 0.4) 100%);
}

.service-horizontal-card:hover .service-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.service-horizontal-card:hover .service-description {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
}

/* Responsividade */
@media (max-width: 768px) {
    .services-horizontal-container {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }
    
    .service-horizontal-card {
        height: 250px;
        flex: none;
    }
    
    .service-horizontal-card:hover {
        flex: none;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-horizontal-card:hover .service-title {
        font-size: 1.7rem;
    }
}


.estrelas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.estrela {
    position: absolute;
    bottom: -40px;
    width: 40px;
    animation-name: girarESubir;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.estrela1 {
    left: 5%;
    animation-delay: 0s;
    animation-duration: 9s;
}

.estrela2 {
    left: 15%;
    animation-delay: 1.2s;
    animation-duration: 7s;
}

.estrela3 {
    left: 25%;
    animation-delay: 2.5s;
    animation-duration: 8s;
}

.estrela4 {
    left: 35%;
    animation-delay: 0.7s;
    animation-duration: 6s;
}

.estrela5 {
    left: 45%;
    animation-delay: 3.1s;
    animation-duration: 10s;
}

.estrela6 {
    left: 55%;
    animation-delay: 1.8s;
    animation-duration: 7.5s;
}

.estrela7 {
    left: 65%;
    animation-delay: 0.3s;
    animation-duration: 9.5s;
}

.estrela8 {
    left: 75%;
    animation-delay: 2.2s;
    animation-duration: 6.8s;
}

.estrela9 {
    left: 85%;
    animation-delay: 4.1s;
    animation-duration: 8.3s;
}

.estrela10 {
    left: 95%;
    animation-delay: 0.9s;
    animation-duration: 7.7s;
}

@keyframes girarESubir {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-110vh) rotate(360deg);
        opacity: 0;
    }
}

/* ==========================================================================
   ESTILOS ESPECÍFICOS PARA A PÁGINA SOBRE
   ========================================================================== */

/* Hero Section da Página Sobre */
.about-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-color) 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

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

.about-hero-content .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-hero-content .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color) !important;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-content .hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

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

/* Nossa História */
.company-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.story-paragraph {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

.story-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image-main {
    position: relative;
    width: 450px;
    height: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.story-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-image-overlay {
    position: absolute;
    top: 60px;
    right: -30px;
    width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 4;
}

.story-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-frame {
    position: absolute;
    border: 3px solid #27c6ed;
    border-radius: 8px;
}

.story-frame-1 {
    top: 71px;
    left: 4px;
    width: 80px;
    height: 60px;
    z-index: 1;
}

.story-frame-2 {
    bottom: 78px;
    right: 2px;
    width: 60px;
    height: 80px;
    z-index: 2;
}

/* Missão, Visão e Valores */
.mission-vision-values {
    padding: 80px 0;
    background: white;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mvv-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ded77f, #27c6ed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.mvv-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.story-decoration-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    top: 80px;
    right: 80px;
    z-index: 1;
    opacity: 0.6;
}

.story-floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 4;
    text-align: center;
    border: 3px solid #3b82f6;
}

.badge-year {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Diferenciais */
.differentials-section {
    padding: 80px 0;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.differential-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.differential-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,  #ded77f, #27c6ed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.differential-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.differential-description {
    color: var(--gray-color);
    line-height: 1.6;
}

/* ==========================================================================
   PÁGINA DE SERVIÇOS
   ========================================================================== */






/* Processo de Trabalho */
.work-process {
    padding: 80px 0;
}

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

.process-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,  #ded77f, #27c6ed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.process-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.process-content p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.process-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.process-features span {
    color: var(--gray-color);
    font-size: 0.9rem;
}


/* Depoimentos */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
}

.testimonial-content p {
    color: var(--gray-color);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Estatísticas */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
}

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

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--title-font);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA melhorado */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}



/* Responsividade para os novos elementos da história */
@media (max-width: 768px) {
    .about-hero-content .hero-title {
        font-size: 2.5rem;
    }
    
    .company-story .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text .section-title {
        font-size: 2rem;
    }
    
    .story-image-container {
        height: 350px;
        padding: 0 20px;
    }
    
    .story-image-main {
        width: 280px;
        height: 200px;
    }
    
    .story-image-overlay {
        width: 180px;
        height: 130px;
        top: 40px;
        right: 10px;
    }
    
    .story-frame-1 {
        top: 50px;
        left: 10px;
        width: 60px;
        height: 45px;
    }
    
    .story-frame-2 {
        bottom: 60px;
        right: 5px;
        width: 45px;
        height: 60px;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    
    
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .story-image-container {
        height: 300px;
        padding: 0 15px;
    }
    
    .story-image-main {
        width: 240px;
        height: 170px;
    }
    
    .story-image-overlay {
        width: 150px;
        height: 110px;
        top: 30px;
        right: 5px;
    }
    
    .story-frame {
        border-width: 2px;
    }
    
    .story-frame-1 {
        width: 55px;
        height: 35px;
        top: 55px;
        left: 40px;
    }
    
    .story-frame-2 {
        width: 35px;
        height: 50px;
        bottom: 50px;
        right: 53px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-item {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background:#27c6ed;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle i {
    color: white;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--dark-color);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    margin: 0;
    color: var(--gray-color);
    line-height: 1.6;
}




/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.contact-text-side {
    padding-right: 40px;
}

.contact-highlights {
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #27c6ed;
}

.highlight-item i {
    color: #27c6ed;
    font-size: 1.1rem;
}

.contact-form-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.modern-contact-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.modern-contact-form label {
    position: absolute;
    top: -14px;
    left: 20px;
    color: var(--gray-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
    width: 100%;
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modern-contact-form input:focus + .form-focus-line,
.modern-contact-form select:focus + .form-focus-line,
.modern-contact-form textarea:focus + .form-focus-line {
    transform: scaleX(1);
}

.modern-contact-form input:focus ~ label,
.modern-contact-form input:not(:placeholder-shown) ~ label,
.modern-contact-form select:focus ~ label,
.modern-contact-form textarea:focus ~ label,
.modern-contact-form textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 15px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.form-submit {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ded77f, #27c6ed);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.contact-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    animation: float 8s ease-in-out infinite;
}

.contact-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -50px;
    animation-delay: 0s;
}

.contact-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -50px;
    animation-delay: 3s;
}

.contact-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 6s;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.contact-details p {
    margin: 0 0 5px 0;
    font-weight: 500;
    color: var(--dark-color);
}

.contact-details span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-header p {
    margin: 0;
    color: var(--gray-color);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}



/* Modern Gradient Hero Section */
.modern-gradient-hero {
    position: relative;
    padding: 120px 0 80px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    color: var(--dark-color);
    overflow: hidden;
    min-height: 300px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.modern-gradient-hero .container {
    position: relative;
    z-index: 2;
}

.modern-gradient-hero .hero-content {
    max-width: 600px;
}

.modern-gradient-hero .breadcrumb {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.modern-gradient-hero .breadcrumb span:last-child {
    opacity: 0.7;
}

.modern-gradient-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #27c6ed;
}

.modern-gradient-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
}

/* Formas circulares decorativas */
.gradient-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gradient-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

.gradient-circle-1 {
    width: 250px;
    height: 250px;
    top: -125px;
    right: -80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(124, 58, 237, 0.08));
    animation: float 6s ease-in-out infinite;
}

.gradient-circle-2 {
    width: 180px;
    height: 180px;
    bottom: -90px;
    right: 25%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(59, 130, 246, 0.06));
    animation: float 8s ease-in-out infinite reverse;
}

.gradient-circle-3 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 15%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(124, 58, 237, 0.04));
    transform: translateY(-50%);
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive adjustments for modern gradient hero */
@media (max-width: 768px) {
    .modern-gradient-hero {
        padding: 100px 0 60px;
        min-height: 350px;
    }
    
    .modern-gradient-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .modern-gradient-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .gradient-circle-1 {
        width: 200px;
        height: 200px;
        top: -100px;
        right: -50px;
    }
    
    .gradient-circle-2 {
        width: 120px;
        height: 120px;
        bottom: -60px;
    }
    
    .gradient-circle-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .modern-gradient-hero .hero-title {
        font-size: 2rem;
    }
    
    .modern-gradient-hero .breadcrumb {
        font-size: 0.8rem;
    }
}

/* Responsive adjustments for contact and hero sections */
@media (max-width: 768px) {
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-card {
        order: 2;
    }
    
    .contact-text-side {
        order: 1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-text-side {
        padding-right: 0;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .modern-contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-method {
        padding: 20px;
    }
}

/* Responsividade FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
}

.text-light{
    color: #ffffff !important;
}

/* Artigo */
.artigo-sumario {
    background-color: #f0f4f8;
    padding: 15px;
    border-left: 4px solid #004b87;
    border-radius: 4px;
    margin-bottom: 30px;
}

.artigo-sumario ul {
    list-style: none;
    padding-left: 0;
}

.artigo-sumario li {
    margin-bottom: 8px;
}

.artigo-sumario a {
    text-decoration: none;
    color: #004b87;
    font-weight: 500;
}

.artigo-sumario a:hover {
    text-decoration: underline;
}

.bg-artigo {
    background-color: #1e1d300a !important;
}

/* Links do sumÃ¡rio */
.sticky-container {
    position: sticky;
    top: 100px;
    z-index: 10;
    height: 100vh;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .sticky-container {
        position: static !important;
        height: auto;
        overflow: visible;
    }
}

main {
    flex-grow: 1;
}

aside ul li a {
    transition: color 0.3s ease;
}

aside ul li a:hover {
    color: #002f63;
    font-weight: bold !important;
    letter-spacing: 1px;
}

/* Ajustes no texto do artigo */
article p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* Estilos para os tÃ³picos complementares */
.topic-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.topic-image {
    width: 59px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
}

.topic-text {
    font-size: 0.8rem;
    line-height: initial;
    color: #004b87;
    font-weight: 500;
    text-decoration: none;
}

.topic-text:hover {
    color: #002f63;
    font-weight: bold !important;
}

/* ==========================================================================
   ARTICLE PAGE STYLES - Estilos específicos para páginas de artigo
   ========================================================================== */

/* Page Header específico para páginas de artigo */
.article-page .page-header {
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #06b6d4 100%);
    position: relative;
    overflow: hidden;
}

.article-page .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.article-page .page-header .container {
    position: relative;
    z-index: 2;
}

.article-page .page-header h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsividade para artigos no mobile */
@media (max-width: 768px) {
    .article-page .sticky-container {
        position: static !important;
        order: 2;
        margin-bottom: 20px;
    }
    
    .article-page .col-md-8 {
        order: 1;
    }
    
    .article-page .container-xxl {
        padding: 0 15px;
    }
    
    .article-page .page-header h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
}

/* ==========================================================================
   BOTÃO FIXO LIGAR - Botão fixo no canto inferior esquerdo
   ========================================================================== */

#call-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.call-btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.call-btn i {
    font-size: 16px;
}

.call-btn span {
    font-family: var(--title-font);
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    #call-button {
        bottom: 15px;
        left: 15px;
    }
    
    .call-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .call-btn i {
        font-size: 14px;
    }
}