/* TUCAN STYLES */

:root {
    --color-green-cenote: #00332a;
    --color-green-deep: #00261f;
    --color-gold: #c5a059;
    /* REFINED GOLD */
    --color-gold-bright: #e5c185;
    --color-chukum: #f0ede6;
    --color-text: #0c1d18;
    --font-display: 'Manrope', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-chukum);
    color: var(--color-text);
    font-family: var(--font-display);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* HEADER SCROLLED */
header.scrolled {
    background: rgba(0, 38, 31, 0.92) !important;
    backdrop-filter: blur(15px);
    height: 90px !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

header.scrolled .nav-link:hover {
    color: var(--color-gold) !important;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-600 {
    animation-delay: 0.6s;
}

/* UTILITIES */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.text-premium-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.7),
        0 25px 60px rgba(0, 0, 0, 0.5);
}

.text-backdrop-glow {
    position: relative;
    z-index: 1;
}

.text-backdrop-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 125%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(10, 30, 20, 0.7) 0%, rgba(10, 30, 20, 0) 75%);
    z-index: -1;
    filter: blur(25px);
}

.hero-overlay-jungle {
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 38, 31, 0.95) 100%);
}

/* STYLES */
.bg-jungle {
    background-color: var(--color-green-cenote);
}

.text-gold {
    color: var(--color-gold);
}

.btn-premium {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-bright));
    color: white;
    padding: 1.1rem 2.8rem;
    border-radius: 9999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
    transition: var(--transition-premium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.7s ease;
}

.btn-premium:hover::after {
    left: 120%;
}

.btn-premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(197, 160, 89, 0.35);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px border rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 800;
    font-size: 0.65rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

/* AMENITY CARD */
.amenity-card {
    height: 400px;
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
}

.amenity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.amenity-card:hover img {
    transform: scale(1.1);
}

.amenity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
}

/* LOTS GRID */
.lotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.floating-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 77, 64, 0.8);
    backdrop-filter: blur(5px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* LIGHTBOX */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 38, 31, 0.98);
    backdrop-filter: blur(25px);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

#lightbox.active {
    display: flex;
    animation: fadeIn 0.4s ease forwards;
}

#lightbox-img {
    max-width: 90%;
    max-height: 70vh;
    border-radius: 1rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 30px;
}

#lightbox.active #lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    user-select: none;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-gold);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

.lightbox-caption {
    text-align: center;
    width: 100%;
    max-width: 800px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.lightbox-caption h3 {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    color: var(--color-gold);
    margin: 0;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.lightbox-caption p {
    font-size: 0.85rem;
    color: white;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-top: 10px;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}/* QUOTER STYLES */
.plan-radio {
    display: none;
}

.plan-label {
    display: block;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.plan-label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 138, 46, 0.4);
}

.plan-radio:checked + .plan-label {
    background: rgba(200, 138, 46, 0.15);
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(200, 138, 46, 0.2);
}

.plan-radio:checked + .plan-label .plan-name {
    color: var(--color-gold-bright);
}

.plan-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.plan-months {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* MASTER PLAN (SVG) */
#svg-map-container svg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

.lot-figure {
    cursor: pointer;
    transition: all 0.3s ease;
    stroke: rgba(255,255,255,0.15);
    stroke-width: 0.5;
    fill: #3a3a3a !important; /* Gris neutro para lotes sin info, evita el negro total */
}

/* Estados de los lotes - Forzar con !important para sobrepasar estilos internos del SVG */
.lot-figure.for_sale {
    fill: rgba(34, 197, 94, 0.45) !important;
    animation: lotPulse 2s ease-in-out infinite;
    stroke: rgba(34, 197, 94, 0.6) !important;
}

.lot-figure.for_sale:hover {
    fill: rgba(34, 197, 94, 0.8) !important;
    filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.6));
    stroke: rgba(255, 255, 255, 0.9) !important;
    stroke-width: 1.5;
}

.lot-figure.sold {
    fill: rgba(239, 68, 68, 0.2) !important;
    stroke: rgba(239, 68, 68, 0.25) !important;
    cursor: not-allowed;
}

.lot-figure.reserved {
    fill: rgba(234, 179, 8, 0.35) !important;
    stroke: rgba(234, 179, 8, 0.45) !important;
    cursor: default;
}

/* Lote Seleccionado */
.lot-figure.selected-lot {
    fill: #d4af37 !important;
    stroke: #ffffff !important;
    stroke-width: 2 !important;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 1));
    animation: none !important;
    z-index: 50;
}


@keyframes lotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

#map-tooltip {
    transition: opacity 0.15s ease;
}

/* PREMIUM QUOTER */

/* ── Glass Container ── */
.quoter-glass {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.5rem;
    box-shadow:
        0 0 80px rgba(212, 175, 55, 0.04),
        0 32px 64px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
}

/* STEPPER */
.quoter-stepper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 2rem;
}

.stepper-track {
    position: absolute;
    top: 22px;
    left: calc(16.66% + 22px);
    right: calc(16.66% + 22px);
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    z-index: 0;
}

.stepper-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold-bright), var(--color-gold));
    border-radius: 2px;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.stepper-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}

.stepper-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #00332a; /* Fondo sólido igual al sitio para ocultar la línea */
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255,255,255,0.25);
    z-index: 2; /* Asegurar que esté por encima de la línea */
}


.stepper-circle .material-symbols-outlined {
    font-size: 20px;
    transition: color 0.4s ease;
}

.stepper-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.2);
    transition: color 0.4s ease;
    text-align: center;
}

