/************************************************************
 * PROJETO: Solutiuns Technologies (V. Premium)
 * ARQUIVO: style.css
 * DESCRIÇÃO: Identidade Visual High-Tech com foco em Engenharia.
 ************************************************************/

/* Importação de fonte com pesos variados para maior contraste */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Poppins:wght@400;600;700&display=swap');

:root {
    /* Paleta Técnica */
    --brand-navy: #060b13;      /* Profundidade */
    --brand-cyan: #00c2cb;      /* Energia/Tech */
    --brand-cyan-deep: #008f95;
    --text-heading: #111827;    /* Slate 900 */
    --text-body: #4b5563;       /* Slate 600 */
    --surface-light: #f9fafb;
    --surface-white: #ffffff;
    
    /* Sistema de Design */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-eleve: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================
   1. FUNDAÇÃO (RESET & ESTRUTURA)
   ========================================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-font-smoothing: antialiased;
}

html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 90px;
}

body { 
    font-family: 'Inter', sans-serif; /* Fonte mais séria/executiva */
    color: var(--text-body); 
    line-height: 1.7;
    background-color: var(--surface-white);
}

.container { 
    width: 92%; 
    max-width: 1240px; 
    margin: 0 auto; 
}

/* ==========================================================
   HEADER - SOLUTIUNS TECHNOLOGIES (Fundo Ajustado)
   ========================================================== */

   /* Esconde a barra mobile em telas grandes (PC/Notebook) */
.mobile-bottom-nav {
    display: none;
}

.navbar {
    /* Cor Navy Profissional (Substitui o preto por um tom mais técnico) */
    background: #0d1621; 
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Linha sutil de acabamento na base */
    border-bottom: 1px solid rgba(0, 194, 203, 0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGOTIPO & TÍTULO --- */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Título: Um Branco e outro Azul conforme solicitado */
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.logo-text span:first-child {
    color: #ffffff; /* Branco */
}

.logo-text span:last-child {
    color: #00c2cb; /* Azul */
}

/* --- MENU DE NAVEGAÇÃO --- */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-link:hover {
    color: #00c2cb;
}

/* ==========================================================
   3. HERO (IMPACTO CINEMATOGRÁFICO)
   ========================================================== */
.hero {
    position: relative;
    background: 
        radial-gradient(circle at top right, rgba(0, 194, 203, 0.1), transparent),
        linear-gradient(rgba(6, 11, 19, 0.8), rgba(6, 11, 19, 0.8)),
        url('../img/banner/homepage.jpg') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero .container {
    position: relative;
    z-index: 2; /* garante que o texto fique acima da imagem */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* overlay extra opcional */
    /* background: rgba(6,11,19,0.3); */
    z-index: 1;
}

.hero .badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--brand-cyan);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-left: 3px solid var(--brand-cyan);
    margin-bottom: 24px;
    display: inline-block;
}

.hero h1 { 
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem); 
    font-weight: 800;
    line-height: 1.1; 
    margin-bottom: 24px;
    color: #fff;
}

.hero p { 
    font-size: 1.2rem; 
    color: #9ca3af; 
    max-width: 600px; 
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap;
}

/* Estilização dos Botões de Ação */
.btn-cta, .btn-secondary {
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-cta { 
    background: var(--brand-cyan); 
    color: var(--brand-navy); 
    border: none; 
}
.btn-cta:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0, 194, 203, 0.3); 
}

.btn-secondary { 
    border: 1px solid rgba(255,255,255,0.3); 
    color: #fff; 
}
.btn-secondary:hover { 
    background: rgba(255,255,255,0.1); 
    border-color: #fff; 
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        background-position: center top;
    }

    .hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
    .hero p { font-size: 1rem; max-width: 100%; }
    .hero-btns { flex-direction: column; gap: 12px; }
}

/* ==========================================================
   4. ABOUT (GRIDS TÉCNICOS)
   ========================================================== */
