/*
Theme Name: ARZÚ GOMEZ
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.1776898496
Updated: 2026-04-22 22:54:56

*/

/* CONTENEDOR */
/* WSP y Volver arriba*/

/* CONTENEDOR */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999;
}

/* Evita que bloquee clics fuera */
.floating-buttons {
    pointer-events: none;
}
.floating-buttons a,
.floating-buttons button {
    pointer-events: auto;
}

/* RESET FUERTE SVG (esto evita el bug del espacio blanco) */
.floating-buttons svg {
    width: 28px !important;
    height: 28px !important;
    display: block;
}

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

.whatsapp-float svg path {
    fill: #fff;
}

.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: #054793;
    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;
}

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

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

.scroll-top svg path {
    fill: #fff;
}

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

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

/* 🔴 FIX DEFINITIVO SVG GIGANTE */
.floating-buttons svg {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
}

/* Evita que cualquier SVG global rompa layout */
body svg {
    max-width: 100%;
    height: auto;
}

.whatsapp-float svg path {
    fill: #fff !important;
}