:root {
    --navy: #073b4c;
    --teal: #0d5f73;
    --aqua: #42b7c8;
    --sky: #eaf8fb;
    --sand: #f5ead8;
    --gold: #c9984a;
    --ink: #17313a;
    --muted: #667d84;
    --white: #ffffff;
    --red: #e11d2e;
    --shadow: 0 18px 50px rgba(5, 51, 64, .14);
    --radius: 24px;
    --max: 1160px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(var(--max), calc(100% - 36px));
    margin: auto
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(7, 59, 76, .9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.brand {
    display: flex;
    align-items: center;
    min-width: 180px
}

.brand img {
    width: 165px;
    height: auto;
    object-fit: contain
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #dff6fb;
    font-size: 14px;
    font-weight: 650
}

.navlinks a:hover {
    color: #fff
}

.nav-cta {
    background: #24b66d;
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(36, 182, 109, .22)
}

.hero {
    min-height: 820px;
    padding: 130px 0 78px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 41, 52, .88) 0%, rgba(5, 41, 52, .62) 42%, rgba(5, 41, 52, .18) 72%, rgba(5, 41, 52, .05) 100%),
        url('hero.jpg') center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center
}

.hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(to top, #fff, transparent)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 750;
    color: #bfeef5;
    margin-bottom: 18px
}

.eyebrow:before {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--gold)
}

h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(54px, 8vw, 96px);
    line-height: .94;
    letter-spacing: -.035em;
    margin: 0 0 22px
}

.hero-sub {
    font-size: clamp(20px, 2.2vw, 28px);
    max-width: 620px;
    color: #eefbfd;
    margin: 0 0 14px;
    font-weight: 650
}

.hero-copy {
    max-width: 590px;
    font-size: 17px;
    color: #d7edf1;
    margin-bottom: 28px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: .2s ease;
    min-height: 52px
}

.btn-primary {
    background: #24b66d;
    color: #fff;
    box-shadow: 0 14px 30px rgba(36, 182, 109, .28)
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #20a763
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: rgba(255, 255, 255, .08)
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .14)
}

.hero-note {
    margin-top: 18px;
    font-size: 13px;
    color: #c9e3e8
}

section {
    padding: 88px 0
}

.section-head {
    max-width: 760px;
    margin-bottom: 38px
}

.kicker {
    color: var(--teal);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 10px
}

h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.02;
    font-weight: 500;
    margin: 0 0 16px;
    color: var(--navy)
}

.lead {
    font-size: 18px;
    color: var(--muted);
    margin: 0
}

.highlights {
    padding-top: 52px
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.highlight {
    padding: 30px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, #fff 0%, #f5fbfc 100%);
    box-shadow: var(--shadow);
    border: 1px solid #e2f0f2;
    min-height: 220px
}

.highlight strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 12px
}

.highlight h3 {
    font-size: 19px;
    margin: 0 0 8px;
    color: var(--navy)
}

.highlight p {
    margin: 0;
    color: var(--muted)
}

.experience {
    background: linear-gradient(180deg, var(--sky), #fff)
}

.story-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: stretch
}

.story-photo {
    border-radius: 32px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: var(--shadow);
    background: url('rascacielo.jpg') 50% 75%/cover no-repeat
}

.story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 6px
}

.story-copy p {
    color: var(--muted);
    font-size: 18px;
    margin: 0 0 18px
}

.quote {
    margin-top: 14px;
    padding: 24px 26px;
    border-left: 4px solid var(--gold);
    background: #fff;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 12px 32px rgba(7, 59, 76, .08);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    color: var(--navy)
}

.includes {
    background: #fff
}

.include-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
    max-width: 900px
}

.include-item {
    padding: 18px 0;
    border-bottom: 1px solid #e7eff1;
    font-weight: 650;
    color: #284852
}

.include-item span {
    color: var(--teal);
    font-weight: 900;
    margin-right: 9px
}

.prices {
    background: linear-gradient(135deg, #073b4c 0%, #0d5f73 68%, #16849a 100%);
    color: #fff
}

.prices h2,
.prices .kicker {
    color: #fff
}

.prices .lead {
    color: #d7eef2
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px
}

.price-card {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(7px)
}

.price-card .occ {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 12px;
    font-weight: 800;
    color: #bde7ed
}

.price-card .amount {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 43px;
    margin: 8px 0 2px
}

.price-card .small {
    font-size: 13px;
    color: #d7eef2;
    margin-bottom: 18px
}

.price-card .hotel5 {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    font-weight: 700
}

.prices .fine {
    font-size: 12px;
    color: #c6e1e6;
    margin-top: 22px;
    max-width: 900px
}

.cta {
    padding: 84px 0;
    background: linear-gradient(120deg, var(--sand), #fff 56%, #eaf8fb)
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    padding: 42px;
    box-shadow: var(--shadow);
    border: 1px solid #eaf0f1
}

.cta h2 {
    font-size: clamp(34px, 4vw, 54px);
    margin-bottom: 10px
}

.cta p {
    margin: 0;
    color: var(--muted);
    font-size: 17px
}

footer {
    background: #062f3d;
    color: #cae5e9;
    padding: 42px 0 30px
}

.foot {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: center
}

.foot img {
    width: 160px
}

.contact {
    text-align: right;
    font-size: 14px;
    line-height: 1.9
}

.legal {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 12px;
    color: #9cc4cb
}

.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #24b66d;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
    border: 3px solid #fff
}

.wa-float:hover {
    transform: translateY(-2px)
}

@media(max-width:900px) {
    .navlinks a:not(.nav-cta) {
        display: none
    }

    .hero {
        min-height: 760px;
        background-position: 62% center
    }

    .highlight-grid,
    .price-grid {
        grid-template-columns: 1fr
    }

    .story-grid {
        grid-template-columns: 1fr
    }

    .story-photo {
        min-height: 420px
    }

    .include-grid {
        grid-template-columns: 1fr
    }

    .cta-box {
        grid-template-columns: 1fr
    }

    .foot {
        grid-template-columns: 1fr
    }

    .contact {
        text-align: left
    }
}

@media(max-width:560px) {
    .container {
        width: min(var(--max), calc(100% - 24px))
    }

    .nav {
        height: 70px
    }

    .brand img {
        width: 135px
    }

    .nav-cta {
        padding: 10px 14px;
        font-size: 13px
    }

    .hero {
        padding-top: 110px;
        min-height: 710px;
        background-position: 64% center
    }

    h1 {
        font-size: 55px
    }

    .hero-sub {
        font-size: 21px
    }

    section {
        padding: 68px 0
    }

    .highlight,
    .price-card {
        padding: 24px
    }

    .cta-box {
        padding: 28px 22px
    }
}