:root {
    --background: #fff;
    --foreground: #061B33;
    --card: #f7fafc;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --primary: #00CFEA;
    --primary-foreground: #061B33;
    --secondary: #002B4E;
    --accent: #FFD43B;
    --accent-foreground: #061B33;
    --border: #e2e8f0;
    --shadow: 0 18px 45px rgba(6, 27, 51, .14);
    --radius: 1rem
}

html.dark {
    --background: #001426;
    --foreground: #fff;
    --card: #001B36;
    --muted: #12233b;
    --muted-foreground: #a7b3c5;
    --primary: #77E83F;
    --primary-foreground: #001426;
    --secondary: #001B36;
    --accent: #FFD21F;
    --accent-foreground: #001426;
    --border: #22324c;
    --shadow: 0 22px 55px rgba(0, 0, 0, .35)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--background);
    color: var(--foreground);
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(100% - 32px, 1400px);
    margin-inline: auto
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    background: #002B4E;
    color: #fff;
    z-index: 40;
    transition: .3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    padding: 20px 0
}

.site-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .2)
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px
}

.brand,
.footer-brand {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand span,
.footer-brand span {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .03em
}

.brand small,
.footer-brand small {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    margin-top: 5px
}

.desktop-nav {
    display: flex;
    gap: 32px;
    align-items: center
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    position: relative;
    transition: .25s
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: .25s
}

.desktop-nav a:hover {
    color: var(--primary)
}

.desktop-nav a:hover::after {
    width: 100%
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px
}

.mobile-actions {
    display: none;
    align-items: center;
    gap: 12px
}

.theme-toggle,
.menu-toggle {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary) 14%, transparent);
    color: var(--primary);
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: grid;
    place-items: center;
    transition: .25s
}

.theme-toggle:hover,
.menu-toggle:hover {
    background: color-mix(in srgb, var(--primary) 24%, transparent)
}

.menu-toggle {
    color: #fff;
    background: transparent;
    font-size: 30px
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #002B4E;
    z-index: 39;
    transform: translateX(100%);
    transition: transform .3s ease;
    padding: 112px 24px 32px;
    overflow-y: auto
}

.mobile-menu.open {
    transform: translateX(0)
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 28px
}

.mobile-menu a {
    font-size: 28px;
    font-weight: 800;
    color: #fff
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    font: 700 15px/1 Montserrat, sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .25s ease;
    min-height: 44px
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground)
}

.btn-accent {
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 18px;
    padding: 18px 32px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .18)
}

.btn-lg {
    font-size: 18px;
    padding: 18px 32px
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 18px 32px;
    font-size: 18px
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground)
}

.btn-soft {
    width: 100%;
    background: color-mix(in srgb, var(--primary) 10%, transparent);
    color: var(--primary)
}

.btn-soft:hover {
    background: var(--primary);
    color: var(--primary-foreground)
}

.round-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .22)
}

.hero {
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--secondary)
}

.hero-bg,
.hero-bg img,
.hero-overlay {
    position: absolute;
    inset: 0
}

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

.hero-overlay {
    background: linear-gradient(90deg, rgba(0, 43, 78, .86), rgba(0, 43, 78, .4));
    mix-blend-mode: multiply
}

.dark .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 20, 38, .95), rgba(0, 20, 38, .6))
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-block: 96px
}

.hero-copy {
    color: #fff;
    max-width: 600px
}

.hero-copy h1 {
    font-size: clamp(48px, 7vw, 88px);
    line-height: 1.05;
    letter-spacing: -.04em;
    margin: 0 0 24px;
    font-weight: 800
}

.hero-copy h1 span {
    display: block
}

.hero-copy h1 span:nth-child(3) {
    color: var(--primary);
    font-style: italic
}

.hero-copy p {
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.7;
    color: rgba(255, 255, 255, .82);
    max-width: 530px;
    margin: 0
}

.hero-buttons {
    padding-top: 28px
}

.traveler-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 34px
}

.avatars {
    display: flex
}

.avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #002B4E;
    object-fit: cover;
    margin-left: -12px;
    background: #fff
}

.avatars img:first-child {
    margin-left: 0
}

.stars {
    color: var(--accent);
    letter-spacing: 2px;
    font-size: 16px
}

.traveler-proof p {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    margin: 4px 0 0
}