.stepper-step.active .stepper-circle {
    background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold));
    border-color: var(--color-gold-bright);
    color: #00332a;
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
    transform: scale(1.05);
}

.stepper-step.active .stepper-label {
    color: var(--color-gold-bright);
}

.stepper-step.completed .stepper-circle {
    background: #22c55e !important; /* Fondo sólido verde para completado */
    border-color: #22c55e !important;
    color: #00332a !important; /* Icono oscuro sobre fondo verde */
}


.stepper-step.completed .stepper-label {
    color: rgba(34, 197, 94, 0.85);
}

/* SELECT STYLING */
#q_lot {
    width: 100% !important;
    background-color: rgba(0, 51, 42, 0.4) !important;
    color: white !important;
    border: 1px solid rgba(197, 160, 89, 0.3) !important;
    padding: 0.85rem 1.25rem !important;
    padding-right: 3rem !important;
    font-family: var(--font-display) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    border-radius: 0.85rem !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#q_lot::-ms-expand {
    display: none;
}

#q_lot:focus {
    background-color: rgba(212, 175, 55, 0.05) !important;
    border-color: var(--color-gold-bright) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2) !important;
    outline: none !important;
}

#q_lot option {
    background-color: #00261f; /* Menos saturado, mismo que la sección */
    color: white;
    padding: 12px;
    font-family: var(--font-display);
}


/* STEP BADGES */
.step-badge {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(255,255,255,0.25);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.step-badge.active {
    background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold));
    border-color: var(--color-gold-bright);
    color: #00332a;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.step-badge.completed {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

/* CALCULATE BUTTON */
.quoter-btn-calculate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.08);
    cursor: not-allowed;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quoter-btn-calculate:not(:disabled) {
    color: var(--color-gold-bright);
    border-color: var(--color-gold-bright);
    background: rgba(212, 175, 55, 0.06);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.quoter-btn-calculate:not(:disabled):hover {
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-1px);
}

/* PROPORTION BAR */
.proportion-bar {
    display: flex;
    height: 8px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    gap: 2px;
}

.proportion-segment {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.proportion-dp { background: linear-gradient(90deg, #22c55e, #16a34a); }
.proportion-finance { background: linear-gradient(90deg, #3b82f6, #2563eb); }
.proportion-ce { background: linear-gradient(90deg, #a855f7, #9333ea); }
.proportion-extra { background: linear-gradient(90deg, #eab308, #ca8a04); }

.proportion-label {
    display: none; /* Labels via tooltip or inline under the bar */
}

/* RESULT ROWS */
.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.result-row:last-child { border-bottom: none; }

.result-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.result-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.result-value {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-display);
}

/* ── Gold Particles ── */
.gold-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.gold-particles::before,
.gold-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    animation: floatParticle 8s ease-in-out infinite;
}

.gold-particles::before {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.gold-particles::after {
    bottom: 15%;
    right: 8%;
    animation-delay: 4s;
    width: 200px;
    height: 200px;
}

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(30px, -20px) scale(1.15); opacity: 1; }
}

/* ── Step Panel Transitions ── */
.quoter-step-panel {
    transition: opacity 0.3s ease, background 0.3s ease;
}

.quoter-step-panel.step-active {
    background: rgba(212, 175, 55, 0.02);
}

/* ── Plan Cards (Upgraded) ── */
.plan-radio:checked + .plan-label {
    border-color: var(--color-gold-bright) !important;
    background: rgba(212, 175, 55, 0.12) !important;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.15);
    transform: scale(1.02);
}

.plan-label {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.plan-label:hover {
    border-color: rgba(255,255,255,0.2) !important;
    transform: translateY(-1px);
}

/* ── Promotion Highlighting ── */
.plan-promo {
    border-color: rgba(212, 175, 55, 0.4) !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent) !important;
    position: relative;
    overflow: hidden;
}

.plan-promo::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--color-gold-bright);
    border-radius: inherit;
    opacity: 0.3;
    animation: promoPulse 2s ease-in-out infinite;
}

.promo-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-gold-bright);
    color: #00332a;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 8px;
    border-bottom-left-radius: 8px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 10;
}

@keyframes promoPulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.01); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .quoter-stepper {
        gap: 0.5rem;
        padding: 0 1rem;   
    }
    .stepper-track {
        left: calc(16.66% + 16px);
        right: calc(16.66% + 16px);
    }
    .stepper-circle {
        width: 36px;
        height: 36px;
    }
    .stepper-circle .material-symbols-outlined {
        font-size: 16px;
    }
    .stepper-label {
        font-size: 0.5rem;
    }
    .quoter-glass {
        border-radius: 1rem;
    }
}

/* HEADER AND NAVIGATION */
#main-header {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#main-header.scrolled {
    background: rgba(250, 246, 239, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(45, 31, 20, 0.05);
    height: 90px;
    border-bottom: 1px solid rgba(200, 138, 46, 0.1);
}

#main-header.scrolled .nav-link,
#main-header.scrolled .mob-menu {
    color: white !important;
}

.nav-link {
    position: relative;
    letter-spacing: 0.25em;
    font-size: 0.65rem !important;
    font-weight: 800;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
    width: 100%;
}

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

/* MOBILE MENU DRAWER */
#mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #00332a;
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}

#mobile-menu-drawer.active {
    right: 0;
}

#mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-title {
    line-height: 0.95;
    letter-spacing: -0.04em;
}

@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-bg {
    animation: subtleZoom 25s infinite alternate ease-in-out;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

