/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */


.contactos-title {
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.contactos-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-direction: column;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contacto-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.icon-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.icon-link:hover {
    opacity: 0.7;
}

.icon-link svg {
    width: 100%;
    height: 100%;
}

.icon-link.whatsapp svg {
    color: #25D366;
}

.contacto-text {
    text-decoration: none;
    font-size: 21px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.contacto-text:hover {
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contactos-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .contacto-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }
    
    .contacto-icons {
        gap: 15px;
    }
    
    .icon-link {
        width: 28px;
        height: 28px;
    }
    
    .contacto-text {
        word-break: break-all;
        white-space: normal;
    }
    
    .phone-number {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .icon-link {
        width: 26px;
        height: 26px;
    }
}