body {
    background-color: #f4f4f2;
    color: #1a1a1a;
    overflow-x: hidden;
}

::selection {
    background-color: #b89b5e;
    color: white;
}

.link-hover {
    position: relative;
    display: inline-block;
}

.link-hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.link-hover:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.whatsapp-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.transition-delay-100 {
    transition-delay: 0.1s;
}

.transition-delay-200 {
    transition-delay: 0.2s;
}

.transition-delay-300 {
    transition-delay: 0.3s;
}

.map-frame {
    border: 0;
}
