/* ============================================================
   1. SECCIÓN: HERO DE CONTACTO
============================================================ */
.contacto-hero-section {
    position: relative;
    min-height: 550px;
    /* La imagen ahora se carga directamente desde el HTML */
    background-size: cover;
    background-position: center;
    /* Ajuste para el menú transparente */
    margin-top: -130px;
    padding-top: 130px;
    overflow: hidden;
}

/* Filtro oscuro para legibilidad */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(30, 37, 60, 0.95) 0%, rgba(30, 37, 60, 0.6) 100%);
    z-index: 1;
}

.z-index-10 {
    position: relative;
    z-index: 10;
}

/* Badge estilizado (como en tu referencia) */
.badge-contacto {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

/* Animaciones suaves */
.animate__fadeInUp {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================
   2. SECCIÓN: ESTILOS DE LA SECCIÓN DE CONTACTO
============================================================ */
.contacto-detalle-section {
    background-color: #f4f7f9; 
    padding-top: 6rem !important; /* Agregamos el espacio superior faltante */
    padding-bottom: 6rem !important; /* Equilibramos el espacio inferior */
}

/* Inputs personalizados */
.custom-input {
    border: 1px solid #e0e6ed;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #F08805;
    box-shadow: 0 0 0 4px rgba(240, 136, 5, 0.1);
    outline: none;
}

/* Botón de envío */
.btn-enviar {
    background-color: #F08805;
    border-color: #F08805;
    color: white;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    background-color: #d67a04;
    border-color: #d67a04;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 136, 5, 0.3);
}

/* Cajas de Iconos (Derecha) */
.icon-box {
    width: 45px;
    height: 45px;
    background-color: rgba(30, 37, 60, 0.05);
    color: #1E253C;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* Botones sociales */
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1E253C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #F08805;
    transform: scale(1.1);
    color: white;
}

/* Imagen decorativa */
.img-decorativa img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}