.about { padding: 120px 0; background: #fff; position: relative; }

.about-wrapper { 
    display: grid; 
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 100px; 
    align-items: center; 
}

.section-header span { 
    color: var(--brand-cyan-deep); 
    font-weight: 800; 
    font-size: 0.9rem; 
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 { 
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem; 
    color: var(--brand-navy); 
    font-weight: 700;
}

.about-text p { margin: 25px 0; font-size: 1.1rem; }

.feature-item { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 18px; 
    font-weight: 600; 
    color: var(--brand-navy);
}

.feature-item i { color: var(--brand-cyan); font-size: 1.1rem; }

/* Bloco de Métricas */
.stats { 
    display: flex; 
    gap: 60px; 
    margin-top: 50px; 
}

.stat-item strong { 
    display: block; 
    font-size: 3rem; 
    color: var(--brand-navy); 
    font-weight: 800;
    line-height: 1;
}

.stat-item span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-body); }

/* Cards de Apoio */
.about-cards { display: grid; gap: 24px; }

.glass-effect {
    background: var(--surface-light);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid #e5e7eb;
    transition: var(--transition-smooth);
}

.glass-effect:hover { border-color: var(--brand-cyan); background: #fff; box-shadow: var(--shadow-eleve); }

/* ==========================================================
   5. SERVICES (GRID DE ALTA PERFORMANCE)
   ========================================================== */
.services { background: var(--surface-light); padding: 120px 0; }

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); 
    gap: 32px; 
    margin-top: 60px;
}

.service-card {
    background: #fff;
    padding: 50px;
    border-radius: var(--radius-md);
    border-bottom: 4px solid transparent;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.card-icon {
    width: 64px; height: 64px; 
    background: var(--brand-navy);
    color: var(--brand-cyan);
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; margin-bottom: 30px;
    font-size: 1.8rem;
}

.service-card h3 { font-size: 1.5rem; color: var(--brand-navy); margin-bottom: 15px; }

.service-card:hover {
    transform: translateY(-12px);
    border-bottom-color: var(--brand-cyan);
    box-shadow: var(--shadow-eleve);
}

.card-link {
    display: flex; align-items: center; gap: 10px;
    margin-top: 25px; color: var(--brand-navy);
    text-decoration: none; font-weight: 800; font-size: 0.85rem;
    text-transform: uppercase;
}

/* ==========================================================
   SERVICES - MESMO FUNDO DO HERO (IDENTICO)
   ========================================================== */

.services {
    background: 
        radial-gradient(
            circle at top right,
            rgba(0, 194, 203, 0.1),
            transparent 60%
        ),
        linear-gradient(
            rgba(6, 11, 19, 0.95),
            rgba(6, 11, 19, 0.95)
        );
    padding: 120px 0;
    position: relative;
}

/* ================= HEADER DA SEÇÃO ================= */

.services .section-header span {
    color: var(--brand-cyan);
}

.services .section-header h2 {
    color: #ffffff;
}

/* ================= CARDS ================= */

.services .service-card {
    background: #0f1b2a; /* sólido para melhor leitura */
    border: 1px solid rgba(0, 194, 203, 0.15);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    color: #e5e7eb;
}

/* Títulos */
.services .service-card h3 {
    color: #ffffff;
}

/* Texto */
.services .service-card p {
    color: #cbd5e1;
}

/* Ícones */
.services .card-icon {
    background: rgba(0, 194, 203, 0.15);
    color: var(--brand-cyan);
    border-radius: 12px;
}

/* Link */
.services .card-link {
    color: var(--brand-cyan);
}

.services .card-link i {
    transition: transform 0.3s ease;
}

/* Hover Premium */
.services .service-card:hover {
    transform: translateY(-12px);
    border-color: var(--brand-cyan);
    box-shadow: 0 25px 50px rgba(0, 194, 203, 0.15);
}

.services .service-card:hover .card-link i {
    transform: translateX(6px);
}

/* ===========================
   WHY US - SEÇÃO ELEGANTE
=========================== */
/* WHY-US */
.why-us {
    background: #ffffff; /* fundo branco */
    padding: 140px 0;
    color: var(--brand-navy);
}

.why-us .section-header span {
    color: var(--brand-cyan); /* detalhe coadjuvante */
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
}

.why-us .section-header h2 {
    color: var(--brand-navy);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 60px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* CARDS BRANCOS */
.why-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    color: var(--brand-navy);
}

.why-card .icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    background: rgba(0,194,203,0.15); /* ciano leve */
    color: var(--brand-cyan);
    transition: all 0.4s ease;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.why-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-body);
}