.hero-visual {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center
}

.orbit {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .25);
    box-shadow: var(--shadow);
    animation: spin 60s linear infinite;
    display: grid;
    place-items: center
}

.dark .orbit {
    background: rgba(0, 27, 54, .82);
    border-color: rgba(119, 232, 63, .32)
}

.transport {
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 27px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18)
}

.transport.top {
    top: -29px;
    background: var(--primary);
    color: var(--primary-foreground)
}

.transport.bottom {
    bottom: -29px;
    background: var(--accent);
    color: var(--accent-foreground)
}

.transport.left {
    left: -29px;
    background: #fff;
    color: #002B4E
}

.transport.right {
    right: -29px;
    background: #fff;
    color: #002B4E
}

.inner-orbit {
    width: 256px;
    height: 256px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .24);
    display: grid;
    place-items: center;
    position: relative
}

.inner-orbit::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 25%, transparent);
    filter: blur(30px)
}

.pin {
    position: relative;
    z-index: 1;
    font-size: 66px;
    color: #fff;
    animation: bounce 1.2s infinite
}

.benefits-card {
    position: relative;
    z-index: 5;
    margin-top: -92px
}

.benefits-shell {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 8px 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.dark .benefits-shell {
    background: rgba(0, 27, 54, .92);
    border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
    backdrop-filter: blur(16px)
}

.benefit-item {
    text-align: center;
    padding: 30px 24px;
    border-right: 1px solid #f0f2f5
}

.benefit-item:last-child {
    border-right: 0
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 10%, transparent);
    color: var(--primary);
    font-size: 25px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    transition: .3s
}

.benefit-item:hover .icon-circle {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1)
}

.dark .benefit-item:hover .icon-circle {
    color: #001B36
}

.benefit-item h3 {
    margin: 0 0 9px;
    color: #061B33;
    font-size: 18px
}

.dark .benefit-item h3 {
    color: #fff
}

.benefit-item p {
    margin: 0;
    color: #64748b;
    font-size: 14px
}

.dark .benefit-item p {
    color: #d1d5db
}

.destinations {
    padding: 96px 0;
    background: #fff;
    position: relative;
    overflow: hidden
}

.dark .destinations {
    background: #001B36
}

.section-heading {
    text-align: center;
    position: relative;
    margin-bottom: 64px
}

.section-heading p {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .12em;
    margin: 0 0 10px
}

.section-heading h2 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    margin: 0;
    color: #061B33;
    font-weight: 800
}

.dark .section-heading h2 {
    color: #fff
}

.dash-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(100%, 680px);
    border-top: 2px dashed #e5e7eb;
    z-index: 0
}

.dark .dash-line {
    border-color: #1f2937
}

.plane-mark {
    position: absolute;
    right: 25%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: color-mix(in srgb, var(--primary) 30%, transparent)
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px
}

.destination-card {
    border-radius: 24px;
    overflow: hidden;
    background: var(--card);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    border: 1px solid transparent;
    transition: .3s;
    display: flex;
    flex-direction: column
}

.destination-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--primary) 50%, transparent);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .16)
}

.destination-img {
    height: 256px;
    position: relative;
    overflow: hidden
}

.destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease
}

.destination-card:hover .destination-img img {
    transform: scale(1.1)
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .82), rgba(0, 0, 0, .32), transparent)
}

.price {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    color: #061B33;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .18)
}

.dark .price {
    background: var(--accent)
}

.price small {
    font-weight: 400;
    font-size: 11px
}

.dest-title {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    color: #fff
}

.dest-title p {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px
}

.dest-title h3 {
    margin: 0;
    font-size: 26px
}

.destination-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.destination-content p {
    margin: 0 0 24px;
    color: var(--muted-foreground);
    font-size: 14px
}

.center {
    text-align: center;
    margin-top: 64px
}

.promo {
    padding-block: 64px
}

.promo-panel {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(90deg, #002B4E, #004a82);
    box-shadow: 0 25px 65px rgba(0, 0, 0, .22);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px;
    padding: 48px
}

.dark .promo-panel {
    background: linear-gradient(90deg, #001426, #001B36)
}

.glow-one,
.glow-two {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(55px);
    pointer-events: none
}

.glow-one {
    top: -130px;
    right: -120px;
    background: color-mix(in srgb, var(--primary) 20%, transparent)
}

.glow-two {
    bottom: -130px;
    left: -120px;
    background: rgba(255, 210, 31, .1)
}

.promo-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    order: 1
}

.promo-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, .12);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.dashed-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 390px;
    height: 390px;
    color: color-mix(in srgb, var(--primary) 30%, transparent);
    animation: spinReverse 40s linear infinite
}

