@font-face {
    font-family: 'Montserrat';
    src: url('fontes/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fontes/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Soulcraft';
    src: url('fontes/Soulcraft.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    /* Design System - Gospel Experience LP */
    /* Palette */
    --primary: #AF5007;
    /* Rusty Orange - Action */
    --primary-dark: #8a3d04;
    --secondary: #1b7c38;
    /* Deep Green - Highlight/Hover */
    --secondary-glow: #2ecc71;

    --bg-dark: #0f0b15;
    /* Deepest Purple/Black */
    --bg-panel: #15101a;
    /* Slightly lighter panel bg */

    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    /* Cool gray for better readability */

    /* Typography */
    --font-display: 'Soulcraft', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-section: 10rem;
    /* Massive whitespace for premium feel */

    /* Effects */
    --glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
}

/* Noise Texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0;
    /* Disabled as requested */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed navbar (70px + buffer) */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.7;
    /* Increased line-height for readability */
    -webkit-font-smoothing: antialiased;
}

/* Sections General */
section {
    padding: var(--spacing-section) 5%;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    /* Responsive typography */
    text-transform: uppercase;
    letter-spacing: -1px;
    /* Editorial tight spacing */
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    line-height: 0.9;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 2rem auto 0;
}

/* Background Layer */
.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Prevents cropping */
    object-position: top center;
    /* Aligns image to top */
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(46, 92, 255, 0.2), transparent 60%),
        radial-gradient(circle at bottom left, rgba(255, 0, 85, 0.15), transparent 60%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.8), #0a0a0a);
    z-index: 1;
}

/* Navbar */
/* Navbar */
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 2rem 5%;
    /* Larger initial padding */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-container {
    max-width: 1200px;
    /* Widened to push menu further right */
    width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-between;
    justify-content: space-between;
    /* Distinct separation */
    align-items: center;
}

/* Glass Effect on Scroll */
.navbar.scrolled {
    background: rgba(15, 11, 21, 0.85);
    /* --bg-dark with opacity */
    backdrop-filter: blur(12px);
    padding: 1rem 5%;
    /* Tighten on scroll */
    border-bottom: 1px solid var(--border-glass);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo .highlight {
    color: #ff6f00;
    /* Vivid Orange */
}

.logo .dot {
    color: var(--accent-orange);
}

/* Desktop Navigation (Restored) */
.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    border: 1px solid var(--text-main);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-nav:hover {
    background: var(--primary);
    color: #ffffff !important;
    border-color: var(--primary);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 998;
    /* Below navbar (1000) */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-link {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-main);
    text-decoration: none;
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--primary);
    -webkit-text-stroke: 1px var(--primary);
    color: transparent;
}

.mobile-link.highlight {
    color: var(--primary);
}

/* Hamburger Button (SVG) */
.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    /* Above overlay */
    display: none;
    /* Desktop default */
}

.menu-toggle svg {
    height: 40px;
    width: 40px;
}