.why-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.why-card:hover .icon-wrapper {
    transform: scale(1.15);
}

/* ==========================================================
   SECTION: METODOLOGIA (PROCESSO DE TRABALHO DARK)
   ========================================================== */

/* Container do Grid - 4 colunas no Desktop */
.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card Estilo Glassmorphism High-Tech */
.method-card {
    background: rgba(255, 255, 255, 0.03); /* Fundo quase transparente */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Borda sutil */
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px); /* Efeito de vidro desfocado */
}

/* Efeito de Hover (Mouse em cima) */
.method-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 194, 203, 0.05); /* Ganha um tom ciano bem leve */
    border-color: rgba(0, 194, 203, 0.4); /* Borda brilha em ciano */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Número em marca d'água ao fundo */
.method-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: 0.4s;
    pointer-events: none; /* Garante que o número não atrapalhe o clique */
}

.method-card:hover .method-number {
    color: rgba(0, 194, 203, 0.1); /* Número brilha levemente no hover */
}

/* Ícone do Card */
.method-icon {
    width: 60px;
    height: 60px;
    background: #0d1621; /* Fundo Navy Profissional */
    border: 1px solid rgba(0, 194, 203, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-cyan);
    margin-bottom: 25px;
}

/* Títulos e Textos */
.method-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.method-card p {
    color: #94a3b8; /* Cinza azulado para leitura confortável */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Badge de Status do Processo */
.method-status {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 194, 203, 0.1);
    color: var(--brand-cyan);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* TIMELINE STYLES */
.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--brand-cyan);
    border-radius: 50%;
    z-index: 2;
    /* Efeito Glow idêntico à imagem enviada */
    box-shadow: 0 0 10px rgba(0, 194, 203, 0.8), 
                0 0 20px rgba(0, 194, 203, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

/* Animação de Pulso apenas no último item (Hoje) */
.timeline-item:last-child .timeline-dot {
    animation: pulse-cyan 2s infinite;
}

@keyframes pulse-cyan {
    0% { box-shadow: 0 0 0 0 rgba(0, 194, 203, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(0, 194, 203, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 194, 203, 0); }
}

/* Ajuste Responsivo para Mobile */
@media (max-width: 768px) {
    .timeline-line { left: 30px !important; transform: none !important; }
    .timeline-item { flex-direction: row !important; margin-bottom: 50px !important; position: relative; }
    .timeline-content { width: 100% !important; text-align: left !important; padding-left: 60px !important; }
    .timeline-dot { position: absolute; left: 22px; top: 12px; }
    .timeline-empty { display: none; }
}

/* ==========================================================
   RESPONSIVIDADE DA METODOLOGIA
   ========================================================== */

/* Tablets: Exibe 2 cards por linha (2x2) */
@media (max-width: 1100px) {
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Celulares: Exibe 1 card por linha */
@media (max-width: 600px) {
    .method-grid {
        grid-template-columns: 1fr;
    }
    .method-card {
        padding: 30px 20px;
    }
}

/* ==========================================================
   FOOTER - PREMIUM INSTITUCIONAL
   ========================================================== */

.main-footer {
    background: var(--brand-navy);
    color: #9ca3af;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.footer-logo span {
    color: var(--brand-cyan);
}

.footer-col h3 {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--brand-cyan);
}

.footer-col i {
    margin-right: 8px;
    color: var(--brand-cyan);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* ==========================================================
   CONTACT STRIP - VERSÃO CLARA (INTERCALADA)
   ========================================================== */

.contact-strip {
    background: var(--surface-light);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.contact-badge {
    display: inline-block;
    background: rgba(0, 194, 203, 0.1);
    color: var(--brand-cyan-deep);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-left: 3px solid var(--brand-cyan);
    margin-bottom: 25px;
}

.contact-strip h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--brand-navy);
}

.contact-strip p {
    color: var(--text-body);
    max-width: 650px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-whatsapp {
    background: #25D366;
    color: #0d1621;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background: var(--brand-navy);
    color: #fff;
}

.btn-email:hover {
    background: #111827;
    transform: translateY(-3px);
}

/* ==========================================================
   TITULOS - REESTILIZAÇÃO TÉCNICA (O "PULP DO GATO")
   ========================================================== */

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem); /* Tamanho fluido */
    font-weight: 800; /* Peso extra para autoridade */
    line-height: 1.1;
    color: var(--brand-navy);
    letter-spacing: -1.5px; /* Deixa o título "compacto" e moderno */
    margin-bottom: 30px;
    position: relative;
    text-transform: none; /* Mantém naturalidade, não use tudo uppercase */
}

/* Detalhe de linha técnica para alinhar à esquerda (Seção Sobre) */
.section-header.align-left h2 {
    padding-left: 20px;
    border-left: 5px solid var(--brand-cyan); /* Uma barra vertical de destaque */
}

/* Gradiente para títulos em seções escuras (Serviços e Social Media) */
.services .section-header h2,
.social-media .social-hero h2 {
    background: linear-gradient(135deg, #8ef9ff 0%, #00c2cb 100%);
    -webkit-background-clip: text; /* Prefixo para Chrome, Safari e Edge */
    background-clip: text;         /* Propriedade padrão (Resolve o alerta do VS Code) */
    -webkit-text-fill-color: transparent;
    color: transparent;            /* Fallback padrão para garantir transparência */
    display: inline-block;
}

/* Refinamento da Badge (o textinho em cima do título) */
.section-header span {
    display: block;
    color: var(--brand-cyan);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px; /* Estilo luxo/tech */
    margin-bottom: 12px;
}

/* ==========================================================
   BADGE DE CONTATO - ESTILO "TECH SEAL"
   ========================================================== */

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 194, 203, 0.08); /* Fundo ciano bem suave */
    color: var(--brand-cyan-deep);
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    
    /* Borda e Curvatura */
    border: 1px solid rgba(0, 194, 203, 0.2);
    border-radius: 50px; /* Formato de pílula, muito mais moderno */
    
    margin-bottom: 25px;
    position: relative;
    transition: var(--transition-smooth);
}

