/* ==========================================================
   impuesto.css - ESTILOS PARA LA PÁGINA DE IMPUESTOS
   ========================================================== */

/* 1. REGISTRO DE LA FUENTE CARNAC EXTRABOLD */
@font-face {
    font-family: 'Carnac';
    src: url('../fonts/carnac-bold.otf') format('opentype'),
         url('../fonts/carnac-bold.ttf') format('truetype');
    font-weight: 800; 
    font-style: normal;
}

/* 2. ESTILOS BASE */
body {
    font-family: 'Roboto', sans-serif;
    color: #2B303A;
}

/* 3. TÍTULOS CON CARNAC EXTRABOLD */
.font-headingBold {
    font-family: 'Carnac', Arial, sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Detalle de la línea verde bajo títulos h2 */
.text-h2.font-headingBold {
    position: relative;
    padding-bottom: 15px;
}

.text-h2.font-headingBold::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #C9EC51;
}

.text-center .text-h2.font-headingBold::after {
    left: 50%;
    transform: translateX(-50%);
}

/* 4. COLORES Y PROSE */
.bg-growth { background-color: #C9EC51 !important; }
.text-aqua { color: #00BAB3 !important; }

.prose p {
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.prose strong {
    font-weight: 700;
    color: #2B303A;
}

.hide-scroll::-webkit-scrollbar { display: none; }
.hide-scroll { -ms-overflow-style: none; scrollbar-width: none; }

/* 5. TARJETAS DE CONTACTO Y BOTÓN */
.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;
}

.btn-glow {
    background-color: #C9EC51;
    color: #2B303A;
    font-family: 'Carnac', Arial, sans-serif !important;
    font-weight: 800 !important;
    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);
}

.sticky-wrapper {
    position: -webkit-sticky; 
    position: sticky;
    top: 130px; 
    z-index: 20;
    margin-bottom: 2rem;
}

/* ==========================================================
   6. 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; }
.delay-500 { animation-delay: 0.5s; }