/**
 * Handymanes.com - Main Stylesheet (Apple Inspired / Kenelix Aesthetic)
 */

:root {
    --primary: #0a84ff;
    --primary-hover: #0070e0;
    --primary-glow: rgba(10, 132, 255, 0.4);
    --dark-bg: #0f172a;
    --dark-card: rgba(30, 41, 59, 0.7);
    --dark-border: rgba(255, 255, 255, 0.1);
    --text-dark: #f8fafc;
    --text-muted: #94a3b8;
    --light-bg: #f8fafc;
    --light-card: rgba(255, 255, 255, 0.85);
    --light-border: rgba(0, 0, 0, 0.08);
    --text-light: #0f172a;
    --radius-pill: 50px;
    --radius-card: 25px;
    --radius-input: 14px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Tema Oscuro Nativo Permanente (Estilo Apple Pro / Kenelix) */
body {
    background-color: var(--dark-bg);
    color: var(--text-dark);
}

h1, h2, h3, h4,
.hero h1,
.section-title,
.service-card h3,
.route-city,
.form-step h3,
.modal-content h2,
.modal-content h3 {
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
}

.hero p {
    color: #e2e8f0 !important;
    font-weight: 400;
}

.section-subtitle,
.service-card p,
.modal-content p,
.route-status-text {
    color: #cbd5e1 !important;
}

.form-label {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.custom-checkbox-label span {
    color: #f8fafc !important;
}

.nav-link {
    color: #ffffff !important;
    opacity: 0.9;
}

.nav-link:hover {
    color: var(--primary) !important;
    opacity: 1;
}

/* Header Glassmorphism */
header {
    position: sticky;
    top: 0;
    height: 80px;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(15, 23, 42, 0.75);
    border-bottom: 1px solid var(--dark-border);
    z-index: 1000;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: translateY(-2px);
}

.brand-icon {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.brand-logo:hover .brand-icon {
    transform: scale(1.08) rotate(-3deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.brand-title {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}

.brand-title .brand-accent {
    color: #ff9f0a !important;
}

.brand-title .brand-tld {
    color: var(--primary) !important;
    font-weight: 700;
}

.brand-subtitle {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #94a3b8 !important;
    margin-top: 3px;
}

nav {
    display: flex;
    align-items: center;
    gap: 2.8rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.08rem;
    transition: var(--transition);
    opacity: 0.9;
    letter-spacing: -0.2px;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary) !important;
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Botones Apple Pill */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 25px var(--primary-glow);
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(10, 132, 255, 0.55);
}

.cta-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: inherit;
    box-shadow: none;
}

.cta-btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 8% 6rem;
    position: relative;
    overflow: hidden;
    background-color: #0b0f19;
}

/* Vídeo de fondo en bucle que cubre toda la pantalla (estilo Wheels Performance) */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    opacity: 0.58;
    filter: brightness(0.92) contrast(1.08) saturate(1.15);
}

/* Capa de degradado con mayor transparencia para visibilidad óptima del vídeo */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.42) 0%, rgba(15, 23, 42, 0.58) 60%, rgba(11, 15, 25, 0.88) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: rgba(10, 132, 255, 0.15);
    border: 1px solid rgba(10, 132, 255, 0.3);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    max-width: 900px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.85);
}

/* Logo inline de IKEA integrado en el H1 manteniendo alineación tipográfica */
.inline-ikea-logo {
    height: 0.88em;
    width: auto;
    vertical-align: -0.12em;
    display: inline-block;
    margin: 0 6px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-muted);
    max-width: 750px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Sección Contenedor */
.section {
    padding: 5rem 8%;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Dashboard de Rutas Provinciales */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.route-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-card);
    padding: 28px;
    position: relative;
    transition: var(--transition);
}

