/* ==========================================================================
   Base theme and design tokens
   ========================================================================== */

:root {
    --ocean-950: #062b3d;
    --ocean-900: #0b3f57;
    --ocean-800: #0b4f6a;
    --ocean-700: #0c6281;
    --ocean-600: #127a9a;
    --sky-600: #0ea5e9;
    --sky-500: #38bdf8;
    --sand-50: #faf7f1;
    --sand-100: #f4eee4;
    --sand-200: #e7dccb;
    --ink: #0f172a;
    --muted: #526074;
    --line: rgba(15, 23, 42, 0.12);
    --card: rgba(255, 255, 255, 0.82);
    --card-strong: rgba(255, 255, 255, 0.94);
    --shadow-lg: 0 22px 60px rgba(15, 23, 42, 0.16);
    --shadow-md: 0 14px 35px rgba(15, 23, 42, 0.1);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --site-width: 1220px;
    --nav-height: 88px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    font-family:
        'Plus Jakarta Sans',
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.11), transparent 25%),
        radial-gradient(circle at top right, rgba(11, 79, 106, 0.14), transparent 32%), linear-gradient(180deg, #ffffff 0%, #faf8f3 48%, #f4efe5 100%);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.06), transparent 18%),
        radial-gradient(circle at 80% 10%, rgba(11, 79, 106, 0.08), transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(247, 234, 208, 0.2), transparent 22%);
    z-index: -1;
}

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

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

button {
    font: inherit;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ==========================================================================
   Shared layout and utility classes
   ========================================================================== */

.site-container {
    width: min(var(--site-width), calc(100% - 2rem));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 7.5rem 0;
}

.section-sand {
    background:
        linear-gradient(180deg, rgba(244, 238, 228, 0.55), rgba(250, 247, 241, 0.95)),
        linear-gradient(90deg, rgba(11, 79, 106, 0.04), transparent 18%, transparent 82%, rgba(31, 157, 115, 0.05));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(11, 79, 106, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--ocean-800);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.section-heading {
    display: grid;
    gap: 1rem;
    max-width: 760px;
    margin-bottom: 2.8rem;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    color: var(--ocean-950);
}

.section-heading p {
    max-width: 700px;
    color: var(--muted);
    font-size: 1.05rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 52px;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

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

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--ocean-700), var(--sky-600));
    box-shadow: 0 14px 30px rgba(11, 79, 106, 0.24);
}

.btn-secondary {
    color: var(--ocean-950);
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(11, 79, 106, 0.14);
}

.btn-ghost {
    color: var(--ocean-950);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost--light {
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.btn-block {
    width: 100%;
}

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

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 600ms ease,
        transform 600ms ease,
        filter 600ms ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 60;
    padding: 1rem 0;
    transition:
        background-color 240ms ease,
        box-shadow 240ms ease,
        border-color 240ms ease,
        backdrop-filter 240ms ease;
}

.site-nav.scrolled {
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(22px);
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--ocean-800), var(--sky-600));
    box-shadow: 0 12px 25px rgba(11, 79, 106, 0.25);
    flex-shrink: 0;
}

.brand-mark svg {
    width: 1.65rem;
    height: 1.65rem;
}

.brand-copy {
    display: grid;
    gap: 0.15rem;
}

.brand-copy strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ocean-950);
    letter-spacing: -0.02em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-links a {
    position: relative;
    color: var(--ocean-950);
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 180ms ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ocean-700), var(--sky-500));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.nav-links a:hover {
    color: var(--ocean-700);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta {
    min-height: 46px;
    padding-inline: 1.1rem;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.34rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(11, 79, 106, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.nav-toggle span {
    width: 1.25rem;
    height: 2px;
    border-radius: 999px;
    background: var(--ocean-950);
    transition:
        transform 180ms ease,
        opacity 180ms ease;
}

.mobile-menu {
    display: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: calc(var(--nav-height) + 2rem) 0 4rem;
    background:
        linear-gradient(135deg, rgba(6, 43, 61, 0.9), rgba(11, 79, 106, 0.64)),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
    color: white;
    overflow: hidden;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(56, 189, 248, 0.25), transparent 26%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15), transparent 20%),
        linear-gradient(180deg, rgba(6, 43, 61, 0.08), rgba(6, 43, 61, 0.38));
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 32rem;
    height: 32rem;
    right: -10rem;
    bottom: -12rem;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 65%);
    filter: blur(10px);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 2rem;
    align-items: center;
}

