/* style.css - Versão "Turquoise Tech Luxury" */

/* =========================================
   1. Variáveis & Reset (Paleta Turquoise)
   ========================================= */
:root {
    /* Paleta baseada na imagem download (8).jpg */
    --bg-deep: #222831;      /* Preto Azulado (Base Profunda) */
    --bg-slate: #283b48;     /* Azul Ardósia (Transições) */
    --accent: #00a6c0;       /* Turquesa Neon (O "Ponto de Luz") */
    --text-light: #d8d7ce;   /* Branco Off-White (Texto e Contraste) */
    
    --glass-bg: rgba(34, 40, 49, 0.85); /* Vidro escuro */
    
    /* Fontes */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transições */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Utilitários */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 3rem;
    color: white; /* Mais brilho no título */
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.section-title.center { display: block; text-align: center; }

/* Detalhe sofisticado abaixo do título (Turquesa brilhante) */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin-top: 15px;
    box-shadow: 0 0 15px var(--accent); /* Efeito neon */
    border-radius: 2px;
}
.section-title.center::after { margin: 15px auto 0; }

.highlight {
    color: var(--accent);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 166, 192, 0.3);
}

/* Botões Modernos */
.btn {
    display: inline-block;
    padding: 16px 45px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px; /* Arredondado estilo pílula */
    cursor: pointer;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn-gold {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-gold:hover {
    background: var(--accent);
    color: var(--bg-deep);
    box-shadow: 0 0 30px rgba(0, 166, 192, 0.6);
    transform: translateY(-5px);
}

/* =========================================
   ANIMAÇÃO DE ENTRADA (PRELOADER)
   ========================================= */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    /* Fundo IDÊNTICO ao do Hero para transição invisível */
    background-color: var(--bg-deep);
    background-image: 
        radial-gradient(circle at top right, #283b48 0%, var(--bg-deep) 60%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px);
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    max-width: 900px;
    padding: 0 30px;
    text-align: center;
}

.typewriter {
    font-family: var(--font-title);
    font-size: 2.8rem;
    color: white;
    line-height: 1.4;
    border-right: 3px solid var(--accent);
    padding-right: 5px;
    animation: blink-cursor 0.75s step-end infinite;
}

/* A cor turquesa para o texto reescrito */
.highlight-type {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 166, 192, 0.5);
    font-weight: 700;
}

@keyframes blink-cursor {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent); }
}

@media (max-width: 768px) {
    .typewriter { font-size: 1.8rem; }
}

/* Botão Pular Intro */
.skip-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 25px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skip-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 166, 192, 0.05);
    box-shadow: 0 0 15px rgba(0, 166, 192, 0.3);
}

/* Ajuste do botão no celular */
@media (max-width: 768px) {
    .skip-btn {
        bottom: 20px;
        right: 20px;
        padding: 8px 15px;
        font-size: 0.75rem;
    }
}

/* =========================================
   2. Elementos Abstratos & Transições
   ========================================= */

/* Fundo com padrão de linhas suaves (Tech Elegance) */
.has-abstract-bg {
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 166, 192, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
}

/* Divisores de Seção (Gradient suave para evitar linhas duras) */
.section-divider {
    height: 100px;
    width: 100%;
    background: linear-gradient(to bottom, var(--bg-deep), var(--bg-slate));
}

.section-divider-reverse {
    height: 100px;
    width: 100%;
    background: linear-gradient(to bottom, var(--bg-slate), var(--bg-deep));
}

/* =========================================
   3. Navbar (Glassmorphism Arredondado)
   ========================================= */
.navbar {
    position: fixed;
    top: 20px; /* Flutua um pouco abaixo do topo */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1300px;
    padding: 15px 40px;
    z-index: 1000;
    transition: 0.5s ease;
    border-radius: 60px; /* Bordas bem arredondadas */
    background: rgba(255, 255, 255, 0.02); /* Quase invisível no topo */
    backdrop-filter: blur(3px);
}

/* Estado Rola (Scrolled) */
.navbar.scrolled {
    background: rgba(34, 40, 49, 0.8); /* Fundo escuro semitransparente */
    backdrop-filter: blur(20px); /* Blur intenso estilo iOS */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 12px 40px;
    top: 10px;
}

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

.logo a {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.nav-links ul { display: flex; gap: 40px; }

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0.8;
    position: relative;
}

.nav-links a:hover { opacity: 1; color: var(--accent); }

