/* Mejoras de contacto y conversion */
.contact-link {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-info {
    align-items: stretch;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 108px;
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.contact-item-horario {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(335px, 100%);
    flex-direction: column;
    gap: 0.55rem;
}

.contact-item-horario > i {
    flex: 0 0 auto;
}

.contact-item > i {
    flex: 0 0 44px;
    width: 44px;
    font-size: 1.65rem;
}

.contact-item > div {
    min-width: 0;
}

.contact-item .contact-link,
.contact-item p {
    overflow-wrap: anywhere;
}

.contact-item h4,
.contact-item p {
    text-align: center;
}

.social-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2500;
    display: grid;
    gap: 0.75rem;
}

.whatsapp-float,
.instagram-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float {
    background: #25D366;
}

.instagram-float {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.whatsapp-float i,
.instagram-float i {
    font-size: 1.8rem;
}

.whatsapp-float:hover,
.instagram-float:hover {
    transform: translateY(-2px);
    filter: brightness(0.96);
    box-shadow: 0 16px 36px rgba(0,0,0,0.32);
}

@media (max-width: 640px) {
    .contact-item {
        min-height: 88px;
        padding: 0.9rem 1rem;
    }

    .contact-item > i {
        width: 38px;
        font-size: 1.45rem;
    }

    .contact-item-horario {
        width: 100%;
    }

    .social-float {
        right: 16px;
        bottom: 16px;
        gap: 0.65rem;
    }

    .whatsapp-float,
    .instagram-float {
        width: 54px;
        height: 54px;
    }
}