.hero-copy {
    max-width: 720px;
}

.hero-copy h1 {
    margin-top: 1rem;
    font-size: clamp(3rem, 6.8vw, 6.5rem);
    color: white;
    text-wrap: balance;
}

.hero-lead {
    margin-top: 1.2rem;
    max-width: 620px;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

.hero-pills li {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.92rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-card {
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 60px rgba(2, 8, 23, 0.22);
    backdrop-filter: blur(24px);
}

.hero-card-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-card h2 {
    margin-top: 1rem;
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    color: white;
}

.hero-card-text {
    margin-top: 0.9rem;
    color: rgba(255, 255, 255, 0.84);
}

.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.15rem;
}

.hero-card-grid article {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-grid strong {
    display: block;
    margin-bottom: 0.35rem;
    color: white;
    font-size: 0.98rem;
}

.hero-card-grid span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-card-label {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.hero-card-footer strong {
    color: white;
    font-size: 1rem;
}

/* ==========================================================================
   Booking engine
   ========================================================================== */

.booking-section {
    padding-top: 0;
}

.booking-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem;
    margin: 4rem auto 0;
}

.booking-copy {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 1rem;
}

.booking-copy h2 {
    font-size: clamp(2.1rem, 3.8vw, 3.8rem);
    color: var(--ocean-950);
}

.booking-copy p {
    max-width: 520px;
    color: var(--muted);
    font-size: 1.02rem;
}

.sb-busca-motor form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
    margin: 0;
    padding: 0;
    background: transparent;
}

.sb-input-container {
    min-width: 0;
}

.sb-input-container.sb-copy {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    min-height: 32px;
    color: var(--ocean-950);
    font-size: 0.95rem;
    letter-spacing: 0.11em;
}

.sb-input-container:not(:last-child) {
    padding-right: 0;
}

.sb-input-container .sb-input {
    display: block;
    width: 100%;
    border: 1px solid rgba(11, 79, 106, 0.14);
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.86);
    padding: 0.85rem 0.95rem;
    font-size: 0.98rem;
    color: var(--ocean-950);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.sb-input-container .sb-input:focus {
    outline: none;
    border-color: rgba(18, 122, 154, 0.48);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.sb-input-container .sb-label {
    display: block;
    margin-bottom: 0.45rem;
    line-height: 1.2;
    font-size: 0.78rem;
    color: var(--ocean-800);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sb-input-container select {
    min-width: 0;
    max-width: none;
}

.sb-input-container.sb-action {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
}

.sb-input-container .sb-btn-buscar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(240px, 100%);
    min-height: 52px;
    padding: 0.85rem 1.25rem;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--ocean-700), var(--sky-600));
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(11, 79, 106, 0.22);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
}

.sb-input-container .sb-btn-buscar:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(11, 79, 106, 0.28);
    filter: brightness(1.02);
}