/* Ícones Sociais (Maiores e com Efeito) */
.social-icons { display: flex; gap: 20px; align-items: center; }

.social-icons a { 
    color: white; 
    font-size: 1.4rem; /* Maior */
    transition: var(--transition);
    display: flex; align-items: center;
}

.social-icons a:hover { 
    transform: scale(1.3) rotate(5deg); /* Aumenta e gira levemente */
    color: var(--accent); 
    text-shadow: 0 0 15px var(--accent);
}

.mobile-menu-icon { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* =========================================
   4. Hero Section (Impacto Profundo)
   ========================================= */
.hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-deep);
    /* Fundo IDÊNTICO ao do Preloader */
    background-image: 
        radial-gradient(circle at top right, #283b48 0%, var(--bg-deep) 60%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    z-index: 2;
}

.hero-text-col { flex: 1; }

.hero-text-col h1 {
    font-family: var(--font-title);
    font-size: 4.2rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-text-col .slogan {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 40px;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    letter-spacing: 1px;
}

.hero-image-col { flex: 1; display: flex; justify-content: flex-end; position: relative; }

.hero-img {
    border-radius: 20px; /* Bordas suaves */
    box-shadow: -20px 20px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative; z-index: 2;
}

/* Efeito de luz atrás da imagem */
.hero-image-col::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: var(--accent);
    filter: blur(80px); /* Glow intenso */
    opacity: 0.2;
    z-index: 1;
}

/* =========================================
   SELO OAB FLUTUANTE (HERO)
   ========================================= */
.oab-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: rgba(34, 40, 49, 0.85); /* Efeito de vidro escuro */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 166, 192, 0.3); /* Borda sutil turquesa */
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    z-index: 10;
    /* Animação suave de flutuação */
    animation: float-badge 4s ease-in-out infinite;
}

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

.oab-icon {
    background: var(--accent);
    color: var(--bg-deep);
    width: 45px; 
    height: 45px;
    border-radius: 50%;
    display: flex; 
    justify-content: center; 
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 166, 192, 0.5);
}

.oab-info { 
    display: flex; 
    flex-direction: column; 
    text-align: left;
}

.oab-title { 
    font-size: 0.70rem; 
    color: rgba(255,255,255,0.6); 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    font-weight: 600;
}

.oab-number { 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: white; 
    font-family: var(--font-title); 
    letter-spacing: 1px;
}

/* Ajuste para não quebrar no celular */
@media (max-width: 768px) {
    .oab-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
        width: max-content;
        animation: none; /* Remove a flutuação no mobile para evitar sobreposição estranha */
    }
}

/* =========================================
   5. Seção Sobre (Transição Slate)
   ========================================= */
.about-section {
    padding: 120px 0;
    /* Fundo Slate para contraste suave */
    background-color: var(--bg-slate);
    position: relative;
}

/* Linha decorativa no topo (Fade in) */
.about-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 150px;
    background: linear-gradient(to bottom, var(--bg-deep), transparent);
}

.about-container { display: flex; align-items: center; gap: 80px; position: relative; z-index: 2; }

.about-image-col { flex: 1; }
.about-img {
    border-radius: 8px;
    filter: grayscale(100%); /* Preto e Branco elegante */
    transition: 0.5s;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.about-img:hover { filter: grayscale(0%); transform: scale(1.02); }

.about-text-col { flex: 1; }
.about-text-col h2 {
    font-family: var(--font-title);
    font-size: 2.8rem;
    color: white;
    margin-bottom: 30px;
}

.about-text-col .lead-text {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 500;
}

/* =========================================
   6. Áreas de Atuação (Parallax Flipping Cards)
   ========================================= */
.services-section {
    padding: 140px 0;
    background-color: var(--bg-deep);
    position: relative;
}

.services-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 150px;
    background: linear-gradient(to bottom, var(--bg-slate), transparent);
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Espaçamento entre os cards */
}

.col {
    width: calc(33.333% - 20px); /* 3 cards por linha no desktop */
    cursor: pointer;
}