/* ===============================
   HERO MINI - SERVIÇOS
   =============================== */
.hero-mini {
    position: relative;
    background: linear-gradient(135deg, #060b13 0%, #001e26 100%);
    color: #fff;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-mini::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('../img/banner/servicos.jpg') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.hero-mini .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.hero-mini .badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #00c2cb;
    background: rgba(0, 194, 203, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-mini h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #f8fafc;
}

.hero-mini p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    line-height: 1.6;
}

/* efeito sutil de brilho/high-tech no texto */
.hero-mini h1,
.hero-mini p {
    text-shadow: 0 0 8px rgba(0, 194, 203, 0.2);
}

/* responsividade */
@media (max-width: 992px) {
    .hero-mini {
        padding: 100px 20px 60px;
    }
    .hero-mini h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-mini h1 {
        font-size: 1.8rem;
    }
    .hero-mini p {
        font-size: 1rem;
    }
}

/* ==========================================================
   CONTATO.PHP
   ========================================================== */
.hero-mini {
    /* Copiando a lógica exata da sua seção .hero que você postou agora */
    background: radial-gradient(circle at top right, rgba(0, 194, 203, 0.1), transparent),
                linear-gradient(rgba(6, 11, 19, 0.9), rgba(6, 11, 19, 0.9)), 
                url('../img/banner/contato.jpg') center/cover no-repeat;
    
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 194, 203, 0.1);
}