/* ==========================================================================
   About / Paradise
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: start;
}

.about-media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow-lg);
}

.about-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 12% center;
    transform: scale(1.02);
}

.about-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(6, 43, 61, 0.52));
}

.about-floating {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 1;
    padding: 1rem 1.1rem;
    max-width: 220px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
}

.about-floating strong {
    display: block;
    color: var(--ocean-950);
    font-size: 1.2rem;
    font-weight: 800;
}

.about-floating span {
    display: block;
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.about-copy {
    display: grid;
    gap: 1rem;
}

.about-copy h2 {
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    color: var(--ocean-950);
}

.about-copy p {
    color: var(--muted);
    font-size: 1.03rem;
}

.feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 0.6rem;
}

.feature-list article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(11, 79, 106, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-md);
}

.feature-list span {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(11, 79, 106, 0.14), rgba(56, 189, 248, 0.18));
    color: var(--ocean-900);
    font-weight: 800;
    flex-shrink: 0;
}

.feature-list strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--ocean-950);
    font-size: 1.04rem;
}

.feature-list p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(11, 79, 106, 0.1);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-md);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(11, 79, 106, 0.18);
}

.service-media {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

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

.service-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(2, 8, 23, 0.42));
}

.service-tag {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: inline-flex;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ocean-900);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-body {
    display: grid;
    gap: 0.85rem;
    padding: 1.25rem;
}

.service-body h3 {
    font-size: 2rem;
    color: var(--ocean-950);
}

.service-body p {
    color: var(--muted);
}

.service-body ul {
    display: grid;
    gap: 0.7rem;
}

.service-body li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--ocean-900);
    font-size: 0.95rem;
}

.service-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean-700), var(--sky-500));
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    grid-column: span 4;
    aspect-ratio: 4 / 5;
    border-radius: 26px;
    box-shadow: var(--shadow-md);
    isolation: isolate;
}

.gallery-card:nth-child(4),
.gallery-card:nth-child(5) {
    grid-column: span 6;
    aspect-ratio: 16 / 10;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 650ms ease,
        filter 250ms ease;
}

.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 8, 23, 0.06) 40%, rgba(2, 8, 23, 0.68));
    opacity: 0.8;
    transition: opacity 250ms ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover::after {
    opacity: 0.95;
}

.gallery-card figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    color: white;
    font-weight: 700;
    text-shadow: 0 8px 18px rgba(2, 8, 23, 0.28);
}

/* ==========================================================================
   Benefits
   ========================================================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.benefit-card {
    padding: 1.25rem;
    border: 1px solid rgba(11, 79, 106, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-md);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.benefit-icon {
    display: grid;
    place-items: center;
    width: 3.35rem;
    height: 3.35rem;
    margin-bottom: 1rem;
    border-radius: 18px;
    color: white;
    background: linear-gradient(135deg, var(--ocean-700), var(--sky-600));
    box-shadow: 0 12px 24px rgba(11, 79, 106, 0.18);
}

.benefit-icon svg {
    width: 1.6rem;
    height: 1.6rem;
}

.benefit-card h3 {
    font-size: 1.8rem;
    color: var(--ocean-950);
}

.benefit-card p {
    margin-top: 0.55rem;
    color: var(--muted);
}

/* ==========================================================================
   How it works
   ========================================================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.step-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 26px;
    border: 1px solid rgba(11, 79, 106, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 228, 0.9));
    box-shadow: var(--shadow-md);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.4rem;
    min-height: 4.4rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--ocean-800), var(--sky-600));
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 12px 24px rgba(11, 79, 106, 0.2);
}

.step-card h3 {
    font-size: 2rem;
    color: var(--ocean-950);
}

.step-card p {
    margin-top: 0.65rem;
    color: var(--muted);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.testimonial-card {
    padding: 1.4rem;
    border: 1px solid rgba(11, 79, 106, 0.1);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: #f4b942;
    letter-spacing: 0.2em;
}

.testimonial-card p {
    color: var(--ocean-950);
    font-size: 1.02rem;
}

.testimonial-card strong {
    display: block;
    margin-top: 1rem;
    color: var(--ocean-950);
}

.testimonial-card span {
    color: var(--muted);
    font-size: 0.94rem;
}

/* ==========================================================================
   Statistics band
   ========================================================================== */

.stats-band {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--ocean-950), var(--ocean-800) 60%, var(--sky-600));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2.2rem, 4vw, 4rem);
    color: white;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
}

.stat-label {
    display: block;
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
    align-items: start;
}

.faq-copy {
    position: sticky;
    top: calc(var(--nav-height) + 1.5rem);
    display: grid;
    gap: 1rem;
}

.faq-copy h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    color: var(--ocean-950);
}

.faq-copy p {
    color: var(--muted);
    font-size: 1.03rem;
}

.faq-list {
    display: grid;
    gap: 0.9rem;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(11, 79, 106, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-md);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border: 0;
    background: transparent;
    color: var(--ocean-950);
    text-align: left;
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 800;
}

.faq-icon {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(11, 79, 106, 0.08);
    color: var(--ocean-800);
    font-size: 1.15rem;
    font-weight: 800;
    transition: transform 200ms ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
}

.faq-answer-inner {
    padding: 0 1.25rem 1.2rem;
    color: var(--muted);
}

