.title-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    height: 3.5em;
    min-height: 2.6em;
    max-height: 2.6em;
    margin: 0;
    padding: 0;
}

.reset-styles,
.reset-styles * {
    all: unset;
    display: revert;
    margin: revert;
    padding: revert;
    font: revert;
    color: revert;
}

.whatsapp-float {
    position: fixed;
    bottom: 150px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 150px;
        right: 30px;
        width: 42px;
        height: 42px;
        font-size: 26px;
    }

    .whatsapp-tooltip {
        display: none;
        /* Ocultar tooltip en móviles */
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 130px;
        right: 30px;
        width: 42px;
        height: 42px;
        font-size: 24px;
    }
}