/* Ajuste de Contraste para o Título não ficar "apagado" como na imagem 1 */
.hero-mini h1 {
    color: #ffffff !important; 
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Subtítulo com a cor exata da sua Hero (#9ca3af) */
.hero-mini p {
    color: #9ca3af; 
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Badge com o estilo exato da sua Hero */
.hero-mini .badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--brand-cyan);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-left: 3px solid var(--brand-cyan);
    margin-bottom: 24px;
    display: inline-block;
}

/* --- GRID DE CONTATO --- */
.contact-page {
    padding: 100px 0;
    background: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* --- INFO CARDS --- */
.info-cards { margin: 40px 0; }

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card i {
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--brand-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.info-card h4 { color: var(--brand-navy); margin-bottom: 5px; }

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* --- FORMULÁRIO --- */
.main-form {
    background: #fff;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.main-form h3 { font-size: 1.8rem; color: var(--brand-navy); margin-bottom: 10px; }
.main-form p { margin-bottom: 30px; font-size: 0.95rem; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.main-form label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--brand-navy);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.main-form input, 
.main-form select, 
.main-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fdfdfd;
    font-family: inherit;
    transition: 0.3s;
}

.main-form input:focus {
    border-color: var(--brand-cyan);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 194, 203, 0.1);
}

.main-form .btn-cta {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

/* --- RESPONSIVO --- */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .main-form { padding: 30px; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   COMPONENTES UNIFICADOS (IMAGEM + CARD) - SOLUTIUNS TECHNOLOGIES
   ========================================================================== */

/**
 * 1. Container Principal do Bloco Unificado
 * Cria a estrutura vertical que agrupa a imagem e o texto como um elemento único.
 */
.service-block-unified {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md); /* Arredondamento padrão do site */
    overflow: hidden;                /* Garante que a imagem não saia das bordas arredondadas */
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 194, 203, 0.1);
    transition: var(--transition-smooth);
    background: #0f1b2a;             /* Fundo Dark para evitar "vazamento" de luz entre elementos */
    height: 100%;                    /* Força o card a ocupar toda a altura da coluna */
}

/**
 * 2. Efeito Interativo (Hover)
 * Eleva o card e destaca a borda com a cor da marca ao passar o mouse.
 */
.service-block-unified:hover {
    transform: translateY(-12px);    /* Efeito de flutuação */
    border-color: var(--brand-cyan); /* Destaque na cor Ciano */
    box-shadow: 0 25px 50px rgba(0, 194, 203, 0.15); /* Sombra mais profunda no hover */
}

/**
 * 3. Tratamento de Imagens
 * Padroniza as fotos dos segmentos para que o layout fique sempre alinhado.
 */
.service-block-unified picture, 
.service-block-unified img {
    width: 100%;
    height: 220px;                   /* Altura fixa para manter simetria entre os blocos */
    object-fit: cover;               /* Recorta a imagem sem distorcer para preencher o espaço */
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid var(--brand-cyan); /* Linha técnica de separação entre imagem e conteúdo */
}

/**
 * 4. Reset de Estilos Internos
 * Remove margens, bordas e fundos dos cards originais para que eles se fundam 
 * perfeitamente ao container unificado. O uso do !important garante a sobreposição.
 */
.service-block-unified .service-card, 
.service-block-unified .glass-effect,
.service-block-unified .why-card {
    border-radius: 0 !important;
    margin-top: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important; /* Faz o card herdar o fundo do container pai */
    padding: 35px 30px !important;
    flex-grow: 1;                       /* Faz o texto preencher o espaço restante */
}

/**
 * 5. Ajuste de Ícones
 * Estiliza o círculo do ícone dentro dos blocos unificados.
 */
.service-block-unified .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin-bottom: 20px;
    background: rgba(0, 194, 203, 0.1); /* Fundo sutil em ciano */
}

/**
 * 6. Alinhamento de Altura
 * Garante que se um lado tiver mais texto que o outro, ambos os blocos 
 * (texto e imagem+card) mantenham a mesma altura visual.
 */
.about-wrapper {
    align-items: stretch;
}

/* ==========================================================
   CONTATO.PHP
   ========================================================== */
/* CSS EXCLUSIVO DO PAINEL DE CONTATO PREMIUM */
    .contact-section-premium {
        padding: 80px 0;
        background: #f4f7f9; /* Fundo leve para destacar o card */
    }

    .contact-master-card {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 40px 100px rgba(0,0,0,0.1);
        min-height: 700px;
    }

    /* LADO ESCURO (SIDEBAR) */
    .contact-sidebar-dark {
        background: #060b13; 
        padding: 60px;
        color: #fff;
        position: relative;
        background-image: radial-gradient(circle at top right, rgba(0, 194, 203, 0.15), transparent);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .side-badge {
        color: var(--brand-cyan);
        text-transform: uppercase;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 3px;
        display: block;
        margin-bottom: 20px;
    }

    .contact-sidebar-dark h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 25px;
        font-weight: 700;
        color: #fff;
    }

    .side-info-list { margin: 40px 0; }

    .side-item {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 35px;
    }

    .side-icon {
        width: 50px;
        height: 50px;
        background: rgba(0, 194, 203, 0.1);
        color: var(--brand-cyan);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 1.3rem;
        border: 1px solid rgba(0, 194, 203, 0.2);
    }

    .side-text span { display: block; font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }
    .side-text strong { display: block; font-size: 1.1rem; color: #fff; font-weight: 600; }

    .side-socials span { font-size: 0.8rem; color: #94a3b8; display: block; margin-bottom: 15px; text-transform: uppercase; }
    .social-links { display: flex; gap: 15px; }
    .social-links a { 
        color: #fff; font-size: 1.1rem; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
        width: 45px; height: 45px; border: 1px solid rgba(255,255,255,0.1);
        display: flex; align-items: center; justify-content: center; border-radius: 10px;
    }
    .social-links a:hover { 
        color: #060b13; 
        background: var(--brand-cyan); 
        border-color: var(--brand-cyan);
        transform: translateY(-5px);
    }

    /* LADO CLARO (FORMULÁRIO) */
    .contact-form-light { 
        padding: 60px; 
        background: #fff; 
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .form-premium h3 { font-family: 'Poppins', sans-serif; font-size: 2rem; color: var(--brand-navy); margin-bottom: 10px; font-weight: 700; }
    .form-premium p { color: var(--text-body); margin-bottom: 40px; font-size: 1rem; }

    .form-group-p { margin-bottom: 25px; }
    .form-row-p { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

    .form-group-p label { display: block; font-weight: 700; font-size: 0.8rem; margin-bottom: 10px; color: var(--brand-navy); text-transform: uppercase; letter-spacing: 0.5px; }
    .form-group-p input, .form-group-p select, .form-group-p textarea {
        width: 100%; padding: 16px; border: 1px solid #e2e8f0; border-radius: 12px; background: #f8fafc; font-family: 'Inter', sans-serif; transition: 0.3s;
    }

    .form-group-p input:focus, .form-group-p select:focus, .form-group-p textarea:focus { 
        border-color: var(--brand-cyan); outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(0, 194, 203, 0.1); 
    }

    .btn-cta-full {
        width: 100%; background: var(--brand-cyan); color: #060b13; padding: 20px; border: none; border-radius: 12px;
        font-weight: 800; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: 0.4s;
        margin-top: 15px; display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 0.9rem;
    }

    .btn-cta-full:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 194, 203, 0.4); background: #00dce6; }

    /* RESPONSIVIDADE */
    @media (max-width: 992px) {
        .contact-master-card { grid-template-columns: 1fr; border-radius: 0; }
        .contact-sidebar-dark { padding: 40px 20px; }
        .contact-form-light { padding: 40px 20px; }
        .form-row-p { grid-template-columns: 1fr; }
    }
/* ==========================================================
   7. ADAPTABILIDADE (RESPONSIVO)
   ========================================================== */
@media (max-width: 1024px) {
    .about-wrapper { grid-template-columns: 1fr; text-align: center; }
    .section-header.align-left { text-align: center; }
    .stats { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   RESPONSIVIDADE & NAVBAR MOBILE (VERSÃO FINAL UNIFICADA)
   ========================================================== */

/* 1. Reset Global: Esconde a barra mobile no PC por padrão */
.mobile-bottom-nav {
    display: none;
}

/* 2. Ajustes para Tablets e telas médias */
@media (max-width: 992px) {
    .about-wrapper, 
    .services-grid, 
    .why-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .nav-menu {
        display: none !important;
    }

    .nav-wrapper {
        justify-content: center !important;
    }
}

/* 3. Ajustes específicos para Celular (Smartphone) - FOCO EM CENTRALIZAÇÃO */
@media (max-width: 768px) {
    
    /* --- HEADER & LOGO --- */
    .nav-wrapper {
        justify-content: center !important;
        padding: 10px 0;
    }
    .logo-img { height: 38px !important; width: auto; }
    .logo-text { font-size: 0.95rem !important; }

    /* --- HERO (CENTRALIZADO) --- */
    .hero { text-align: center; padding: 60px 0; }
    .hero-content { align-items: center; display: flex; flex-direction: column; }
    .hero h1 { font-size: 1.8rem !important; line-height: 1.2; padding: 0; }
    .hero p { font-size: 1rem; margin-bottom: 30px; }
    .hero-btns { 
        flex-direction: column; 
        width: 100%; 
        gap: 15px; 
        align-items: center;
    }
    .btn-cta, .btn-secondary { width: 100%; max-width: 320px; text-align: center; }

    /* --- SEÇÃO SOBRE & EMPRESA --- */
    .about { text-align: center; }
    .section-header { text-align: center !important; align-items: center; display: flex; flex-direction: column; }
    .section-header.align-left { text-align: center !important; }
    
    /* Centralizando a lista de checks */
    .features-list { 
        display: inline-block; 
        text-align: left; 
        margin: 0 auto 30px;
    }
    .feature-item { justify-content: flex-start; }

    /* Centralizando Stats */
    .stats { justify-content: center; gap: 40px; }

    /* --- CARDS (SERVIÇOS E DIFERENCIAIS) --- */
    .service-card, .why-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 30px 20px !important;
    }
    .card-icon, .icon-wrapper { margin: 0 auto 20px; }

    /* --- SEÇÃO DE CONTATO (STRIP) --- */
    .contact-strip { text-align: center; }
    .contact-wrapper { align-items: center; display: flex; flex-direction: column; }
    .contact-buttons { 
        flex-direction: column; 
        width: 100%; 
        gap: 15px; 
    }
    .btn-contact { width: 100%; justify-content: center; }

    /* --- NAVBAR INFERIOR --- */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        height: 70px;
        background: #060b13;
        border-top: 2px solid var(--brand-cyan);
        justify-content: space-around;
        align-items: center;
        z-index: 9999;
        padding: 0 10px 10px 10px; 
        box-shadow: 0 -10px 25px rgba(0,0,0,0.5);
    }
    .mobile-bottom-nav .nav-item {
        color: #94a3b8;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
    }
    .mobile-bottom-nav .nav-item i { font-size: 1.4rem; margin-bottom: 4px; }
    .mobile-bottom-nav .nav-item span { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; }
    .mobile-bottom-nav .nav-item.active { color: var(--brand-cyan); }

    body { padding-bottom: 90px !important; }
}