.flip-container {
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

/* Base das faces */
.front,
.back {
    background-size: cover;
    background-position: center;
    border-radius: 15px; /* Bordas mais suaves */
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    backface-visibility: hidden;
    text-align: center;
    min-height: 380px; /* Altura dos cards */
    height: auto;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Capa Escura na Frente para destacar o texto */
.front:after {
    position: absolute;
    top: 0; left: 0; z-index: 1;
    width: 100%; height: 100%;
    content: '';
    background-color: var(--bg-deep);
    opacity: 0.75; /* Escurece a imagem de fundo */
    border-radius: 15px;
}

/* O Verso (Turquoise Gradient) */
.back {
    position: absolute;
    top: 0; left: 0; width: 100%;
    background: linear-gradient(135deg, var(--bg-slate) 0%, var(--bg-deep) 100%);
    border: 2px solid transparent; /* Prepara a borda invisível */
}

/* O Efeito de Giro ao passar o mouse */
.col:hover .flip-container .front,
.col.hover .flip-container .front {
    transform: rotateY(-180deg);
}

/* Aqui acontece a mágica do Neon! */
.col:hover .flip-container .back,
.col.hover .flip-container .back {
    transform: rotateY(0deg);
    border: 2px solid var(--accent); /* Acende a borda turquesa */
    /* Brilho Neon: Externo forte + Interno sutil */
    box-shadow: 0 0 35px rgba(0, 166, 192, 0.6), inset 0 0 15px rgba(0, 166, 192, 0.2); 
}

/* Efeito Parallax Interno (O texto parece flutuar) */
.inner {
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    perspective: inherit;
    z-index: 2;
}

/* Estados Iniciais de Rotação */
.flip-container .front { transform: rotateY(0deg); }
.flip-container .back { transform: rotateY(180deg); }

/* O Efeito de Giro ao passar o mouse */
.col {
    width: calc(33.333% - 20px);
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: z-index 0.6s step-start; /* Impede que o card fique por baixo dos outros ao crescer */
}

.col:hover, .col.hover {
    z-index: 10; /* Joga o card pra frente ao passar o mouse */
}

.flip-container {
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1); /* Animação suave para crescer */
}

/* Faz o card crescer 5% ao passar o mouse */
.col:hover .flip-container,
.col.hover .flip-container {
    transform: scale(1.05);
}

/* Estilização do Conteúdo (Textos e Ícones) */
.front .inner .card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 166, 192, 0.5);
}

.front .inner p {
    font-family: var(--font-title);
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    position: relative;
}

/* Linha decorativa abaixo do título */
.front .inner p:after {
    content: '';
    width: 3rem;
    height: 2px;
    position: absolute;
    background: var(--accent);
    display: block;
    left: 0; right: 0;
    margin: 0 auto;
    bottom: -1rem;
}

.front .inner span {
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back .inner p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Responsividade dos Cards */
@media screen and (max-width: 1024px){
    .col { width: calc(50% - 15px); } /* 2 por linha */
}

@media screen and (max-width: 600px){
    .col { width: 100%; margin-bottom: 15px; } /* 1 por linha */
    .cols { gap: 15px; }
}

/* =========================================
   7. Contato, WhatsApp e Redes Sociais
   ========================================= */

.contact-section { 
    padding: 0; 
    background-color: var(--bg-deep); 
    position: relative;
    z-index: 5;
}

/* Novo Container Centralizado */
.contact-container-centered {
    max-width: 800px; /* Mantém o form com um tamanho elegante */
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px; /* Espaço entre o Form, o Whats e as Redes */
}

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

/* --- 1. Formulário --- */
.centered-form {
    width: 100%;
    background: transparent;
}

.centered-form h3 { 
    color: white; 
    margin-bottom: 15px; 
    font-size: 2.5rem; 
    font-family: var(--font-title); 
}

.subtitle-form {
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-elegant input, .form-elegant select, .form-elegant textarea {
    width: 100%;
    padding: 20px;
    margin-bottom: 25px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition);
}

/* CORREÇÃO DO FUNDO BRANCO NAS OPÇÕES DO SELECT */
.form-elegant select option {
    background-color: var(--bg-deep);
    color: var(--text-light);
}

.form-elegant input:focus, .form-elegant select:focus, .form-elegant textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(0, 166, 192, 0.05);
    box-shadow: 0 0 15px rgba(0, 166, 192, 0.1);
}

.btn-block { width: 100%; background: var(--accent); color: white; border: none; }
.btn-block:hover { background: #008fa6; box-shadow: 0 10px 30px rgba(0, 166, 192, 0.3); }

/* --- 2. Box do WhatsApp Personalizado --- */
.custom-whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
}

