/*
Theme Name: Águia Business Child
Theme URI: https://aguiabusiness.com.br
Description: Child theme do Hello Elementor com identidade visual da Águia Business.
Author: S2Tech
Author URI: https://s2tech.dev
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aguia-business-child
*/

/* ============================================
   VARIÁVEIS DA MARCA
   ============================================ */
:root {
    --preto-executivo: #0A0A0A;
    --dourado-premium: #C9A646;
    --dourado-claro: #E6C76A;
    --cinza-grafite: #2B2B2B;
    --branco: #FFFFFF;
    --dourado-gradient: linear-gradient(135deg, #C9A646 0%, #E6C76A 50%, #C9A646 100%);
}

/* ============================================
   BASE
   ============================================ */
body {
    background-color: var(--preto-executivo) !important;
    color: var(--branco);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    transition: all 0.3s ease;
}

/* ============================================
   ELEMENTOR OVERRIDES (cores da marca)
   ============================================ */
.elementor-widget-heading .elementor-heading-title {
    font-family: 'Playfair Display', serif;
}

/* Botões Elementor - estilo dourado */
.elementor-button.elementor-button-aguia-primary {
    background: var(--dourado-gradient) !important;
    color: var(--preto-executivo) !important;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.elementor-button.elementor-button-aguia-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 166, 70, 0.35);
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.aguia-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: aguia-pulse 2s infinite;
    text-decoration: none;
}

.aguia-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.aguia-whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

@keyframes aguia-pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.08); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ============================================
   SCROLL SUAVE
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   HEADER FIXO (se usar header do Elementor)
   ============================================ */
.aguia-header-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.aguia-header-scrolled {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 166, 70, 0.15);
}

/* ============================================
   ANIMAÇÕES DE SCROLL
   ============================================ */
.aguia-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.aguia-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CUSTOM ELEMENTOR SECTIONS
   ============================================ */

/* Seção com linha dourada no topo */
.aguia-section-gold-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--dourado-gradient);
    border-radius: 2px;
}

/* Card com hover dourado */
.aguia-card-hover {
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 166, 70, 0.1) !important;
}

.aguia-card-hover:hover {
    border-color: rgba(201, 166, 70, 0.3) !important;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Step number circle */
.aguia-step-number {
    width: 70px;
    height: 70px;
    border: 2px solid var(--dourado-premium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dourado-premium);
    margin: 0 auto 20px;
    background: var(--preto-executivo);
}

/* Tag/badge style */
.aguia-tag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(201, 166, 70, 0.08);
    border: 1px solid rgba(201, 166, 70, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    margin: 4px;
}

.aguia-tag:hover {
    background: rgba(201, 166, 70, 0.15);
    border-color: var(--dourado-premium);
    color: var(--dourado-premium);
}

/* Formulário no dark mode */
.aguia-form input,
.aguia-form textarea,
.aguia-form select {
    background: rgba(10, 10, 10, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--branco) !important;
    border-radius: 6px !important;
    padding: 14px 16px !important;
}

.aguia-form input:focus,
.aguia-form textarea:focus,
.aguia-form select:focus {
    border-color: var(--dourado-premium) !important;
    box-shadow: 0 0 0 3px rgba(201, 166, 70, 0.1) !important;
}

.aguia-form label {
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
}

/* ============================================
   RESPONSIVE FIXES
   ============================================ */
@media (max-width: 768px) {
    .aguia-whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .aguia-whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
