:root {
    --primary: #AC8C66;
    --primary-dark: #8c7252;
    --bg-light: #F5F2EE;
    --text-dark: #1F2937;
    --text-gray: #4B5563;
    --white: #ffffff;
    --black-bg: #111111;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Utility Classes for JS Observer */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.text-gold {
    color: var(--primary);
}

.text-gold-dark {
    color: #AC8C66;
    font-weight: 600;
    font-size: 1.1rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--white);
}

.bg-dark {
    background-color: var(--black-bg);
}

.text-white {
    color: var(--white);
}

.text-dark {
    color: var(--text-dark);
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.text-center-mobile {
    text-align: center;
}

.text-white h2,
.text-white p,
.bg-dark h2,
.bg-dark p {
    color: var(--white) !important;
}

/* --- Layout Utilities --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mt-section-gap {
    margin-top: 6rem;
}

.section-padded-bottom {
    padding-bottom: 6rem;
}

/* --- Components --- */
.btn-primary,
.btn-primary-small {
    background: var(--primary);
    color: var(--white) !important;
    font-weight: 600;
    border-radius: 9999px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover,
.btn-primary-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(172, 140, 102, 0.4);
}

.btn-primary {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Specific Margin/Centering for Request */
.btn-container {
    margin-top: 3rem;
}

.btn-primary-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.badge-video {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    letter-spacing: 0.05em;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary-small) {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
}

.navbar.scrolled .nav-links a:not(.btn-primary-small) {
    color: var(--text-dark);
}

.nav-links a:hover:not(.btn-primary-small) {
    color: var(--primary) !important;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
}

.navbar.scrolled .menu-toggle {
    color: var(--text-dark);
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.3));
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding-top: 4rem;
}

.badge-hero {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(172, 140, 102, 0.2);
    border: 1px solid rgba(172, 140, 102, 0.3);
    color: #e6dccf;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    color: #e5e7eb;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* --- Section Global --- */
.section {
    padding: 5rem 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.125rem;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid #f3f4f6;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(172, 140, 102, 0.2);
    color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* --- Video Card --- */
.video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-xl);
    margin-bottom: 4rem;
    cursor: pointer;
}

.video-card-large {
    transform: scale(1.05);
    margin-bottom: 0;
    /* Remove margin to center better vertically */
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-card img {
    transition: transform 0.7s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
}

.play-button {
    width: 5rem;
    height: 5rem;
    background: rgba(172, 140, 102, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
    background: var(--primary);
}

.video-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: white;
}

.video-info h3 {
    font-family: var(--font-body);
    margin-top: 0.5rem;
}

/* --- Modelo Section --- */
.container-flex {
    display: flex;
    align-items: center;
    /* Ensures vertical centering */
    gap: 4rem;
}

.col-half {
    flex: 1;
}

.badge-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.display-3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.tech-specs {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
}

.tech-specs h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.tech-specs ul {
    list-style: none;
    margin-top: 1rem;
}

.tech-specs li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
}

.tech-specs li:last-child {
    border-bottom: none;
}

/* --- Nearby Connectivity Section (Refined) --- */
.nearby-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.nearby-item {
    background: transparent;
    padding: 1rem;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc(25% - 2rem);
    min-width: 200px;
    transition: var(--transition);
}

.nearby-item:hover {
    transform: translateY(-5px);
}

.nearby-item .icon-box {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.25rem;
    background: rgba(172, 140, 102, 0.1);
    color: var(--primary);
    border-radius: 50%;
}

.nearby-item p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.4;
}

