/*
Theme Name: Personaliza Tus Vinos
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Jorge Martinez
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1773781454
Updated: 2026-03-17 18:04:14

*/


.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column; /* stack vertical */
    gap: 12px; /* 👈 separación entre botones */
    z-index: 99999;
}

/* Evitar problemas de toque */
.whatsapp-float,
.scroll-top {
    touch-action: manipulation;
}

/* WhatsApp */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float svg {
    width: 45px;
    height: 45px;
    display: block;
}

.whatsapp-float svg path {
    fill: #fff !important; /* fuerza blanco sí o sí */
}

.whatsapp-float {
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
    animation: none;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll top */
.scroll-top {
    width: 60px;
    height: 60px;
    background-color: #61648F;
    border: none;
    border-radius: 50%;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* SVG corregido */
.scroll-top svg {
    width: 65px;       /* más grande */
    height: 65px;
    fill: #fff;        /* blanco */
    display: block;

    /* ajuste fino de centrado visual */
    transform: translateY(0px);
}

.scroll-top.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: #BF3A4F;
}

@media (max-width: 768px) {
    .floating-buttons {
		gap: 10px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
    }
	

    .scroll-top {
        width: 55px;
        height: 55px;
    }

    /* ocultar tooltip en mobile */
    .wa-tooltip {
        display: none;
    }
}