/* ==========================================================
   contacto.css - ESTILO EXACTO BAKER TILLY MÉXICO
   ========================================================== */

@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;
}

body { font-family: 'Roboto', sans-serif; color: #2B303A; }

.font-headingBold, h1, h2, h3, h4 { 
    font-family: 'Carnac', Arial, sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(43,48,58,0.9) 0%, rgba(43,48,58,0.2) 100%);
}

/* Campos de texto estilo MX */
.form-control {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 2px solid #dfe0e2; /* charcoal-15 */
    border-radius: 0.375rem; /* rounded-md */
    padding: 0.8rem 1rem;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: #fff;
    color: #2B303A;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #00BAB3; /* Color Aqua al hacer clic */
}

/* Checkbox estilo MX */
.form-checkbox {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #dfe0e2;
    border-radius: 0.25rem;
    outline: none;
    cursor: pointer;
    accent-color: #00BAB3;
}

/* Botón estilo MX */
.btn-submit {
    background-color: #2B303A;
    color: #ffffff;
    font-family: 'Carnac', Arial, sans-serif !important;
    font-weight: 800 !important;
    padding: 1rem 3rem; 
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    display: inline-block; 
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background-color: #00BAB3; /* Cambia a Aqua al pasar el mouse */
}

/* ==========================================================
   ANIMACIONES ON-SCROLL (REVEAL)
   ========================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    opacity: 0; 
    transform: translateY(30px);
    visibility: hidden;
}

.animate-fade-in.reveal-visible {
    visibility: visible;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 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; }