/* ==========================================================================
   Módulo de Contacto - H. Ayuntamiento de Peribán
   ========================================================================== */

:root {
    --color-guinda: #6b1d37;
    --color-guinda-hover: #501327;
    --color-pink: #d63384;
}

/* Tarjetas de contacto e interacciones */
.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(107, 29, 55, 0.08);
    color: var(--color-guinda);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-card:hover .icon-box {
    background-color: var(--color-guinda);
    color: #ffffff;
}

/* Botones con estilo institucional */
.btn-guinda {
    background-color: var(--color-guinda);
    color: #ffffff;
    border: none;
    transition: background-color 0.2s ease;
}

.btn-guinda:hover {
    background-color: var(--color-guinda-hover);
    color: #ffffff;
}

.btn-outline-guinda {
    border: 1.5px solid var(--color-guinda);
    color: var(--color-guinda);
}

.btn-outline-guinda:hover {
    background-color: var(--color-guinda);
    color: #ffffff;
}

/* Animaciones de Entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}