.floating-plane {
    position: absolute;
    top: 0;
    right: 18%;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    font-size: 26px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .2);
    animation: bounce 1.2s infinite;
    z-index: 3
}

.promo-copy {
    position: relative;
    z-index: 2;
    order: 2
}

.promo-copy h2 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    margin: 0;
    color: #fff;
    font-weight: 800
}

.promo-copy h2 span {
    color: var(--primary);
    font-style: italic
}

.promo-copy p {
    color: rgba(255, 255, 255, .82);
    font-size: 19px;
    line-height: 1.65;
    max-width: 480px
}

.benefits-bar {
    background: #F7FAFC;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 48px 0
}

.dark .benefits-bar {
    background: #001B36;
    border-color: #1f2937
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px
}

.mini-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    padding-inline: 16px;
    border-right: 1px solid #d1d5db
}

.mini-benefit:last-child {
    border-right: 0
}

.dark .mini-benefit {
    border-color: #374151
}

.mini-benefit>span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--primary) 10%, transparent);
    color: var(--primary);
    font-size: 22px;
    flex: 0 0 auto
}

.mini-benefit div {
    display: flex;
    flex-direction: column;
    font-size: 14px
}

.mini-benefit strong {
    font-weight: 700
}

.mini-benefit small {
    color: var(--muted-foreground);
    font-size: 14px
}

.footer {
    background: #002B4E;
    color: #fff;
    padding: 64px 0 32px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .8fr .9fr 1.1fr;
    gap: 48px;
    margin-bottom: 48px
}

.footer p {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.7;
    max-width: 330px
}

.socials {
    display: flex;
    gap: 16px;
    margin-top: 18px
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: grid;
    place-items: center;
    font-weight: 800;
    transition: .25s
}

.socials a:hover {
    background: var(--primary);
    color: #002B4E
}

.footer h4 {
    font-size: 18px;
    margin: 0 0 24px
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px
}

.footer li a {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    transition: .2s
}

.footer li a:hover {
    color: var(--primary)
}

.newsletter {
    display: flex;
    gap: 8px
}

.newsletter input {
    min-width: 0;
    flex: 1;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 10px;
    color: #fff;
    padding: 12px 14px;
    font-family: inherit
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, .52)
}

.newsletter button {
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: #002B4E;
    width: 46px;
    font-weight: 800;
    cursor: pointer
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, .6);
    font-size: 14px
}

.footer-bottom p {
    margin: 0;
    max-width: none
}

.footer-bottom div {
    display: flex;
    gap: 24px
}

.footer-bottom a:hover {
    color: #fff
}

.whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
    transition: .25s;
    animation: popIn .5s ease 1s both
}

.whatsapp:hover {
    transform: scale(1.1)
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 18px
}

.modal.open {
    display: flex
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .62);
    backdrop-filter: blur(4px)
}

.modal-card {
    position: relative;
    background: var(--background);
    color: var(--foreground);
    width: min(100%, 500px);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    border: 1px solid var(--border);
    animation: modalIn .22s ease
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: 0;
    background: transparent;
    color: var(--foreground);
    font-size: 30px;
    cursor: pointer
}

.modal-card h2 {
    font-size: 26px;
    margin: 0 0 8px
}

.modal-desc {
    margin: 0 0 20px;
    color: var(--muted-foreground);
    line-height: 1.55
}

.modal-form {
    display: grid;
    gap: 16px
}

.modal-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
    font-size: 14px
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--foreground);
    border-radius: 10px;
    padding: 12px 13px;
    font: 500 15px Montserrat, sans-serif;
    outline: none
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 22%, transparent)
}