.nearby-item p strong {
    color: var(--white);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* --- Planos Section (New Structure) --- */
.planos-container-new {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.planos-tabs-top {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #f3f4f6;
    background: #f9fafb;
}

.tab-btn-top {
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 4px solid transparent;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn-top:hover {
    color: var(--primary);
}

.tab-btn-top.active {
    border-bottom-color: var(--primary);
    color: var(--primary);
    background: white;
}

.planos-content-new {
    padding: 3rem;
}

/* FIXED TAB VISIBILITY */
.tab-pane {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.plan-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 6rem;
    align-items: center;
    justify-content: center;
}

.plan-list-styled {
    list-style: none;
}

.plan-list-styled li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.plan-list-styled li:before {
    content: "•";
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.plan-img-small {
    max-height: 400px;
    width: auto;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
}

/* --- Ubicacion (Map) --- */
.map-container-full {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-top: 2rem;
    background: #eee;
    position: relative;
}

.btn-map-video {
    /* Updated for separate button */
    /* position: absolute; top: 2rem; left: 2rem; */
    /* Removed absolute positioning */
    display: inline-flex;
    position: relative;
    background: var(--primary);
    /* make it pop more */
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-map-video:hover {
    transform: scale(1.05);
    background: var(--primary-dark);
}

.location-list {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.location-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1.1rem;
}

/* --- Footer (Split Layout) --- */
.footer {
    background: var(--black-bg);
    color: white;
    padding-top: 8rem;
    padding-bottom: 2rem;
    margin-top: 5rem;
}

/* --- Provi Brand Footer --- */
.provi-brand-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    margin: 2rem auto;
}

.provi-logo-footer {
    max-width: 320px;
    height: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.contact-card-split {
    background: var(--white);
    color: var(--text-dark);
    border-radius: var(--radius-xl);
    padding: 4rem;
    max-width: 1000px;
    margin: -12rem auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.highlighted-card {
    background: #fff;
    border: 2px solid var(--primary);
    box-shadow: 0 20px 50px rgba(172, 140, 102, 0.15);
}

.contact-col-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-col-left p {
    color: var(--text-gray);
}

.contact-col-right h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: var(--text-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input {
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    background: #f9f9f9;
}

.contact-form button {
    padding: 1rem;
    background: var(--black-bg);
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-form button:hover {
    background: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.provi-brand-inline {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.provi-logo-large {
    height: 100px;
    width: auto;
    margin-bottom: 0.5rem;
}

/* Centering Class */
.centered-logo {
    margin: 0 auto 0.5rem auto;
    display: block;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.social-link {
    color: var(--primary);
    padding: 0.5rem;
    border-radius: 50%;
    background: #f9fafb;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}


/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    z-index: 999;
    padding-top: 6rem;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .navbar .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .menu-toggle {
        z-index: 1001;
        position: relative;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .container-flex {
        flex-direction: column;
    }

    .location-list {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-card-split {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .plan-grid {
        grid-template-columns: 1fr;
    }

    .plan-image-col {
        order: -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* --- Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.modal-content video {
    width: 100%;
    height: auto;
    display: block;
    outline: none;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--primary);
}

/* --- Carousel Modal --- */
.modal-carousel {
    display: none;
    position: fixed;
    z-index: 2100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.modal-carousel.show {
    display: flex;
}

.carousel-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
}

.close-carousel {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    z-index: 2200;
}

.close-carousel:hover {
    color: var(--primary);
}

.carousel-prev,
.carousel-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0, 0, 0, 0.3);
    border: none;
}

.carousel-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.carousel-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Floating WhatsApp Persona Component --- */
.fixed-wa-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.float-wa-persona {
    width: 4.5rem;
    height: 4.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
    position: relative;
}

.float-wa-persona:hover {
    transform: scale(1.1);
}

.wa-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-dot {
    position: absolute;
    bottom: 12%;
    right: 12%;
    width: 14px;
    height: 14px;
    background-color: #22c55e;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 10;
}

/* El Globo de Texto */
.wa-popup {
    background: white;
    color: var(--text-dark);
    padding: 1rem 1.25rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
    max-width: 220px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.5s ease;
    border: 1px solid #f3f4f6;
    z-index: 1001;
}

.wa-popup.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: bubbleEntrance 0.6s ease-out forwards, bubbleShake 3s ease-in-out infinite 2s;
}

.wa-popup-text {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    text-align: right;
    padding-right: 0.5rem;
}

.wa-popup-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 1.5rem;
    height: 1.5rem;
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: color 0.3s;
}

.wa-popup-close:hover {
    color: var(--primary);
}

.wa-popup-arrow {
    position: absolute;
    bottom: -8px;
    right: 32px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-right: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

@keyframes bubbleEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }

    70% {
        transform: translateY(-8px) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bubbleShake {

    0%,
    100% {
        transform: translateY(0) rotate(0) translateX(0);
    }

    15% {
        transform: translateY(-7px) rotate(-2.5deg) translateX(-2px);
    }

    30% {
        transform: translateY(0) rotate(2.5deg) translateX(2px);
    }

    45% {
        transform: translateY(-5px) rotate(-2deg) translateX(-1px);
    }

    60% {
        transform: translateY(0) rotate(2deg) translateX(1px);
    }

    75% {
        transform: translateY(-2px) rotate(-1deg) translateX(-0.5px);
    }
}

@media (max-width: 768px) {
    .fixed-wa-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .float-wa-persona {
        width: 4rem;
        height: 4rem;
    }
}