.dr-photo-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    box-shadow: 0 0 25px rgba(0, 166, 192, 0.4);
    flex-shrink: 0;
}

.dr-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-cta-text { text-align: left; }

.whatsapp-cta-text h4 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.whatsapp-cta-text p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Botão Pulsante Green */
@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-whatsapp-pulse {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px;
    padding: 16px 40px;
    background-color: #25D366;
    color: white;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-green 2s infinite;
    transition: var(--transition);
}

.btn-whatsapp-pulse:hover {
    background-color: #1ebe57;
    transform: scale(1.05);
    animation: none;
}

/* --- 3. Redes Sociais Animadas --- */
.social-section {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 50px;
}

.social-section h4 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.social-section p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
}

.social-wrapper {
    display: inline-flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.social-wrapper .icon {
    position: relative;
    background: rgba(255, 255, 255, 0.05); /* Fundo escuro adaptado */
    color: white;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 60px;
    height: 60px;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(255,255,255,0.05);
}

.social-wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: var(--bg-deep); /* Letra escura no tooltip branco */
    font-weight: 600;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.social-wrapper .icon:hover span,
.social-wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

/* Cores Hover das Redes */
.social-wrapper .facebook:hover,
.social-wrapper .facebook:hover .tooltip,
.social-wrapper .facebook:hover .tooltip::before {
    background: #1877F2; color: #ffffff; border-color: #1877F2;
}
.social-wrapper .twitter:hover,
.social-wrapper .twitter:hover .tooltip,
.social-wrapper .twitter:hover .tooltip::before {
    background: #000000; color: #ffffff; border-color: #000000; /* X atualizado */
}
.social-wrapper .instagram:hover,
.social-wrapper .instagram:hover .tooltip,
.social-wrapper .instagram:hover .tooltip::before {
    background: #E4405F; color: #ffffff; border-color: #E4405F;
}
.social-wrapper .whatsapp:hover,
.social-wrapper .whatsapp:hover .tooltip,
.social-wrapper .whatsapp:hover .tooltip::before {
    background: #25D366; color: #ffffff; border-color: #25D366;
}
.social-wrapper .youtube:hover,
.social-wrapper .youtube:hover .tooltip,
.social-wrapper .youtube:hover .tooltip::before {
    background: #CD201F; color: #ffffff; border-color: #CD201F;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .custom-whatsapp-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .whatsapp-cta-text {
        text-align: center;
    }
}

/* =========================================
   8. Footer Premium & LKS Soluções CTA
   ========================================= */
.main-footer {
    background-color: #11141a; /* Fundo ainda mais escuro para dar profundidade */
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(0, 166, 192, 0.1); /* Linha sutil turquesa no topo */
    color: rgba(255, 255, 255, 0.7);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr; /* Proporção das colunas */
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h4 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 400px;
}

/* Títulos das colunas de Links e Contato */
.footer-links h4, .footer-contact h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    font-family: var(--font-title);
}

/* Tracinho turquesa embaixo do título */
.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 18px;
}

.footer-links ul li a, .footer-contact ul li a {
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-links ul li a:hover, .footer-contact ul li a:hover {
    color: var(--accent);
    transform: translateX(5px); /* Efeito sutil de ir para a direita */
}

.footer-contact i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-links i {
    font-size: 0.8rem;
    color: var(--accent);
}

/* =========================================
   RODAPÉ INFERIOR & LKS CTA
   ========================================= */
.footer-bottom {
    background-color: #0a0c10; /* Fundo super escuro (quase preto) */
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-bottom-content p {
    font-size: 0.85rem;
    margin: 0;
}

/* A Caixa de Destaque da LKS Soluções */
.lks-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 166, 192, 0.05);
    padding: 8px 15px 8px 25px;
    border-radius: 50px;
    border: 1px solid rgba(0, 166, 192, 0.2);
}

.lks-cta p {
    color: rgba(255,255,255,0.8);
}

.lks-cta strong {
    color: white;
}

/* Botão Neon Exclusivo da Agência */
.btn-lks {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-lks:hover {
    background: var(--accent);
    color: var(--bg-deep);
    box-shadow: 0 0 20px rgba(0, 166, 192, 0.5);
    transform: translateY(-2px);
}

/* Responsividade do Footer */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links h4::after, .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul li a, .footer-contact ul li a {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .lks-cta {
        flex-direction: column;
        border-radius: 15px;
        padding: 20px;
        width: 100%;
    }
}