.modal-form textarea {
    min-height: 96px;
    resize: vertical
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.full {
    width: 100%
}

.summary {
    background: var(--muted);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 18px;
    display: grid;
    gap: 12px
}

.summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.summary span {
    color: var(--muted-foreground);
    font-weight: 600
}

.primary-text {
    color: var(--primary);
    font-size: 19px
}

.mercado {
    background: #009EE3;
    color: #fff
}

.mercado:hover {
    background: #0089C4
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 120px);
    background: var(--foreground);
    color: var(--background);
    border-radius: 999px;
    padding: 13px 20px;
    z-index: 120;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
    font-weight: 700;
    transition: .3s;
    max-width: min(92vw, 620px);
    text-align: center
}

.toast.show {
    transform: translate(-50%, 0)
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes spinReverse {
    to {
        transform: translate(-50%, -50%) rotate(-360deg)
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.97)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media (max-width:1100px) {

    .desktop-nav,
    .nav-actions {
        display: none
    }

    .mobile-actions {
        display: flex
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-visual {
        display: none
    }

    .destination-grid,
    .benefits-shell,
    .mini-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .benefit-item:nth-child(2) {
        border-right: 0
    }

    .benefit-item:nth-child(n+3) {
        border-top: 1px solid #f0f2f5
    }

    .promo-panel {
        grid-template-columns: 1fr;
        text-align: center
    }

    .promo-image-wrap {
        order: 2
    }

    .promo-copy {
        order: 1
    }

    .promo-copy p {
        margin-inline: auto
    }

    .footer-grid {
        gap: 36px
    }
}

@media (max-width:700px) {
    .container {
        width: min(100% - 24px, 1400px)
    }

    .site-header {
        padding: 14px 0
    }

    .brand span {
        font-size: 17px
    }

    .brand small {
        font-size: 10px
    }

    .hero {
        align-items: flex-start
    }

    .hero-grid {
        padding-top: 86px;
        padding-bottom: 120px
    }

    .hero-copy h1 {
        font-size: 46px
    }

    .traveler-proof {
        align-items: flex-start
    }

    .benefits-card {
        margin-top: -76px
    }

    .benefits-shell,
    .destination-grid,
    .mini-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .benefit-item {
        border-right: 0 !important;
        border-top: 1px solid #f0f2f5
    }

    .benefit-item:first-child {
        border-top: 0
    }

    .section-heading {
        margin-bottom: 42px
    }

    .dash-line,
    .plane-mark {
        display: none
    }

    .destinations {
        padding: 76px 0
    }

    .promo {
        padding-block: 48px
    }

    .promo-panel {
        padding: 30px 20px;
        border-radius: 24px
    }

    .promo-image {
        width: 240px;
        height: 240px
    }

    .dashed-circle {
        width: 300px;
        height: 300px
    }

    .floating-plane {
        right: 5%;
        width: 46px;
        height: 46px
    }

    .mini-benefit {
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid #d1d5db;
        padding-bottom: 20px
    }

    .mini-benefit:last-child {
        border-bottom: 0
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 10px
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .modal-card {
        padding: 24px 18px
    }

    .mobile-menu a {
        font-size: 25px
    }

    .btn-lg,
    .btn-accent,
    .btn-outline {
        width: 100%
    }
}

/* Checkout / resumen de compra */
.modal-card-wide {
    width: min(100%, 860px)
}

.checkout-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 22px;
    align-items: start
}

.purchase-summary {
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 10%, transparent), var(--muted));
    border: 1px solid color-mix(in srgb, var(--primary) 28%, var(--border));
    border-radius: 18px;
    padding: 18px;
    position: sticky;
    top: 0
}

.summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px
}

.summary-header span {
    color: var(--muted-foreground);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.summary-header strong {
    font-size: 14px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 10px
}

.secure-note {
    margin: 14px 0 0;
    color: var(--muted-foreground);
    font-size: 13px;
    line-height: 1.55
}

.secure-note i {
    color: var(--primary);
    margin-right: 6px
}

.checkout-actions {
    display: grid;
    gap: 10px
}

.whatsapp-outline {
    background: #25D366;
    color: #fff
}

.whatsapp-outline:hover {
    background: #1fb85a;
    color: #fff
}

@media (max-width:800px) {
    .checkout-grid {
        grid-template-columns: 1fr
    }

    .purchase-summary {
        position: relative
    }

    .modal-card-wide {
        width: min(100%, 540px)
    }
}

/* Página posterior al pago */
.success-page {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: radial-gradient(circle at top, color-mix(in srgb, var(--primary) 18%, transparent), transparent 36%), var(--background)
}

.success-card {
    width: min(100%, 560px);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 34px;
    text-align: center
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    background: color-mix(in srgb, #25D366 16%, transparent);
    color: #25D366;
    font-size: 36px
}

.success-card h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 6vw, 42px);
    color: var(--foreground)
}

