/* CONTENEDOR GENERAL */
.container-contacto {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1700px;
    padding: 4rem 1rem;
}

/* TARJETA */
.seccion-contacto {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-whatsapp{
    background-color: #2EAB5E !important;
}

.img-email{
    background-color: rgb(96, 86, 161) !important;
}

.img-ubicacion{
    background-color: #2EAB5E !important;
}

.seccion-contacto:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* CÍRCULO PARA SVG / ÍCONO */
.circulo-svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background-color: #f2f4f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ejemplo si insertás un SVG */
.circulo-svg svg {
    width: 36px;
    height: 36px;
    fill: #1f2933;
}

/* TEXTO (opcional si luego agregás contenido) */
.seccion-contacto h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1f2933;
}

.seccion-contacto p {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.5;
}

.footer {
    position: fixed;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .container-contacto {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container-contacto {
        grid-template-columns: 1fr;
    }
    .footer {
        position: relative;
    }
}