.menu-toggle .line {
    fill: none;
    stroke: var(--text-main);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.menu-toggle .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.menu-toggle .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.menu-toggle.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.menu-toggle.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.menu-toggle.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

/* Hero Section */
/* Hero Section (Updated) */
/* Hero Section (Updated for Responsive Banner) */
.hero {
    height: auto;
    /* Adapts to image height */
    min-height: auto;
    width: 100%;
    position: relative;
    padding-top: 130px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    /* Space for fixed header */
    display: block;
    overflow: visible;
}

/* New Wrapper for Hero Image */
.bg-layer-hero {
    width: 100%;
    line-height: 0;
    /* Prevents inline gap */
    position: relative;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: auto;
    /* Maintains aspect ratio */
    display: block;
    object-fit: cover;
    /* Default behavior for img tag */
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    /* Offset for visual balance over banners */
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through to image if needed */
}

/* Ensure button is clickable */
.hero-content .button-wrapper {
    pointer-events: auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    opacity: 0;
    /* For GSAP Animation */
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero .button-wrapper {
    opacity: 0;
    transform: translateY(30px);
}



/* Content Sections */
.content-section {
    position: relative;
    background: var(--bg-color);
    z-index: 2;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.alt-bg {
    background: var(--section-bg);
}

.container-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.container-text p {
    margin-bottom: 1.5rem;
}

/* Speaker Grid */
.grid-speakers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.speaker-card {
    background: var(--glass);
    border: 1px solid var(--border-glass);
    padding: 3rem 2rem;
    border-radius: 0;
    /* Brutalist/Sharp corners */
    text-align: center;
    transition: all 0.4s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(175, 80, 7, 0.1);
    /* Slight orange tint */
}

.speaker-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #333;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-orange);
    background-size: cover;
    background-position: center;
}

.speaker-card h3 {
    font-family: var(--font-title);
    color: var(--text-main);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Info Box (Local/Ingressos) */
.container-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.info-box {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    border-radius: 4px;
    text-align: left;
    /* Editorial alignment */
    border: 1px solid var(--border-glass);
    background: linear-gradient(180deg, var(--glass) 0%, transparent 100%);
}

.info-box.accent {
    border: 1px solid var(--accent-orange);
    box-shadow: 0 0 20px rgba(255, 111, 0, 0.1);
}

.info-box h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    letter-spacing: -1px;
}


.info-box p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Morada Button Style */
.btn-hero.small {
    display: inline-block;
    background-color: #FF6F00;
    /* Requested base color */
    color: #ffffff;
    font-family: var(--font-body);
    /* Montserrat */
    font-size: 18px;
    /* Increased size */
    font-weight: 600;
    /* Slightly bolder */
    text-transform: uppercase;
    line-height: 1;
    padding: 16px 40px;
    /* Increased padding */
    border-radius: 50px;
    /* Fully rounded corners like menu button */
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    /* Force remove text decoration */
    transition: all 0.3s ease;
    /* Smooth transition */

    /* Animation Grow Logic */
    -webkit-font-smoothing: antialiased;
}

.btn-hero.small:hover,
.btn-hero.small:focus {
    background-color: #af5007;
    /* Requested hover/interaction color */
    color: #ffffff;
    transform: scale(1.1);
    /* elementor-animation-grow effect */
}

/* Fix Hero Visual removal from previous CSS */
.hero-visual,
.hero-content,
.container {
    display: none;
    /* Hide old hero elements as requested */
}

/* Re-enable container for sections */
.content-section .container {
    display: block;
}

.container-info .info-box {
    display: block;
}

/* Footer adjustment */
footer {
    background: linear-gradient(to right, #020111, #131126);
    padding: 2rem;
    /* border-top: 1px solid var(--glass-border); */
    text-align: center;
}

/* Responsiveness */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .container-info {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding-top: 100px;
        /* Reduced header space for mobile */
    }

    /* Fix for Logo breakdown on mobile */
    .logo {
        font-size: 16px;
        /* Explicit 16px size as requested */
        white-space: nowrap;
        /* Enforces single line */
    }
}

/* Map Container */
.map-container {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-purple);
}

/* Map Container Iframe */
.map-container iframe {
    display: block;
    /* Remove bottom space */
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
    /* Dark mode map filter */
}

/* Ingressos Section Background Pattern */
#ingresso {
    background-color: #020114;
    padding-top: 120px;
    padding-bottom: 100px;
    /* Darker Blue Base */
    /* Overlay dark blue (softer opacity) on top of the pattern */
    background-image: linear-gradient(rgba(2, 1, 20, 0.85), rgba(2, 1, 20, 0.88)),
        radial-gradient(#2a2a2a 1px, transparent 1px),
        radial-gradient(#2a2a2a 1px, #0F1015 1px);
    background-size: auto, 20px 20px, 20px 20px;
    background-position: center, 0 0, 10px 10px;
    position: relative;
    color: var(--text-main);
}

.cta-large {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    /* #AF5007 */
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.cta-small {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* =========================================
   Gooey Button Effect (Added)
   ========================================= */
:root {
    --button-base: #AF5007;
    --button-hover: #1b7c38;
}

.button {
    -webkit-font-smoothing: antialiased;
    background-color: var(--primary);
    border: none;
    color: var(--text-main);
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    user-select: none;
    letter-spacing: 1px;
    padding: 20px 40px;
    text-transform: uppercase;
    transition: all 0.1s ease-out;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

.button:hover {
    background-color: var(--secondary);
    color: #fff;
}

.button:active {
    transform: scale(0.95);
}

.button--bubble {
    position: relative;
    z-index: 2;
    color: white;
    background: none;
}

.button--bubble:hover {
    background: none;
}

.button--bubble:hover+.button--bubble__effect-container .circle {
    background: var(--secondary);
}

.button--bubble:hover+.button--bubble__effect-container .button {
    background: var(--secondary);
}

.button--bubble:active+.button--bubble__effect-container {
    transform: scale(0.95);
}

.button--bubble__container {
    position: relative;
    display: inline-block;
}

.button--bubble__container .effect-button {
    position: absolute;
    width: 50%;
    height: 25%;
    top: 50%;
    left: 25%;
    z-index: 1;
    transform: translateY(-50%);
    background: var(--primary);
    transition: background 0.1s ease-out;
    border-radius: 50px;
}

.button--bubble__effect-container {
    position: absolute;
    display: block;
    width: 200%;
    height: 400%;
    top: -150%;
    left: -50%;
    -webkit-filter: url("#goo");
    filter: url("#goo");
    transition: all 0.1s ease-out;
    pointer-events: none;
}

.button--bubble__effect-container .circle {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 15px;
    background: var(--primary);
    transition: background 0.1s ease-out;
}

.button--bubble__effect-container .circle.top-left {
    top: 40%;
    left: 27%;
}

.button--bubble__effect-container .circle.bottom-right {
    bottom: 40%;
    right: 27%;
}

.button--bubble__effect-container .circle.top-left {
    animation: top-left 0.8s forwards ease-out;
}

/* ... existing animations ... */

/* Ingressos Grid Layout */
.ingressos-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    /* Generous spacing */
    flex-wrap: wrap;
    margin-top: 3rem;
    align-items: center;
}

/* Theme Sympla Override */
.theme-sympla .button {
    background-color: #dddddd;
    color: #121212;
    /* Dark text for contrast */
}

.theme-sympla .button:hover {
    background-color: #0097FF;
    color: #ffffff;
}

.theme-sympla .button--bubble__effect-container .circle {
    background: #0097FF;
}

.theme-sympla .button--bubble:hover+.button--bubble__effect-container .button {
    background: #0097FF;
}

.theme-sympla .button--bubble__container .effect-button {
    background: #dddddd;
}



.goo {
    position: absolute;
    visibility: hidden;
    width: 1px;
    height: 1px;
}

/* Payment Block Styles */
#payment-area {
    margin-top: 2rem;
    overflow: hidden;
    transition: all 0.5s ease-out;
}

.payment-content {
    background: rgba(15, 11, 21, 0.95);
    border: 1px solid var(--border-glass);
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.payment-title {
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.qr-container {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.qr-image {
    width: 200px;
    height: 200px;
    display: block;
}

/* Confirmation Card (UI/UX Pro) Styles */
.confirmation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(37, 211, 102, 0.3);
    /* Subtle green border */
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    /* Centering content */
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.confirmation-card:hover {
    border-color: rgba(37, 211, 102, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.conf-icon-area {
    flex-shrink: 0;
}

.whatsapp-icon-glow {
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.conf-text-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers items horizontally */
    justify-content: center;
}

.conf-title {
    font-size: 20px;
    /* Requested size */
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: var(--font-body);
}

.conf-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    max-width: 300px;
    /* Control text width */
    margin-left: auto;
    margin-right: auto;
}

.btn-confirm-action {
    display: inline-flex;
    /* Use flex for centering content */
    align-items: center;
    justify-content: center;
    background: rgba(37, 211, 102, 0.15);
    /* Light filled background */
    border: 1px solid #25D366;
    color: #25D366;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    /* Balanced size */
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    /* Optional: make it full width of container? No, image shows specific width */
    max-width: 250px;
}

.btn-confirm-action:hover {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Responsiveness for Card */
@media (max-width: 480px) {
    .confirmation-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .conf-text-area {
        align-items: center;
    }

    .conf-desc {
        font-size: 0.85rem;
    }
}


/* Restoring payment-details */
.payment-details {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-details p {
    margin-bottom: 0.5rem;
}

.payment-details strong {
    color: var(--text-main);
}

.payment-value {
    font-size: 1.5rem;
    color: var(--secondary-glow);
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
}

.btn-copy {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.btn-copy:hover {
    background: var(--primary);
    color: white;
}

.copy-feedback {
    display: block;
    margin-top: 0.5rem;
    color: var(--secondary-glow);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
    height: 20px;
}


.copy-feedback.visible {
    opacity: 1;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-float 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20bd5a;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Tooltip for Floating Button */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@keyframes pulse-float {
    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);
    }
}