.success-card p {
    margin: 0 0 20px;
    color: var(--muted-foreground);
    line-height: 1.65
}

.success-card .summary {
    text-align: left;
    margin-bottom: 16px
}

.success-card .btn {
    margin-top: 10px
}

/* Nuevos apartados: reservas, cotizador, catálogo y reseñas */
.booking-section,
.quote-builder-section,
.catalog-section,
.reviews-section {
    padding: 96px 0;
    background: var(--background)
}

.booking-section,
.catalog-section {
    background: linear-gradient(180deg, var(--background), var(--card))
}

.section-heading-left {
    text-align: left;
    margin: 0
}

.section-heading-left .dash-line {
    margin-left: 0
}

.section-copy {
    max-width: 520px;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-top: 16px !important
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.package-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .25s
}

.package-card:hover {
    transform: translateY(-8px)
}

.package-media {
    position: relative;
    height: 230px;
    overflow: hidden
}

.package-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s
}

.package-card:hover .package-media img {
    transform: scale(1.06)
}

.package-media span {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 800;
    font-size: 12px;
    border-radius: 999px;
    padding: 8px 12px
}

.package-body {
    padding: 24px
}

.eyebrow {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    margin: 0 0 8px
}

.package-body h3,
.catalog-card h3,
.builder-preview h3,
.reviews-copy h2 {
    margin: 0 0 10px;
    font-size: 24px
}

.package-body p,
.catalog-card p,
.reviews-copy p,
.review-card p {
    color: var(--muted-foreground);
    line-height: 1.65
}

.package-body ul {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: grid;
    gap: 9px;
    color: var(--foreground);
    font-weight: 600
}

.package-body li i {
    color: var(--primary);
    margin-right: 8px
}

.package-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 20px
}

.package-bottom strong {
    font-size: 20px;
    color: var(--primary)
}

.package-bottom .btn {
    width: auto;
    min-width: 128px
}

.quote-builder-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr .9fr;
    gap: 28px;
    align-items: start
}

.builder-card,
.builder-preview,
.review-form,
.review-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow)
}

.builder-card {
    padding: 24px
}

.builder-form {
    display: grid;
    gap: 16px
}

.builder-form label {
    display: grid;
    gap: 8px;
    font-weight: 700
}

.builder-form input,
.builder-form select,
.builder-form textarea,
.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--foreground);
    border-radius: 12px;
    padding: 13px 14px;
    font: 500 15px Montserrat, sans-serif;
    outline: none
}

.builder-form textarea,
.review-form textarea {
    min-height: 92px;
    resize: vertical
}

.extras-box {
    background: var(--muted);
    border-radius: 16px;
    padding: 16px;
    display: grid;
    gap: 10px
}

.extras-box strong {
    margin-bottom: 4px
}

.extras-box label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600
}

.extras-box input {
    width: auto
}

.builder-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.builder-preview {
    padding: 24px;
    position: sticky;
    top: 96px
}

.preview-badge {
    display: inline-flex;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    color: var(--primary);
    font-weight: 800;
    padding: 8px 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.catalog-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.catalog-card img {
    height: 220px;
    width: 100%;
    object-fit: cover
}

.catalog-card div {
    padding: 22px
}

.catalog-card strong {
    color: var(--primary);
    font-size: 19px
}

.reviews-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 34px;
    align-items: start
}

.reviews-copy {
    position: sticky;
    top: 96px
}

