@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@500;700;800&display=swap");

body {
    font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(circle at 10% 10%, #eef7ff 0, #f7f9fc 40%, #f4f6f9 100%);
    color: #17181b;
    line-height: 1.5;
}

.hero-360 {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url("./hero-ovalle.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.72), rgba(0, 58, 116, 0.35));
    backdrop-filter: blur(1px);
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 1rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(8, 14, 26, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    padding: .7rem 1.15rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 0.2rem 0.4rem;
    border-radius: 12px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.brand-mark:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.brand-mark:focus-visible {
    outline: 2px solid rgba(253, 224, 71, 0.85);
    outline-offset: 3px;
}

.brand-mark__lockup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
    gap: 0.12rem;
}

.brand-mark__title {
    font-family: "Outfit", "Inter", system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(110deg, #ffffff 0%, #fef3c7 45%, #fde047 75%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-mark:hover .brand-mark__title {
    animation: brand-shimmer 2.2s ease-in-out infinite;
}

@keyframes brand-shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

@media (prefers-reduced-motion: reduce) {
    .brand-mark:hover .brand-mark__title {
        animation: none;
    }
}

.brand-mark__sub {
    font-family: "Outfit", "Inter", system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.nav-links a {
    color: #f3f4f8;
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    padding: .35rem .65rem;
    border-radius: 999px;
    transition: background-color .2s ease, color .2s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 6rem;
}

.hero-kicker {
    display: inline-block;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    padding: .35rem .9rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .9px;
    margin-bottom: .75rem;
}

.hero-content h1 {
    font-size: clamp(2.1rem, 4.7vw, 4.35rem);
    font-weight: 800;
    max-width: 760px;
    text-wrap: balance;
}

.hero-content p {
    max-width: 720px;
}

.hero-actions {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
}

.hero-mini-stats {
    margin-top: 1.25rem;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.hero-mini-stats div {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    padding: .6rem .8rem;
    min-width: 125px;
}

.hero-mini-stats strong {
    display: block;
    font-size: 1.15rem;
}

.hero-mini-stats span {
    font-size: .82rem;
    color: rgba(255, 255, 255, .88);
}

.section-title {
    font-weight: 800;
    margin-bottom: .35rem;
    letter-spacing: -.2px;
}

.section-subtitle {
    color: #586071;
    max-width: 720px;
    margin-bottom: 1.2rem;
}

.package-card {
    border: 1px solid rgba(20, 37, 76, .08);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(6, 27, 59, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
    background: linear-gradient(180deg, #fff, #fbfcff);
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 36px rgba(6, 27, 59, 0.14);
}

.chip-tag {
    display: inline-block;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: 999px;
    background: #edf3ff;
    color: #224692;
    padding: .26rem .68rem;
    margin-bottom: .65rem;
}

.package-media-wrap {
    aspect-ratio: 16 / 10;
    background: #e9eef7;
    border-bottom: 1px solid rgba(20, 37, 76, .08);
}

.package-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-actions {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.cta-strip {
    background: linear-gradient(90deg, #0d6efd, #0f53bf);
    color: #fff;
    border-radius: 16px;
    padding: 1.2rem 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-strip h3 {
    margin: 0;
    font-size: 1.25rem;
}

.booking-panel {
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(19, 40, 82, .09);
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(13, 37, 88, .1);
    padding: 1.6rem;
    backdrop-filter: blur(3px);
}

.booking-resume-teaser {
    background: rgba(255, 255, 255, .92);
    border: 1px dashed rgba(13, 110, 253, 0.35);
    border-radius: 18px;
    padding: 1.75rem 1.6rem;
    box-shadow: 0 12px 32px rgba(13, 37, 88, .06);
}

.booking-package-summary {
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    border: 1px solid rgba(19, 40, 82, .1);
    border-radius: 14px;
    padding: 1rem 1rem;
    margin-left: 0;
    margin-right: 0;
}

.booking-summary-media {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
    border: 1px solid rgba(19, 40, 82, .08);
}

.booking-summary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.form-control,
.form-select {
    border-radius: 12px;
    border: 1px solid #d6deeb;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, .18);
}

.price-box {
    background: #edf5ff;
    border-left: 4px solid #0d6efd;
    border-radius: 10px;
    padding: .75rem 1rem;
}

.magnetic-btn {
    will-change: transform;
}

.site-footer {
    margin-top: 4rem;
    background: #0f1219;
    color: #a1a1aa;
    padding: 4rem 0 2rem;
    font-size: 0.95rem;
    border-top: 1px solid #1f2332;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 400px;
}

.footer-brand {
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    line-height: 1.6;
    margin: 0;
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-links svg {
    flex-shrink: 0;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #1f2332;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.reveal-up {
    opacity: 0;
    transform: translateY(34px);
}

.detail-shell {
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(19, 40, 82, .09);
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(13, 37, 88, .1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
}

.detail-media {
    min-height: 360px;
    background: #dce4f5;
}

.detail-media-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-content {
    padding: 1.35rem;
}

@media (max-width: 768px) {
    .nav-inner {
        border-radius: 16px;
        padding: .7rem .85rem;
    }

    .brand-mark__title {
        font-size: 0.92rem;
        letter-spacing: 0.03em;
    }

    .brand-mark__sub {
        font-size: 0.6rem;
        letter-spacing: 0.16em;
    }

    .nav-links a {
        font-size: .82rem;
        padding: .26rem .4rem;
    }

    .hero-content {
        padding-top: 5.2rem;
    }

    .cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-shell {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