.faq-item.open .faq-trigger {
    color: var(--ocean-800);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--ocean-700), var(--sky-600));
    color: white;
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
    padding: 6.5rem 0;
    color: white;
    background:
        linear-gradient(135deg, rgba(6, 43, 61, 0.96), rgba(11, 79, 106, 0.86) 60%, rgba(31, 157, 115, 0.9)),
        url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.18), transparent 30%);
    pointer-events: none;
}

.cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 1.5rem;
    align-items: center;
}

.cta-copy {
    display: grid;
    gap: 1rem;
}

.cta-copy h2 {
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    color: white;
}

.cta-copy p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.86);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.contact-card {
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    box-shadow: 0 26px 60px rgba(2, 8, 23, 0.22);
}

.contact-card h3 {
    font-size: 2rem;
    color: white;
}

.contact-card ul {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-card li {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-card strong {
    display: block;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-card span {
    color: white;
    font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 3.5rem 0 2rem;
    background: #071d29;
    color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    margin-top: 1rem;
    max-width: 430px;
}

.footer h4 {
    margin-bottom: 0.85rem;
    color: white;
    font-size: 1.6rem;
}

.footer-links {
    display: grid;
    gap: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: white;
}

.footer-note {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    background-color: #27d27e;
    cursor: pointer;
    animation: whatsapp-pulse 2s infinite linear;
    transition: background-color 180ms ease;
}

.whatsapp-float:hover {
    background-color: #00c364;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 210, 126, 0.25);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(39, 210, 126, 0);
    }
}

@media (min-width: 992px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* ==========================================================================
   Responsive behavior
   ========================================================================== */

@media (max-width: 1180px) {
    .hero-grid,
    .about-grid,
    .faq-layout,
    .cta-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .booking-shell {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .benefits-grid,
    .steps-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-card {
        grid-column: span 6;
    }

    .gallery-card:nth-child(4),
    .gallery-card:nth-child(5) {
        grid-column: span 6;
    }

    .faq-copy {
        position: static;
    }

    .sb-busca-motor form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        padding: 0.8rem 0;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: var(--nav-height);
        right: 0;
        left: 0;
        bottom: auto;
        padding: 0 0 1rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition:
            opacity 220ms ease,
            transform 220ms ease,
            visibility 220ms ease;
    }

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-menu-inner {
        display: grid;
        gap: 0.7rem;
        padding: 1rem;
        border: 1px solid rgba(11, 79, 106, 0.1);
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(16px);
        box-shadow: var(--shadow-lg);
    }

    .mobile-menu-inner a {
        padding: 0.95rem 1rem;
        border-radius: 16px;
        color: var(--ocean-950);
        font-weight: 700;
        background: rgba(11, 79, 106, 0.04);
    }

    .hero {
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 10vw, 4.6rem);
    }

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

    .services-grid,
    .benefits-grid,
    .steps-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card,
    .gallery-card:nth-child(4),
    .gallery-card:nth-child(5) {
        grid-column: auto;
        aspect-ratio: 4 / 3;
    }

    .footer-grid {
        gap: 1.2rem;
    }

    .whatsapp-float {
        display: none;
    }
}

@media (max-width: 640px) {
    .site-container {
        width: min(var(--site-width), calc(100% - 1.2rem));
    }

    .section {
        padding: 5.5rem 0;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 1rem);
    }

    .hero-card,
    .contact-card {
        padding: 1.1rem;
    }

    .hero-card-footer,
    .cta-actions,
    .nav-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .nav-actions {
        margin-left: auto;
        align-self: flex-start;
    }

    .about-media {
        aspect-ratio: 4 / 5;
    }

    .about-media img {
        object-position: 12% center;
    }

    .sb-busca-motor form {
        grid-template-columns: 1fr;
    }

    .sb-input-container.sb-action {
        justify-content: stretch;
    }

    .sb-input-container .sb-btn-buscar {
        width: 100%;
    }

    .service-media {
        height: 220px;
    }

    .btn {
        width: 100%;
    }

    .contact-card h3,
    .footer h4,
    .service-body h3,
    .benefit-card h3,
    .step-card h3 {
        font-size: 1.7rem;
    }

    .footer-note {
        flex-direction: column;
    }
}