.review-form {
    padding: 20px;
    margin-top: 22px;
    display: grid;
    gap: 12px
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.review-card {
    padding: 22px
}

.review-card .stars {
    color: #FFD43B;
    margin-bottom: 12px
}

.review-card strong {
    display: block;
    margin-top: 14px
}

.review-card small {
    color: var(--muted-foreground)
}

@media (max-width:1100px) {

    .package-grid,
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .quote-builder-grid,
    .reviews-layout {
        grid-template-columns: 1fr
    }

    .builder-preview,
    .reviews-copy {
        position: relative;
        top: auto
    }
}

@media (max-width:700px) {

    .booking-section,
    .quote-builder-section,
    .catalog-section,
    .reviews-section {
        padding: 70px 0
    }

    .package-grid,
    .catalog-grid,
    .reviews-grid {
        grid-template-columns: 1fr
    }

    .package-bottom,
    .builder-actions {
        grid-template-columns: 1fr;
        display: grid
    }

    .package-bottom .btn {
        width: 100%
    }

    .section-heading-left {
        text-align: center
    }

    .section-heading-left .dash-line {
        margin-left: auto
    }
}


/* Correcciones visuales solicitadas */
.orbit {
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .34);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .24), inset 0 0 0 1px rgba(255, 255, 255, .12)
}

.dark .orbit {
    background: rgba(0, 27, 54, .38)
}

.inner-orbit {
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04) 62%, transparent 63%)
}

.inner-orbit::before {
    width: 190px;
    height: 190px;
    background: color-mix(in srgb, var(--primary) 22%, transparent);
    filter: blur(24px)
}

.globe-center {
    position: relative;
    z-index: 2;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    animation: counterSpin 60s linear infinite;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .24))
}

.globe-center img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.pin {
    display: none
}

.section-heading {
    isolation: isolate
}

.dash-line {
    position: static;
    display: block;
    transform: none;
    width: 92px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 18px auto 0;
    opacity: .95;
    z-index: 1
}

.dark .dash-line {
    border: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: .9
}

.plane-mark {
    position: static;
    display: inline-grid;
    margin-top: 12px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    place-items: center;
    color: var(--primary);
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    transform: none
}

.destinations-page {
    padding: 150px 0 96px;
    background: var(--background);
    position: relative;
    overflow: hidden
}

.destinations-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 15%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 34%), radial-gradient(circle at 85% 5%, rgba(255, 212, 59, .12), transparent 32%);
    pointer-events: none
}

.destinations-page .container {
    position: relative;
    z-index: 1
}

.destinations-hero {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 56px
}

.destinations-hero p {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 10px
}

.destinations-hero h1 {
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1.05;
    margin: 0 0 18px;
    font-weight: 800
}

.destinations-hero .lead {
    color: var(--muted-foreground);
    font-size: 19px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 680px;
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0
}

.destinations-page .destination-grid {
    margin-top: 22px
}

.back-home {
    margin-top: 54px;
    text-align: center
}

@keyframes counterSpin {
    to {
        transform: rotate(-360deg)
    }
}

@media (max-width:700px) {
    .destinations-page {
        padding-top: 120px
    }

    .globe-center {
        width: 155px;
        height: 155px
    }

    .inner-orbit {
        width: 210px;
        height: 210px
    }
}


/* Cambios Destino Aventuras */
.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px
}

.brand-logo img {
    width: clamp(118px, 11vw, 168px);
    height: auto;
    max-height: 58px;
    object-fit: contain
}

.footer-brand.brand-logo {
    align-items: flex-start;
    margin-bottom: 18px
}

.footer-brand.brand-logo img {
    width: 170px;
    max-height: 72px
}

.destination-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: -34px auto 38px;
    position: relative;
    z-index: 2
}

.destination-filter {
    border: 1px solid color-mix(in srgb, var(--primary) 42%, var(--border));
    background: var(--card);
    color: var(--foreground);
    border-radius: 999px;
    padding: 10px 18px;
    font: 700 14px/1 Montserrat, sans-serif;
    cursor: pointer;
    transition: .25s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06)
}

.destination-filter:hover,
.destination-filter.active {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px)
}

.destination-card.is-hidden {
    display: none
}

.reviews-note {
    display: block;
    margin: 10px 0 16px;
    color: var(--muted-foreground);
    font-size: 13px;
    line-height: 1.5
}

.review-form-status {
    min-height: 18px;
    margin-top: 10px;
    color: var(--muted-foreground);
    font-size: 13px
}

@media (max-width:768px) {
    .brand-logo img {
        width: 116px
    }

    .destination-filters {
        margin-top: -24px
    }

    .destination-filter {
        font-size: 13px;
        padding: 9px 13px
    }
}


/* Ajustes solicitados: sección servicios, fondo de playa y logo destacado */
.hero-bg img {
    filter: saturate(1.08) contrast(1.03)
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(0, 43, 78, .78), rgba(0, 43, 78, .28));
    mix-blend-mode: multiply
}