.route-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.route-card.permanent {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.route-city {
    font-size: 1.35rem;
    font-weight: 700;
}

.route-badge {
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-open {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.badge-waiting {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.progress-bar-bg {
    background: rgba(255, 255, 255, 0.1);
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0 10px;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #0a84ff, #00d2ff);
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.route-status-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

/* Grid de Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-card);
    padding: 35px 30px;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 132, 255, 0.25);
    border-color: var(--primary);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-card .learn-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Tarjeta de Inspiración con imagen de fondo difuminada sin alterar la cuadrícula */
.service-card.card-cerramiento-bg {
    position: relative;
    overflow: hidden;
    background: #111827;
}

.service-card.card-cerramiento-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../armarios/cerramiento_arriba_abajo.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.38;
    filter: brightness(0.68) contrast(1.1);
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card.card-cerramiento-bg:hover::before {
    opacity: 0.52;
    filter: brightness(0.82) contrast(1.15);
    transform: scale(1.05);
}

.service-card.card-cerramiento-bg > * {
    position: relative;
    z-index: 2;
}

/* Tarjeta 2: Salva-viga en Dormitorio */
.service-card.card-salvaviga-bg {
    position: relative;
    overflow: hidden;
    background: #111827;
}

.service-card.card-salvaviga-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../armarios/salva_viga_dormitorio.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.38;
    filter: brightness(0.68) contrast(1.1);
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card.card-salvaviga-bg:hover::before {
    opacity: 0.52;
    filter: brightness(0.82) contrast(1.15);
    transform: scale(1.05);
}

.service-card.card-salvaviga-bg > * {
    position: relative;
    z-index: 2;
}

/* Tarjeta 3: Vestidor Esquinero a Medida */
.service-card.card-vestidor-bg {
    position: relative;
    overflow: hidden;
    background: #111827;
}

.service-card.card-vestidor-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../armarios/vestidor_esquinero_a_medida.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.38;
    filter: brightness(0.68) contrast(1.1);
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card.card-vestidor-bg:hover::before {
    opacity: 0.52;
    filter: brightness(0.82) contrast(1.15);
    transform: scale(1.05);
}

.service-card.card-vestidor-bg > * {
    position: relative;
    z-index: 2;
}

/* Formulario Multi-paso */
.form-container {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(16px);
    border-radius: 30px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    position: relative;
}

.step-bubble {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-bubble.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px var(--primary-glow);
}

.step-bubble.completed {
    background: #10b981;
    color: white;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-input);
    border: 1px solid var(--dark-border);
    background: rgba(15, 23, 42, 0.6);
    color: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

body.light .form-control {
    background: #ffffff;
    border-color: #cbd5e1;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Selector de Provincia: ensanchado vertical para lectura óptima sin cortes */
select#form-provincia.form-control {
    min-height: 56px;
    height: 56px;
    padding-top: 14px;
    padding-bottom: 14px;
    line-height: 1.5;
    box-sizing: border-box;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.custom-checkbox-label:hover {
    border-color: var(--primary);
}

.custom-checkbox-label input:checked + span {
    color: var(--primary);
    font-weight: 600;
}

.form-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Toast */
#toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1e293b;
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 0.95rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    border-left: 4px solid var(--primary);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 99999;
    pointer-events: none;
}

#toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Modal de Servicios */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 25px;
    max-width: 700px;
    width: 100%;
    padding: 35px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: #0b1120;
    color: var(--text-muted);
    padding: 60px 8% 30px;
    border-top: 1px solid var(--dark-border);
    text-align: center;
    font-size: 0.9rem;
}

/* Botón menú móvil oculto en escritorio */
.mobile-menu-cta {
    display: none !important;
}

/* Botón flotante vertical oculto en escritorio */
.floating-vertical-cta {
    display: none;
}

@media (max-width: 900px) {
    header {
        padding: 0 5%;
        height: 72px;
    }

    .brand-icon {
        height: 38px;
    }

    .brand-title {
        font-size: 1.15rem;
    }

    .brand-subtitle {
        display: none; /* Se oculta en móviles para mantener la barra limpia */
    }

    /* En móvil se oculta del header para dejar solo el menú hamburguesa */
    .header-actions .cta-btn-header {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    nav#nav-menu {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    nav#nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    nav#nav-menu .nav-link {
        font-size: 1.25rem;
        padding: 6px 20px;
    }

    /* Botón destacado dentro del menú desplegable móvil */
    .mobile-menu-cta {
        display: inline-flex !important;
        margin-top: 8px;
        padding: 13px 26px !important;
        font-size: 0.95rem !important;
        width: 85%;
        max-width: 320px;
        justify-content: center;
        box-shadow: 0 8px 25px var(--primary-glow);
    }

    /* Botón flotante vertical minimalista en el lateral derecho de la pantalla */
    .floating-vertical-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(180deg, #0a84ff, #0056cc);
        color: #ffffff !important;
        text-decoration: none;
        padding: 14px 7px;
        border-radius: 12px 0 0 12px;
        box-shadow: -3px 3px 18px rgba(10, 132, 255, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.25);
        z-index: 9999;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .floating-vertical-cta span {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-size: 0.74rem;
        font-weight: 800;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        white-space: nowrap;
        color: #ffffff !important;
    }

    .floating-vertical-cta:active {
        transform: translateY(-50%) scale(0.94);
        box-shadow: -5px 5px 22px rgba(10, 132, 255, 0.7);
    }

    .hero {
        min-height: 75vh;
        padding: 3rem 5% 4rem;
    }

    .form-container {
        padding: 25px 20px;
    }
}

/* ==========================================================================
   Contacto en Footer y Enlaces de Confianza
   ========================================================================== */
.footer-contact {
    margin: 22px 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-contact-link:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.footer-contact-link.whatsapp-link {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.25);
}

.footer-contact-link.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.12);
}

body.light .footer-contact-link {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: var(--primary);
}

body.light .footer-contact-link:hover {
    background: #e2e8f0;
}

body.light .footer-contact-link.whatsapp-link {
    color: #128C7E;
    border-color: rgba(18, 140, 126, 0.3);
}

/* ==========================================================================
   Botón Flotante de WhatsApp Minimalista (Siempre visible)
   ========================================================================== */
.whatsapp-float-btn {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 9998;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    cursor: pointer;
}

.whatsapp-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 26px rgba(37, 211, 102, 0.65), 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.whatsapp-float-btn:active {
    transform: scale(0.94);
}

.whatsapp-float-btn svg,
.whatsapp-float-btn i {
    width: 32px;
    height: 32px;
    font-size: 32px;
    line-height: 1;
    fill: currentColor;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 68px;
    background: rgba(15, 23, 42, 0.92);
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.whatsapp-float-btn:hover .whatsapp-float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-float-btn svg,
    .whatsapp-float-btn i {
        width: 28px;
        height: 28px;
        font-size: 28px;
    }

    .whatsapp-float-tooltip {
        display: none;
    }
}
