/* DORADO STYLES */

:root {
    --sienna: #a0522d;
    --sienna-dark: #7a3e22;
    --ocre: #c88a2e;
    --gold: #d4af37;
    --chukum: #faf6ef;
    --chukum-dark: #f0ede6;
    --earth: #3a2a1c;
    --earth-mid: #5c4033;
    --text: #2d1f14;
    --font-display: 'Manrope', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--chukum);
    color: var(--text);
    font-family: var(--font-display);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-weight: 800;
    font-size: 0.65rem;
    color: var(--ocre);
    display: block;
    margin-bottom: 0.75rem;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.text-sienna {
    color: var(--sienna);
}

.text-ocre {
    color: var(--ocre);
}

.text-gold {
    color: var(--gold);
}

.text-earth {
    color: var(--earth);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.fade-up {
    animation: fadeUp .85s cubic-bezier(.22, 1, .36, 1) both;
}

.d1 {
    animation-delay: .15s;
}

.d2 {
    animation-delay: .30s;
}

.d3 {
    animation-delay: .45s;
}

.d4 {
    animation-delay: .60s;
}

.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: 120%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(30, 20, 10, 0.6) 0%, rgba(30, 20, 10, 0) 75%);
    z-index: -1;
    filter: blur(20px);
}

.hero-overlay-vignette {
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 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(45, 31, 20, 0.92) 100%);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* UTILITIES */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* BUTTONS */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: linear-gradient(135deg, var(--ocre), var(--gold));
    color: #fff;
    padding: 1rem 2.4rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(200, 138, 46, .25);
    transition: all .35s ease;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(200, 138, 46, .35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 9999px;
    border: 2px solid var(--ocre);
    color: var(--ocre);
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    background: transparent;
    transition: all .3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--ocre);
    color: #fff;
}

/* CARDS */
.amenity-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    min-height: 380px;
}

.amenity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.amenity-card:hover img {
    transform: scale(1.08);
}

.amenity-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 31, 20, .85) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #fff;
}

/* PILLARS */
.pillar-num {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--ocre), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FORM INPUTS */
.form-input {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: .9rem;
    outline: none;
    transition: border-color .3s, box-shadow .3s;
}

.form-input:focus {
    border-color: var(--ocre);
    box-shadow: 0 0 0 3px rgba(200, 138, 46, .15);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, .3);
}

/* DIVIDERS */
.gold-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* LIGHTBOX */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(45, 31, 20, 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: 1.5rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    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: 3.5rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--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(--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;
    padding: 0 20px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.lightbox-caption h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    margin: 0;
    font-style: italic;
    text-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-caption p {
    font-size: 0.85rem;
    color: white;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-top: 12px;
    font-weight: 700;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 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(--ocre);
    box-shadow: 0 0 15px rgba(200, 138, 46, 0.2);
}

.plan-radio:checked + .plan-label .plan-name {
    color: var(--gold);
}

.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(--gold), var(--ocre));
    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: #1a110a; /* 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(--gold), var(--ocre));
    border-color: var(--gold);
    color: #1a110a;
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
    transform: scale(1.05);
}

.stepper-step.active .stepper-label {
    color: var(--gold);
}

.stepper-step.completed .stepper-circle {
    background: #22c55e !important; /* Fondo sólido verde para completado */
    border-color: #22c55e !important;
    color: #1a110a !important; /* Icono oscuro sobre fondo verde */
}


.stepper-step.completed .stepper-label {
    color: rgba(34, 197, 94, 0.85);
}

/* SELECT STYLING */
#q_lot {
    background-color: rgba(255, 255, 255, 0.03) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-right: 3rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#q_lot:focus {
    background-color: rgba(212, 175, 55, 0.05) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2) !important;
    outline: none !important;
}

#q_lot option {
    background-color: #1a110a; /* Fondo oscuro para el dropdown */
    color: white;
    padding: 12px;
}


/* 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(--gold), var(--ocre));
    border-color: var(--gold);
    color: #1a110a;
    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(--gold);
    border-color: var(--gold);
    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(--gold) !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(--gold);
    border-radius: inherit;
    opacity: 0.3;
    animation: promoPulse 2s ease-in-out infinite;
}

.promo-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: #1a110a;
    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: #2d1f14 !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(--ocre);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--ocre) !important;
    transform: translateY(-1px);
}

/* MOBILE MENU DRAWER */
#mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #1a110a;
    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;
}