.brand-logo img {
    width: clamp(150px, 13vw, 220px);
    max-height: 82px;
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, .95)) drop-shadow(0 8px 18px rgba(255, 255, 255, .35))
}

.site-header.scrolled .brand-logo img {
    width: clamp(138px, 11vw, 190px);
    max-height: 72px
}

.footer-brand.brand-logo img {
    width: 220px;
    max-height: 92px;
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, .85))
}

.catalog-grid {
    grid-template-columns: repeat(4, 1fr)
}

.catalog-card {
    height: 100%
}

.catalog-card div {
    display: flex;
    flex-direction: column;
    height: calc(100% - 220px)
}

.catalog-card p:last-child {
    margin-bottom: 0
}

@media (max-width:1100px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:700px) {
    .catalog-grid {
        grid-template-columns: 1fr
    }

    .brand-logo img {
        width: 140px;
        max-height: 66px
    }

    .site-header.scrolled .brand-logo img {
        width: 128px
    }

    .footer-brand.brand-logo img {
        width: 190px
    }
}
/* Iframes de viajes integrados conservando la estética del sitio */
.travel-iframe-section .section-heading {
    margin-bottom: 46px;
}

.iframe-showcase {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.iframe-showcase::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 2;
}

.iframe-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 26px 28px 20px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 8%, transparent), transparent);
}

.iframe-showcase-header h3 {
    margin: 0;
    font-size: clamp(22px, 3vw, 32px);
    color: var(--foreground);
}

.iframe-showcase-header span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 800;
    font-size: 13px;
    border-radius: 999px;
    padding: 10px 14px;
    box-shadow: 0 12px 24px color-mix(in srgb, var(--primary) 26%, transparent);
}

.travel-iframe-wrapper {
    width: 100%;
    height: 900px;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid var(--border);
}

.travel-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.iframe-packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}

.mega-travel-frame {
    height: 920px;
}

@media (max-width:700px) {
    .iframe-showcase-header {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px 20px 18px;
    }

    .iframe-showcase-header span {
        white-space: normal;
    }

    .travel-iframe-wrapper,
    .mega-travel-frame {
        height: 760px;
    }
}

/* Menú de filtros para Ofertas especiales de Mega Travel */
.mega-heading {
    margin-bottom: 72px !important;
}

.mega-travel-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: -48px auto 34px;
    position: relative;
    z-index: 3;
}

.mega-filter {
    border: 1px solid color-mix(in srgb, var(--primary) 42%, var(--border));
    background: var(--card);
    color: var(--foreground);
    border-radius: 999px;
    padding: 10px 22px;
    min-width: 82px;
    font: 800 14px/1 Montserrat, sans-serif;
    cursor: pointer;
    transition: .25s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.mega-filter:hover,
.mega-filter.active {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px color-mix(in srgb, var(--primary) 26%, transparent);
}

.mega-offers-showcase {
    margin-top: 8px;
}

.mega-current-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 auto 18px;
    padding: 10px 18px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary) 10%, var(--card));
    color: var(--muted-foreground);
    font: 700 14px/1.2 Montserrat, sans-serif;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

.mega-current-filter strong {
    color: var(--foreground);
}

.mega-offers-showcase {
    text-align: center;
}

.mega-travel-frame {
    position: relative;
    overflow: hidden;
}

.mega-frame-loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: color-mix(in srgb, var(--background) 86%, transparent);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease;
}

.mega-frame-loader.show,
.mega-offers-showcase.is-loading .mega-frame-loader {
    opacity: 1;
    visibility: visible;
}

.mega-frame-loader span {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 4px solid color-mix(in srgb, var(--primary) 22%, transparent);
    border-top-color: var(--primary);
    animation: megaSpin .8s linear infinite;
}

.mega-frame-loader p {
    margin: 0;
    font-weight: 800;
    color: var(--foreground);
}

@keyframes megaSpin {
    to { transform: rotate(360deg); }
}

@media (max-width:700px) {
    .mega-heading {
        margin-bottom: 54px !important;
    }

    .mega-travel-filters {
        gap: 10px;
        margin: -34px auto 26px;
    }

    .mega-filter {
        min-width: auto;
        padding: 10px 16px;
        font-size: 13px;
    }
}
