/* ===== Contacto (bloque estilo Increíble Films) ===== */
#if-contact,
.if-contact {
    padding: 56px 0;
}

#if-contact .container,
.if-contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

#if-contact .section-title h2,
.if-contact .section-title h2 {
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: .02em;
    margin: 0;
}

#if-contact .section-title p,
.if-contact .section-title p {
    margin: 10px 0 0;
    opacity: .85;
}

.if-contact .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
    align-items: start;
    margin-top: 18px;
}

.if-contact .card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
}

.if-contact .mini-title {
    color: white;
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.if-contact .meta {
    color: rgba(255, 255, 255, .70);
    font-size: 13px;
    line-height: 1.35;
}

.if-contact .soft-hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 16px 0;
}

.if-contact .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(217, 177, 94, .35);
    background: rgba(217, 177, 94, .18);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.if-contact .btn:hover {
    transform: translateY(-1px);
    border-color: rgba(217, 177, 94, .65);
    background: rgba(217, 177, 94, .25);
}

.if-contact .btn-wa {
    border-color: rgba(34, 197, 94, .35);
    background: rgba(34, 197, 94, .18);
}

.if-contact .btn-wa:hover {
    border-color: rgba(34, 197, 94, .65);
    background: rgba(34, 197, 94, .25);
}

.if-contact .social-card {
    padding: 16px 16px 18px;
}

.if-contact .social-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.if-contact .social-logo {
    max-width: 200px;
    height: auto;
    opacity: .95;
}

.if-contact .social-list {
    display: grid;
    gap: 12px;
}

.glass-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.gradient-border-wa {
    border-left: 6px solid #25D366;
    box-shadow: inset 20px 0 40px -20px rgba(37, 211, 102, 0.1);
}

.gradient-border-ig {
    border-left: 6px solid #E1306C;
    box-shadow: inset 20px 0 40px -20px rgba(225, 48, 108, 0.1);
}

.gradient-border-gm {
    border-left: 6px solid #EA4335;
    box-shadow: inset 20px 0 40px -20px rgba(234, 67, 53, 0.1);
}

.gradient-border-yt {
    border-left: 6px solid #FF0000;
    box-shadow: inset 20px 0 40px -20px rgba(255, 0, 0, 0.1);
}

.instagram-gradient {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon-box {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-text {
    margin-left: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.social-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.social-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.if-contact .map-wrapper iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 14px;
    margin-top: 10px;
    background: #0b0b0b;
}

@media (max-width: 900px) {
    .if-contact .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating WhatsApp button (bottom-right) */
.fab-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    background: #18c06e;
    color: #0d1210;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    transition: transform .18s ease, filter .18s ease;
}

.fab-whatsapp:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.fab-whatsapp:active {
    transform: translateY(0);
    filter: brightness(.98);
}

@media (max-width: 520px) {
    .fab-whatsapp {
        right: 14px;
        bottom: 20px;
        padding: 10px 12px;
        font-size: 14px;
    }
}