/* --- ESTILOS GERAIS --- */
:root {
    --primary: #6246ea;         /* Roxo Principal */
    --secondary: #2cb67d;       /* Verde Tecnologia */
    --dark-bg: #0f0e17;         /* Fundo Quase Preto */
    --card-bg: #1e1d2b;         /* Fundo dos Cards */
    --text-main: #fffffe;       /* Branco Puro */
    --text-sub: #d1d1e9;        /* Cinza Claro para parágrafos */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-sub);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-main) !important;
}

p, span, li {
    color: var(--text-sub);
}

a { text-decoration: none; }

/* Utilitários */
.text-gradient {
    background: linear-gradient(90deg, #7f5af0, #2cb67d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: rgba(30, 29, 43, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

/* --- NAVBAR --- */
.navbar-custom {
    background-color: rgba(15, 14, 23, 0.95);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

.btn-glow {
    background: var(--primary);
    color: #fff;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    box-shadow: 0 0 15px rgba(98, 70, 234, 0.4);
    transition: transform 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-glow:hover {
    transform: translateY(-2px);
    background: #533bd6;
    color: #fff;
}

/* --- HERO --- */
.hero-section {
    padding: 140px 0 80px;
    position: relative;
}

.hero-glow {
    position: absolute;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(98, 70, 234, 0.2) 0%, rgba(0,0,0,0) 70%);
    top: -20%;
    right: -10%;
    z-index: -1;
    pointer-events: none;
}

/* --- TECH CLOUD ANIMATION --- */
.tech-cloud {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-icon img {
    width: 60%;
    height: auto;
    object-fit: contain;
}

.icon-1 { top: 10%; left: 15%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 10%; animation-delay: 1.5s; }
.icon-3 { bottom: 20%; left: 10%; animation-delay: 2.5s; }
.icon-4 { bottom: 10%; right: 20%; animation-delay: 3.5s; }

.icon-5 { 
    position: relative;
    width: 140px; 
    height: 140px; 
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    animation-delay: 0.5s;
    border: 2px solid var(--primary);
    background: rgba(15, 14, 23, 0.8);
}
.icon-5 img { width: 100%; height: 100%; border-radius: 50%; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- SERVIÇOS CARDS --- */
.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.problem-text { color: #ff6b6b; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; }

/* --- TABELA DE COMPARAÇÃO --- */
.table-custom {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}
.table-custom th { color: var(--text-sub); font-weight: 400; padding: 15px; text-align: left; }
.table-custom td {
    background: var(--card-bg);
    padding: 20px;
    color: var(--text-sub);
    border: none;
}
.table-custom td:first-child { font-weight: bold; color: #fff; border-top-left-radius: 10px; border-bottom-left-radius: 10px;}
.table-custom td:last-child { border-top-right-radius: 10px; border-bottom-right-radius: 10px;}

.alua-cell {
    background: rgba(98, 70, 234, 0.15) !important;
    border: 1px solid var(--primary) !important;
    color: #fff !important;
    font-weight: bold;
}

/* --- TOOLS --- */
.tools-container i {
    transition: transform 0.3s;
}
.tools-container i:hover {
    transform: scale(1.2);
    color: var(--primary) !important;
}

/* --- FORMULÁRIO --- */
.form-dark {
    background-color: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
}
.form-dark:focus {
    background-color: rgba(0,0,0,0.5);
    border-color: var(--primary);
    color: #fff;
    box-shadow: none;
}
.form-dark::placeholder { color: #888; }

/* Campo Honeypot - Oculto para humanos */
.honey-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/* --- ACCORDION FAQ --- */
.accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 10px;
}
.accordion-button {
    background: var(--card-bg);
    color: #fff;
    border-radius: 8px !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: #fff;
}
.accordion-body {
    background: rgba(255,255,255,0.02);
    color: var(--text-sub);
    border-radius: 8px;
    margin-top: 5px;
}

/* --- WHATSAPP FLOATING --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 20px rgba(37, 211, 102, 0.5);
    z-index: 100;
    transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* --- FOOTER --- */
footer a { color: var(--text-sub); transition: 0.2s; }
footer a:hover { color: var(--primary); }