/* ==========================================================
   contabilidad.css - ESTILOS PARA CONTABILIDAD Y BPO
   ========================================================== */

/* 1. FUENTES Y JERARQUÍA (Grosor 700 idéntico al resto del sitio) */
@font-face { font-family: 'Carnac'; src: url('../fonts/carnac-regular.otf'); font-weight: normal; }
@font-face { font-family: 'Carnac'; src: url('../fonts/carnac-bold.otf'); font-weight: 700; }
@font-face { font-family: 'Carnac'; src: url('../fonts/carnac-extrabold.otf'); font-weight: 800; }

.font-headingBold, h1, h2, h3, h4 { 
    font-family: 'Carnac', sans-serif !important; 
    font-weight: 700 !important; 
}

/* 2. OVERLAY HERO */
.hero-overlay {
    background: linear-gradient(90deg, rgba(26,29,35,0.95) 0%, rgba(26,29,35,0.8) 50%, transparent 100%);
}

/* 3. TARJETA FLOTANTE DE CONTACTO */
.sticky-wrapper {
    position: -webkit-sticky; 
    position: sticky;
    top: 130px; 
    z-index: 20;
    margin-bottom: 2rem;
}

.contact-card {
    background-color: #2B303A; 
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* 4. BOTÓN VERDE LIMA */
.btn-glow {
    background-color: #C9EC51;
    color: #2B303A;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2.5rem; 
    border-radius: 9999px;
    display: inline-block; 
    width: auto; 
    min-width: 200px; 
    text-align: center;
    box-shadow: 0 4px 15px rgba(201, 236, 81, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glow:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* 5. ANIMACIONES ON-SCROLL (SUAVES Y ELEGANTES) */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    opacity: 0; 
    transform: translateY(15px); 
    visibility: hidden;
}

.animate-fade-in.reveal-visible {
    visibility: visible;
    animation: fadeInUp 1.2s ease forwards; 
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

.icon-hover-effect { transition: transform 0.3s ease, color 0.3s ease; }
.parent-hover:hover .icon-hover-effect { transform: scale(1.1); }