
.v0c-frontend {
    --v0c-navy: #082032;
    --v0c-sea: #1c7293;
    --v0c-sea-dark: #0b5d77;
    --v0c-sand: #f4efe6;
    --v0c-ink: #183142;
    --v0c-muted: #5f7285;
    --v0c-card: rgba(255,255,255,0.94);
    --v0c-border: rgba(8, 32, 50, 0.1);
    font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px;
    color: var(--v0c-ink);
    background:
        radial-gradient(circle at top right, rgba(28,114,147,0.14), transparent 26%),
        radial-gradient(circle at left center, rgba(255,183,76,0.12), transparent 25%),
        linear-gradient(180deg, #f7fbfd 0%, #eef4f7 100%);
}

.v0c-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(8, 32, 50, 0.08);
    color: var(--v0c-sea-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v0c-catalog-hero {
    display: grid;
    grid-template-columns: 1.4fr .9fr;
    gap: 24px;
    margin-bottom: 28px;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(8,32,50,0.95), rgba(28,114,147,0.88)),
        linear-gradient(180deg, #082032 0%, #0b5d77 100%);
    color: #fff;
    box-shadow: 0 24px 60px rgba(8,32,50,0.18);
}

.v0c-catalog-hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
}

.v0c-catalog-hero p {
    margin: 0;
    max-width: 620px;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
}

.v0c-catalog-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-self: end;
}

.v0c-catalog-stats div {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
}

.v0c-catalog-stats strong {
    display: block;
    font-size: 28px;
    line-height: 1;
}

.v0c-catalog-stats span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
}

.v0c-conversion-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 28px;
}

.v0c-conversion-strip div {
    padding: 18px 18px 16px;
    border-radius: 18px;
    border: 1px solid rgba(8,32,50,0.08);
    background: rgba(255,255,255,0.82);
    box-shadow: 0 14px 36px rgba(8,32,50,0.06);
}

.v0c-conversion-strip strong {
    display: block;
    margin-bottom: 6px;
    color: var(--v0c-sea-dark);
    font-size: 15px;
}

.v0c-conversion-strip span {
    display: block;
    color: var(--v0c-muted);
    line-height: 1.55;
    font-size: 14px;
}

.v0c-search-bar { margin-bottom: 28px; }
.v0c-search-form {
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(8,32,50,0.08);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 16px 42px rgba(8,32,50,0.07);
    backdrop-filter: blur(10px);
}
.v0c-search-fields { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.v0c-input, .v0c-select {
    padding: 13px 15px;
    border: 1px solid rgba(8,32,50,0.14);
    border-radius: 14px;
    font-size: 14px;
    background: #fff;
    color: var(--v0c-ink);
    min-height: 48px;
}
.v0c-input:focus, .v0c-select:focus {
    outline: none;
    border-color: rgba(28,114,147,0.5);
    box-shadow: 0 0 0 4px rgba(28,114,147,0.11);
}
.v0c-search-fields .v0c-input { flex: 1 1 240px; min-width: 240px; }
.v0c-search-fields .v0c-select { min-width: 170px; }

.v0c-btn {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 0;
    font: inherit;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.v0c-btn-primary {
    background: linear-gradient(135deg, #0f5fa8 0%, #0b4477 100%);
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(15,95,168,0.22);
}
.v0c-btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #0c548f 0%, #08365d 100%) !important;
    color: #fff !important;
    box-shadow: 0 18px 34px rgba(15,95,168,0.26);
}
.v0c-btn-outline {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15,95,168,0.14);
    color: var(--v0c-primary-dark) !important;
}
.v0c-btn-outline:hover {
    background: rgba(244,248,252,0.98) !important;
    border-color: rgba(15,95,168,0.24) !important;
    color: var(--v0c-primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15,95,168,0.10);
}
.v0c-btn-lg { width: 100%; min-height: 52px; }
.v0c-btn-whatsapp {
    background: rgba(37,211,102,0.12);
    color: #0d6a47 !important;
    border: 1px solid rgba(13,106,71,0.18);
    width: 100%;
    margin-top: 10px;
}
.v0c-btn-whatsapp:hover {
    background: rgba(37,211,102,0.18) !important;
    color: #084534 !important;
    border-color: rgba(13,106,71,0.28) !important;
}

.v0c-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }
.v0c-card-cruise {
    background: var(--v0c-card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(8,32,50,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--v0c-border);
    display: flex;
    flex-direction: column;
}
.v0c-card-cruise:hover { transform: translateY(-6px); box-shadow: 0 28px 56px rgba(8,32,50,0.13); }
.v0c-card-image { position: relative; height: 240px; overflow: hidden; background: linear-gradient(135deg, #0b5d77 0%, #082032 100%); }
.v0c-card-image img { width: 100%; height: 100%; object-fit: cover; }
.v0c-card-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1c7293 0%, #082032 100%); }
.v0c-badge-destaque,
.v0c-badge-noites,
.v0c-badge-company,
.v0c-source-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.v0c-badge-destaque { position: absolute; top: 14px; left: 14px; background: #f6b73c; color: #082032; }
.v0c-badge-noites { position: absolute; top: 14px; right: 14px; background: rgba(8,32,50,0.66); color: #fff; }
.v0c-source-pill { background: rgba(8,32,50,0.07); color: var(--v0c-sea-dark); }
.v0c-card-body { padding: 20px; flex: 1; }
.v0c-card-topline { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 10px; }
.v0c-card-company { font-size: 12px; color: var(--v0c-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.v0c-card-title { margin: 0 0 10px; font-size: 24px; line-height: 1.1; }
.v0c-card-title a { color: var(--v0c-navy); text-decoration: none; }
.v0c-card-route { font-size: 14px; color: #35556b; margin-bottom: 10px; font-weight: 700; }
.v0c-icon { margin-right: 5px; }
.v0c-card-excerpt { font-size: 14px; color: var(--v0c-muted); margin-bottom: 14px; line-height: 1.6; }
.v0c-card-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.v0c-card-meta span {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(8,32,50,0.05);
    font-size: 12px;
    color: #35556b;
}
.v0c-card-footer {
    padding: 18px 20px 20px;
    border-top: 1px solid rgba(8,32,50,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.v0c-card-price { font-size: 12px; color: var(--v0c-muted); }
.v0c-card-price strong { display: block; font-size: 26px; color: var(--v0c-navy); line-height: 1.05; }

.v0c-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--v0c-sea-dark);
    text-decoration: none;
    font-weight: 800;
}
.v0c-detail-hero {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 460px;
    margin-bottom: 22px;
    background: linear-gradient(180deg, #082032 0%, #0b5d77 100%);
}
.v0c-hero-img { width: 100%; height: 100%; object-fit: cover; }
.v0c-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 34px;
    background: linear-gradient(180deg, rgba(5,17,28,0.18) 0%, rgba(5,17,28,0.88) 78%);
    color: #fff;
}
.v0c-hero-badges { margin-bottom: 12px; display: flex; gap: 10px; flex-wrap: wrap; }
.v0c-badge-company { background: rgba(6,18,29,0.56); color: #fff; }
.v0c-route-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 18px;
}
.v0c-route-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15,95,168,0.08);
    border: 1px solid rgba(15,95,168,0.12);
    color: var(--v0c-primary-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.v0c-hero-title { margin: 0 0 6px; font-size: clamp(30px, 4vw, 52px); line-height: 1; max-width: 840px; }
.v0c-hero-route { margin: 0; opacity: 0.96; font-size: 16px; text-shadow: 0 2px 10px rgba(0,0,0,0.22); }

.v0c-overview-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 26px;
}
.v0c-overview-strip div,
.v0c-panel-box,
.v0c-summary-card,
.v0c-form-section,
.v0c-price-card,
.v0c-cabins-card,
.v0c-info-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--v0c-border);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(8,32,50,0.06);
}
.v0c-overview-strip div { padding: 18px 16px; }
.v0c-overview-strip span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--v0c-muted);
    margin-bottom: 7px;
}
.v0c-overview-strip strong { font-size: 16px; line-height: 1.3; }
.v0c-route-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.v0c-route-summary-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(8,32,50,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
}
.v0c-route-summary-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--v0c-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.v0c-route-summary-card strong {
    display: block;
    color: var(--v0c-navy);
    font-size: 18px;
    line-height: 1.35;
}

.v0c-shipfacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
}
.v0c-shipfact-card {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--v0c-border);
    box-shadow: 0 16px 36px rgba(8,32,50,0.06);
}
.v0c-shipfact-card span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--v0c-muted);
    margin-bottom: 8px;
}
.v0c-shipfact-card strong {
    display: block;
    font-size: 20px;
    color: var(--v0c-navy);
    line-height: 1.25;
}

.v0c-section { margin-bottom: 28px; }
.v0c-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 16px;
}
.v0c-section-head h2,
.v0c-section h2 { font-size: 24px; margin: 0 0 6px; color: var(--v0c-navy); }
.v0c-section-head p {
    margin: 0;
    color: var(--v0c-muted);
    line-height: 1.55;
    font-size: 14px;
}
.v0c-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 26px;
}
.v0c-gallery-item,
.v0c-area-card,
.v0c-official-cabin {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 0;
    border: 1px solid var(--v0c-border);
    background: #fff;
    color: var(--v0c-ink) !important;
    font: inherit;
    text-align: left;
    cursor: default;
}
.v0c-gallery-item {
    height: 190px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(8,32,50,0.12);
    cursor: pointer;
}
.v0c-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.v0c-gallery-item:hover img,
.v0c-area-card:hover .v0c-area-img img,
.v0c-official-cabin:hover .v0c-official-cabin-img img { transform: scale(1.06); }
.v0c-gallery-item:hover,
.v0c-area-card:hover,
.v0c-official-cabin:hover {
    background: #fff !important;
    color: var(--v0c-ink) !important;
    border-color: rgba(15,95,168,0.20);
}
.v0c-area-card:hover .v0c-area-label,
.v0c-official-cabin:hover .v0c-official-cabin-body h3 {
    color: var(--v0c-primary-dark) !important;
}
.v0c-area-card:hover .v0c-area-copy,
.v0c-official-cabin:hover .v0c-official-cabin-body p,
.v0c-official-cabin:hover .v0c-copy-preview,
.v0c-official-cabin:hover .v0c-copy-full {
    color: #35556b !important;
}
.v0c-gallery-item:focus-visible,
.v0c-cabin-item.v0c-media-trigger:focus-visible {
    outline: 3px solid rgba(15, 95, 168, 0.22);
    outline-offset: 2px;
}
.v0c-image-shell {
    position: relative;
    overflow: hidden;
    background: linear-gradient(110deg, rgba(240,244,248,.96) 8%, rgba(255,255,255,.88) 18%, rgba(236,241,247,.96) 33%);
    background-size: 220% 100%;
    animation: v0c-shimmer 1.4s linear infinite;
}
.v0c-image-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(8,32,50,.03));
    pointer-events: none;
}
.v0c-image-shell img {
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .28s ease, transform .4s ease;
}
.v0c-image-shell.is-loaded {
    animation: none;
    background: #edf3f8;
}
.v0c-image-shell.is-loaded img {
    opacity: 1;
    transform: scale(1);
}
.v0c-image-shell.is-failed {
    animation: none;
    background: linear-gradient(135deg, #eef3f7, #dde6ef);
}
@keyframes v0c-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.v0c-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.v0c-detail-sidebar { position: sticky; top: 16px; align-self: start; }
.v0c-content { line-height: 1.75; color: #314e63; font-size: 15px; }

.v0c-itinerary-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(8,32,50,0.08);
}
.v0c-itinerary-dot { width: 12px; height: 12px; border-radius: 50%; background: #ef8354; margin-top: 6px; flex-shrink: 0; }
.v0c-itinerary-text { color: #314e63; line-height: 1.6; }

.v0c-included-grid,
.v0c-info-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.v0c-panel-box { padding: 22px; }
.v0c-panel-box h3 { margin-top: 0; margin-bottom: 14px; font-size: 18px; }
.v0c-charge-list div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(8,32,50,0.08);
    color: #314e63;
}
.v0c-charge-list div:last-child { border-bottom: 0; }
.v0c-list { list-style: none; padding: 0; margin: 0; }
.v0c-list li { padding: 8px 0 8px 24px; position: relative; color: #314e63; line-height: 1.55; }
.v0c-list-check li::before { content: "\2713"; position: absolute; left: 0; color: #0b8b6f; font-weight: 800; }
.v0c-list-x li::before { content: "\2717"; position: absolute; left: 0; color: #cc5b48; font-weight: 800; }

.v0c-price-card, .v0c-cabins-card, .v0c-info-card { padding: 22px; margin-bottom: 16px; }
.v0c-price-card {
    background: linear-gradient(180deg, #fdfefe 0%, #f4f8fc 100%);
    color: var(--v0c-ink);
    border: 1px solid rgba(15,95,168,0.14);
    box-shadow: 0 18px 40px rgba(15,95,168,0.08);
}
.v0c-price-label { font-size: 12px; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.08em; }
.v0c-price-value { font-size: 42px; font-weight: 900; margin: 6px 0; line-height: 1; }
.v0c-price-per { font-size: 13px; opacity: 0.75; margin-bottom: 16px; }
.v0c-price-dates {
    text-align: left;
    margin-bottom: 16px;
    padding: 14px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
}
.v0c-price-date-item { padding: 5px 0; font-size: 14px; }
.v0c-quick-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.v0c-quick-facts div {
    padding: 12px 10px;
    border-radius: 16px;
    background: rgba(255,255,255,0.12);
    text-align: center;
}
.v0c-quick-facts span {
    display: block;
    font-size: 11px;
    opacity: 0.72;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.v0c-quick-facts strong {
    display: block;
    margin-top: 5px;
    font-size: 20px;
    line-height: 1;
}
.v0c-price-card .v0c-btn + .v0c-btn { margin-top: 10px; }
.v0c-price-card .v0c-btn-primary {
    box-shadow: 0 16px 30px rgba(15,95,168,0.18);
}

.v0c-sailings-table {
    display: grid;
    gap: 10px;
}
.v0c-sailing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.84);
    border: 1px solid var(--v0c-border);
}
.v0c-sailing-row div:first-child { display: flex; flex-direction: column; gap: 4px; color: #314e63; }
.v0c-sailing-row span { color: var(--v0c-muted); font-size: 13px; }

.v0c-areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.v0c-area-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(8,32,50,0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    background: #fff;
}
.v0c-area-card:hover { transform: translateY(-4px); box-shadow: 0 22px 42px rgba(8,32,50,0.10); }
.v0c-area-img { height: 170px; overflow: hidden; }
.v0c-area-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.v0c-area-label { padding: 12px 14px; font-weight: 800; font-size: 14px; color: var(--v0c-navy); text-align: center; background: #f8fbfc; }
.v0c-area-copy { padding: 0 14px 16px; font-size: 13px; line-height: 1.65; color: var(--v0c-muted); }

.v0c-official-cabins {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.v0c-official-cabin {
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--v0c-border);
    box-shadow: 0 18px 40px rgba(8,32,50,0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.v0c-official-cabin:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(8,32,50,0.10);
    border-color: rgba(15,95,168,0.18);
}
.v0c-official-cabin-img { height: 210px; overflow: hidden; }
.v0c-official-cabin-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.v0c-official-cabin-body {
    padding: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,253,0.98));
}
.v0c-official-cabin-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--v0c-navy);
    transition: color 0.22s ease;
}
.v0c-area-copy-text,
.v0c-official-cabin-copy {
    margin: 0;
    color: #314e63;
    line-height: 1.65;
}
.v0c-copy-preview,
.v0c-copy-full {
    margin: 0;
    color: inherit;
}
.v0c-copy-full[hidden] { display: none !important; }
.v0c-copy-toggle {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--v0c-primary-dark);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}
.v0c-official-cabin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.v0c-official-cabin-actions .v0c-btn {
    flex: 1 1 180px;
}

.v0c-cabins-card h3 { margin: 0 0 16px; font-size: 30px; line-height: 1.04; }
.v0c-cabin-item {
    appearance: none;
    -webkit-appearance: none;
    display: grid;
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(8,32,50,0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,252,0.98));
    gap: 14px;
    color: var(--v0c-ink) !important;
    text-align: left;
    font: inherit;
    box-shadow: 0 12px 28px rgba(8,32,50,0.05);
}
.v0c-cabin-item + .v0c-cabin-item { margin-top: 14px; }
.v0c-cabin-item:last-child { border-bottom: 1px solid rgba(8,32,50,0.08); }
.v0c-cabin-has-photo { grid-template-columns: 1fr; }
.v0c-cabin-item.v0c-media-trigger {
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}
.v0c-cabin-item.v0c-media-trigger:hover,
.v0c-cabin-item.v0c-media-trigger:focus-visible {
    background: linear-gradient(180deg, rgba(255,255,255,1), rgba(242,247,251,1)) !important;
    border-color: rgba(15,95,168,0.22);
    box-shadow: 0 18px 36px rgba(15,95,168,0.10);
    color: var(--v0c-ink) !important;
    transform: translateY(-2px);
}
.v0c-cabin-item.v0c-media-trigger:hover .v0c-cabin-info strong,
.v0c-cabin-item.v0c-media-trigger:hover .v0c-cabin-info p,
.v0c-cabin-item.v0c-media-trigger:hover .v0c-cabin-price strong,
.v0c-cabin-item.v0c-media-trigger:hover .v0c-cabin-price small,
.v0c-cabin-item.v0c-media-trigger:hover .v0c-cabin-capacity,
.v0c-cabin-item.v0c-media-trigger:focus-visible .v0c-cabin-info strong,
.v0c-cabin-item.v0c-media-trigger:focus-visible .v0c-cabin-info p,
.v0c-cabin-item.v0c-media-trigger:focus-visible .v0c-cabin-price strong,
.v0c-cabin-item.v0c-media-trigger:focus-visible .v0c-cabin-price small,
.v0c-cabin-item.v0c-media-trigger:focus-visible .v0c-cabin-capacity {
    color: inherit !important;
}
.v0c-cabin-photo {
    width: 100%;
    height: 184px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 0;
}
.v0c-cabin-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
}
.v0c-cabin-item.v0c-media-trigger:hover .v0c-cabin-photo img,
.v0c-cabin-item.v0c-media-trigger:focus-visible .v0c-cabin-photo img {
    transform: scale(1.03);
}
.v0c-cabin-info {
    display: grid;
    gap: 8px;
    min-width: 0;
}
.v0c-cabin-info strong {
    display: block;
    margin: 0;
    font-size: 17px;
    line-height: 1.18;
    color: var(--v0c-navy);
}
.v0c-cabin-info p {
    margin: 0;
    color: #486175;
    font-size: 14px;
    line-height: 1.62;
}
.v0c-cabin-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(8,32,50,0.08);
}
.v0c-cabin-capacity {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15,95,168,0.08);
    color: var(--v0c-primary-dark);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
}
.v0c-cabin-price {
    display: grid;
    justify-items: end;
    gap: 4px;
    text-align: right;
    white-space: nowrap;
}
.v0c-cabin-price strong {
    display: block;
    font-size: 18px;
    line-height: 1;
    color: var(--v0c-sea-dark);
}
.v0c-cabin-price small {
    display: block;
    color: var(--v0c-muted);
    font-size: 12px;
    font-weight: 700;
}
.v0c-mobile-cta { display: none; }
 .v0c-mobile-cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}
body.v0c-modal-open { overflow: hidden; }

.v0c-media-modal,
.v0c-tour-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
}
.v0c-media-modal[hidden],
.v0c-tour-modal[hidden] { display: none !important; }
.v0c-media-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 16, 28, 0.78);
    backdrop-filter: blur(6px);
}
.v0c-media-dialog,
.v0c-tour-dialog {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100vw - 32px));
    margin: 16px auto;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 32px 80px rgba(7, 16, 28, 0.32);
    overflow: hidden;
    max-height: calc(100svh - 32px);
}
.v0c-media-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 380px);
    min-height: min(820px, calc(100vh - 32px));
    max-height: calc(100svh - 32px);
}
.v0c-media-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #06121d;
    min-height: clamp(260px, 48vh, 420px);
}
.v0c-media-stage img {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 48px);
    object-fit: contain;
    opacity: 0;
    transition: opacity .28s ease;
}
.v0c-media-stage img.is-loaded { opacity: 1; }
.v0c-media-loading,
.v0c-tour-loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    text-align: center;
    color: #e7f0fb;
    background: linear-gradient(180deg, rgba(6,18,29,.72), rgba(6,18,29,.88));
    backdrop-filter: blur(10px);
}
.v0c-media-loading[hidden],
.v0c-tour-loading[hidden] { display: none !important; }
.v0c-media-loading span,
.v0c-tour-loading span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,.24);
    border-top-color: #fff;
    animation: v0c-spin .85s linear infinite;
}
.v0c-media-loading strong,
.v0c-tour-loading strong {
    font-size: 16px;
    font-weight: 700;
}
.v0c-tour-loading small {
    max-width: 320px;
    line-height: 1.45;
    color: rgba(231,240,251,.74);
}
.v0c-tour-loading.is-slow::after {
    content: "O tour ainda esta carregando. Se a companhia demorar para responder, mantenha esta janela aberta por alguns segundos.";
    max-width: 360px;
    line-height: 1.45;
    color: rgba(231,240,251,.74);
    font-size: 14px;
}
@keyframes v0c-spin {
    to { transform: rotate(360deg); }
}
.v0c-media-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    overflow-y: auto;
    min-height: 0;
}
.v0c-media-eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(15, 95, 168, 0.08);
    color: var(--v0c-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.v0c-media-panel h3 {
    margin: 0;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.04;
    color: var(--v0c-ink);
}
.v0c-media-panel p {
    margin: 0;
    color: var(--v0c-muted);
    line-height: 1.75;
    font-size: 15px;
}
.v0c-media-copy-toggle {
    width: fit-content;
    margin-top: -4px;
}
.v0c-media-counter {
    margin-top: auto;
    color: var(--v0c-muted);
    font-size: 13px;
    font-weight: 700;
}
.v0c-media-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
    padding-top: 12px;
}
.v0c-media-close,
.v0c-media-nav {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    z-index: 2;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: #0a1a29;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(10, 26, 41, 0.18);
}
.v0c-media-close {
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    font-size: 0;
    line-height: 0;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.v0c-media-close::before,
.v0c-media-close::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2.5px;
    border-radius: 999px;
    background: #102435;
}
.v0c-media-close::before { transform: rotate(45deg); }
.v0c-media-close::after { transform: rotate(-45deg); }
.v0c-media-close:hover {
    transform: translateY(-1px) scale(1.02);
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(10, 26, 41, 0.2);
}
.v0c-media-close:focus-visible {
    outline: 3px solid rgba(15, 95, 168, 0.22);
    outline-offset: 2px;
}
.v0c-media-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 32px;
    line-height: 1;
}
.v0c-media-nav-prev { left: 14px; }
.v0c-media-nav-next { right: 14px; }
.v0c-tour-header {
    padding: 28px 28px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.v0c-tour-header h3 {
    margin: 0;
    color: var(--v0c-ink);
}
.v0c-tour-frame-wrap {
    position: relative;
    padding: 0 28px 28px;
}
.v0c-tour-frame-wrap iframe {
    width: 100%;
    height: clamp(320px, 68vh, 780px);
    border: 0;
    border-radius: 18px;
    background: #06121d;
}

.v0c-info-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(8,32,50,0.08);
}
.v0c-info-item:last-child { border-bottom: 0; }
.v0c-info-item span { color: var(--v0c-muted); }

.v0c-booking-title { font-size: clamp(32px, 4vw, 42px); margin-bottom: 8px; line-height: 1.02; letter-spacing: -0.03em; }
.v0c-booking-subtitle { color: var(--v0c-muted); margin-bottom: 24px; font-size: 15px; line-height: 1.55; max-width: 860px; }
.v0c-booking-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(176, 55, 55, 0.18);
    background: rgba(255, 241, 241, 0.94);
    color: #8a2134;
    font-weight: 700;
}
.v0c-booking-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 22px; align-items: start; }
.v0c-booking-form {
    display: grid;
    gap: 18px;
}
.v0c-booking .v0c-input,
.v0c-booking .v0c-select,
.v0c-booking .v0c-textarea {
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    display: block;
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 18px !important;
    border: 1px solid #c8d6e2 !important;
    background: linear-gradient(180deg, #fbfdff 0%, #f5f9fc 100%) !important;
    color: #162533 !important;
    font-size: 16px !important;
    box-shadow: inset 0 1px 2px rgba(15, 32, 51, 0.04), 0 1px 0 rgba(255,255,255,0.8);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, transform 0.22s ease;
}
.v0c-booking .v0c-textarea {
    min-height: 136px;
    padding: 14px 16px;
}
.v0c-booking .v0c-input::placeholder,
.v0c-booking .v0c-textarea::placeholder {
    color: #7e92a6;
}
.v0c-booking .v0c-input:focus,
.v0c-booking .v0c-select:focus,
.v0c-booking .v0c-textarea:focus {
    border-color: rgba(15,95,168,0.42) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(15,95,168,0.11), inset 0 1px 2px rgba(15,32,51,0.03) !important;
}
.v0c-booking select.v0c-select {
    padding-right: 50px;
    background-image:
        linear-gradient(45deg, transparent 50%, #43627c 50%),
        linear-gradient(135deg, #43627c 50%, transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0));
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px),
        100% 0;
    background-size: 6px 6px, 6px 6px, 2.8em 100%;
    background-repeat: no-repeat;
}
.v0c-booking input[type="date"].v0c-input {
    padding-right: 14px;
}
.v0c-booking input[type="date"].v0c-input::-webkit-calendar-picker-indicator {
    opacity: 0.88;
    cursor: pointer;
}
.v0c-booking-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.v0c-booking-step {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(8,32,50,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    color: var(--v0c-ink) !important;
    font: inherit;
    text-align: left;
    box-shadow: 0 12px 28px rgba(8,32,50,0.04);
    cursor: pointer;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.v0c-booking-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(15,95,168,0.08);
    color: var(--v0c-primary-dark);
    font-size: 13px;
    font-weight: 900;
    flex: 0 0 auto;
}
.v0c-booking-step strong {
    display: block;
    font-size: 14px;
    line-height: 1.3;
}
.v0c-booking-step.is-active {
    border-color: rgba(15,95,168,0.24);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,248,252,0.98));
    box-shadow: 0 18px 34px rgba(15,95,168,0.08);
}
.v0c-booking-step.is-active span,
.v0c-booking-step.is-complete span {
    background: linear-gradient(135deg, #0f5fa8 0%, #0b4477 100%);
    color: #fff;
}
.v0c-booking-step.is-complete {
    border-color: rgba(15,95,168,0.16);
}
.v0c-form-section {
    padding: 24px;
    margin-bottom: 0;
}
.v0c-form-step[hidden] { display: none !important; }
.v0c-step-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-end;
    margin-bottom: 18px;
}
.v0c-step-head h2 {
    font-size: 22px;
    margin: 0 0 6px;
    color: var(--v0c-navy);
}
.v0c-step-head p {
    margin: 0;
    color: var(--v0c-muted);
    line-height: 1.6;
    font-size: 14px;
}
.v0c-booking-feedback {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(176,55,55,0.16);
    background: rgba(255,242,242,0.9);
    color: #8a2134;
    font-size: 13px;
    font-weight: 700;
}
.v0c-booking-options,
.v0c-booking-fields {
    display: grid;
    gap: 16px;
}
.v0c-booking-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.v0c-cabin-select-native {
    position: absolute !important;
    inset: auto auto auto -9999px;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.v0c-cabin-picker {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.v0c-cabin-picker.is-invalid {
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(176,55,55,0.28);
    box-shadow: 0 0 0 4px rgba(176,55,55,0.08);
}
.v0c-field-card-cabins {
    grid-column: 1 / -1;
}
.v0c-cabin-choice {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    min-height: 72px;
    padding: 18px 96px 18px 18px;
    border: 1px solid rgba(8,32,50,0.08);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,252,0.98));
    color: var(--v0c-ink);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}
.v0c-cabin-choice:hover,
.v0c-cabin-choice:focus-visible {
    border-color: rgba(15,95,168,0.22);
    box-shadow: 0 16px 30px rgba(15,95,168,0.08);
    transform: translateY(-1px);
}
.v0c-cabin-choice.is-active {
    border-color: rgba(15,95,168,0.48);
    box-shadow: 0 0 0 4px rgba(15,95,168,0.12), 0 22px 38px rgba(15,95,168,0.14);
    background: linear-gradient(180deg, rgba(250,253,255,1), rgba(237,245,252,1));
    transform: translateY(-2px);
}
.v0c-cabin-choice.is-active::after {
    content: "Selecionada";
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f5fa8 0%, #0b4477 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.v0c-cabin-choice-photo {
    width: 100%;
    height: 100%;
    min-height: 96px;
    border-radius: 16px;
}
.v0c-cabin-choice-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v0c-cabin-choice-body {
    display: grid;
    gap: 8px;
    align-content: start;
    min-width: 0;
}
.v0c-cabin-choice-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
}
.v0c-cabin-choice-body strong {
    display: block;
    color: var(--v0c-navy);
    font-size: 16px;
    line-height: 1.22;
    padding-right: 0;
}
.v0c-cabin-choice-body small {
    color: #4b6478;
    line-height: 1.5;
    font-size: 13px;
}
.v0c-cabin-choice-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
    grid-column: 2;
    min-width: 0;
}
.v0c-cabin-choice-capacity {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(15,95,168,0.08);
    color: var(--v0c-primary-dark);
    font-size: 12px;
    font-weight: 800;
}
.v0c-cabin-choice-price {
    display: grid;
    gap: 4px;
    justify-items: end;
    min-width: 0;
    text-align: right;
    color: var(--v0c-primary-dark);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}
.v0c-cabin-choice-price small {
    font-size: 11px;
    font-weight: 700;
    color: var(--v0c-muted);
}
.v0c-booking-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.v0c-field-full { grid-column: 1 / -1; }
.v0c-field-card {
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
    border: 1px solid rgba(8,32,50,0.08);
}
.v0c-booking-fields label,
.v0c-booking-options label,
.v0c-stage-card label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #35556b;
    margin-bottom: 8px;
}
.v0c-booking-fields .v0c-input,
.v0c-booking-options .v0c-select,
.v0c-stage-card .v0c-input,
.v0c-stage-card .v0c-textarea {
    width: 100%;
}
.v0c-field-note {
    display: block;
    margin-top: 10px;
    color: #587186;
    font-size: 12px;
    line-height: 1.55;
}
.v0c-cep-assist {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}
.v0c-cep-assist .v0c-field-note {
    flex: 1 1 auto;
    margin-top: 0;
}
.v0c-field-note-muted {
    margin-top: 6px;
    color: #6a7f92;
}
.v0c-address-manual-toggle {
    appearance: none;
    -webkit-appearance: none;
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(15,95,168,0.22);
    border-radius: 12px;
    background: #fff;
    color: #0b5f9f;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.v0c-address-manual-toggle:hover,
.v0c-address-manual-toggle:focus {
    border-color: rgba(15,95,168,0.44);
    background: #f5fbff;
    color: #073f70;
    outline: none;
    box-shadow: 0 0 0 4px rgba(15,95,168,0.09);
}
.v0c-address-manual-toggle[aria-pressed="true"] {
    border-color: rgba(15,95,168,0.42);
    background: #eaf5ff;
    color: #073f70;
}
.v0c-field-note.is-loading { color: #0f5fa8; font-weight: 800; }
.v0c-field-note.is-success { color: #047857; font-weight: 800; }
.v0c-field-note.is-error { color: #9f1239; font-weight: 800; }
.v0c-address-result {
    margin-top: 2px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(4,120,87,0.16);
    background: linear-gradient(180deg, rgba(240,253,244,0.92), rgba(255,255,255,0.96));
}
.v0c-address-result[hidden] { display: none !important; }
.v0c-address-result-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}
.v0c-address-result-head strong {
    color: #065f46;
    font-size: 15px;
}
.v0c-address-result-head span {
    color: #047857;
    font-size: 12px;
    font-weight: 800;
}
.v0c-address-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.v0c-address-result .v0c-input[readonly] {
    background: linear-gradient(180deg, #f8fafc 0%, #eef6f3 100%) !important;
    color: #244153 !important;
}
.v0c-address-result.is-manual {
    border-color: rgba(15,95,168,0.18);
    background: linear-gradient(180deg, rgba(245,251,255,0.94), rgba(255,255,255,0.98));
}
.v0c-address-result.is-manual .v0c-address-result-head strong {
    color: #0b4477;
}
.v0c-address-result.is-manual .v0c-address-result-head span {
    color: #0f5fa8;
}
.v0c-address-result.is-manual .v0c-input:not([readonly]) {
    background: #fff !important;
}
.v0c-price-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}
.v0c-preview-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(8,32,50,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
}
.v0c-preview-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--v0c-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.v0c-preview-card strong {
    display: block;
    color: var(--v0c-navy);
    font-size: 18px;
    line-height: 1.25;
}
.v0c-preview-card small {
    display: block;
    margin-top: 8px;
    color: #4d667a;
    font-size: 13px;
    line-height: 1.55;
}
.v0c-preview-card-accent {
    background: linear-gradient(135deg, rgba(15,95,168,0.08), rgba(11,68,119,0.14));
    border-color: rgba(15,95,168,0.16);
}
.v0c-preview-card-accent strong { color: var(--v0c-primary-dark); font-size: 28px; line-height: 1.04; }
.v0c-booking-stage-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
    align-items: start;
}
.v0c-stage-card {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(8,32,50,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,253,0.98));
    box-shadow: 0 14px 34px rgba(15, 32, 51, 0.05);
    align-self: start;
}
.v0c-stage-card h3 {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.15;
    color: var(--v0c-navy);
}
.v0c-stage-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.v0c-stage-card-head p,
.v0c-stage-card-head small,
.v0c-stage-card small {
    color: var(--v0c-muted);
    line-height: 1.55;
}
.v0c-inline-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    color: #35556b;
    font-size: 13px;
    font-weight: 700;
}
.v0c-inline-check input {
    margin-top: 2px;
    accent-color: #0f5fa8;
}
.v0c-hospedes-grid {
    display: grid;
    gap: 14px;
}
.v0c-hospede-card {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(8,32,50,0.08);
    background: #fff;
}
.v0c-hospede-card-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.v0c-hospede-card-head strong {
    font-size: 15px;
    color: var(--v0c-navy);
}
.v0c-hospede-card-head small {
    max-width: 320px;
    font-size: 12px;
}
.v0c-hospede-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.v0c-booking-fields > div,
.v0c-hospede-fields > div,
.v0c-booking-options > div {
    min-width: 0;
}
.v0c-payment-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.v0c-payment-option {
    position: relative;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(8,32,50,0.08);
    border-radius: 18px;
    cursor: pointer;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    background: #fff;
}
.v0c-payment-option:hover {
    border-color: rgba(15,95,168,0.18);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15,95,168,0.06);
}
.v0c-payment-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.v0c-payment-option-rich.is-active {
    border-color: rgba(15,95,168,0.42);
    background: linear-gradient(180deg, rgba(250,253,255,1), rgba(236,245,252,1));
    box-shadow: 0 0 0 4px rgba(15,95,168,0.10), 0 20px 36px rgba(15,95,168,0.12);
    transform: translateY(-1px);
}
.v0c-payment-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.v0c-payment-title {
    display: block;
    font-size: 15px;
    font-weight: 900;
    color: var(--v0c-navy);
}
.v0c-payment-tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(15,95,168,0.08);
    color: rgba(11,68,119,0.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.v0c-payment-option-rich.is-active .v0c-payment-tag {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(135deg, #0f5fa8 0%, #0b4477 100%);
    color: #fff;
}
.v0c-payment-option small {
    color: var(--v0c-muted);
    line-height: 1.55;
}
.v0c-extras-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.v0c-extra-option {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(8,32,50,0.08);
    border-radius: 18px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.v0c-extra-option:hover {
    border-color: rgba(15,95,168,0.18);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15,95,168,0.06);
}
.v0c-extra-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.v0c-extra-option.is-active {
    border-color: rgba(15,95,168,0.42);
    background: linear-gradient(180deg, rgba(250,253,255,1), rgba(236,245,252,1));
    box-shadow: 0 0 0 4px rgba(15,95,168,0.10), 0 20px 36px rgba(15,95,168,0.12);
    transform: translateY(-1px);
}
.v0c-extra-option.is-active .v0c-payment-tag {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(135deg, #0f5fa8 0%, #0b4477 100%);
    color: #fff;
}
.v0c-extra-option-body {
    display: grid;
    gap: 8px;
    min-width: 0;
}
.v0c-extra-option-body small {
    color: var(--v0c-muted);
    line-height: 1.55;
}
.v0c-extra-option > strong {
    position: relative;
    z-index: 1;
    color: var(--v0c-primary-dark);
    font-size: 22px;
    line-height: 1.05;
    white-space: nowrap;
}
.v0c-extra-total-box {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-top: 16px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15,95,168,0.08), rgba(11,68,119,0.14));
    border: 1px solid rgba(15,95,168,0.16);
}
.v0c-extra-total-box span {
    color: var(--v0c-muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.v0c-extra-total-box strong {
    color: var(--v0c-primary-dark);
    font-size: 26px;
    line-height: 1.05;
    white-space: nowrap;
}
.v0c-payment-panel-set {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}
.v0c-payment-panel {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(8,32,50,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
}
.v0c-payment-panel p {
    margin: 0;
    color: #486175;
    line-height: 1.65;
}
.v0c-payment-breakdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.v0c-payment-breakdown div {
    padding: 16px;
    border-radius: 16px;
    background: rgba(15,95,168,0.05);
    border: 1px solid rgba(15,95,168,0.08);
}
.v0c-payment-breakdown span {
    display: block;
    margin-bottom: 8px;
    color: var(--v0c-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.v0c-payment-breakdown strong {
    display: block;
    color: var(--v0c-primary-dark);
    font-size: 24px;
    line-height: 1.05;
}
.v0c-payment-breakdown small {
    display: block;
    margin-top: 8px;
    color: #4d667a;
    font-size: 13px;
}
.v0c-payment-note {
    margin-top: 14px !important;
    font-size: 13px;
    color: #4d667a;
}
.v0c-textarea {
    min-height: 130px;
    resize: vertical;
    padding: 14px 15px;
    border: 1px solid rgba(8,32,50,0.14);
    border-radius: 16px;
    font-size: 14px;
    background: #fff;
    color: var(--v0c-ink);
}
.v0c-textarea:focus {
    outline: none;
    border-color: rgba(28,114,147,0.5);
    box-shadow: 0 0 0 4px rgba(28,114,147,0.11);
}
.v0c-step-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}
.v0c-form-note { margin-top: 14px; font-size: 13px; color: var(--v0c-muted); line-height: 1.6; }
.v0c-input.is-invalid,
.v0c-select.is-invalid,
.v0c-textarea.is-invalid {
    border-color: rgba(176,55,55,0.46) !important;
    box-shadow: 0 0 0 4px rgba(176,55,55,0.08) !important;
}

.v0c-summary-card { position: sticky; top: 22px; padding: 22px; }
.v0c-summary-card h3, .v0c-summary-card h4 { margin-top: 0; }
.v0c-summary-list div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(8,32,50,0.08);
}
.v0c-summary-list div:last-child { border-bottom: 0; }
.v0c-summary-list span { color: var(--v0c-muted); }
.v0c-summary-dates { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(8,32,50,0.08); color: #314e63; }
.v0c-summary-dates div { padding: 5px 0; }

.v0c-success-msg { text-align: center; padding: 60px 20px; }
.v0c-success-icon { width: 80px; height: 80px; border-radius: 50%; background: #0b8b6f; color: #fff; font-size: 40px; line-height: 80px; margin: 0 auto 20px; }
.v0c-success-account-box {
    max-width: 620px;
    margin: 24px auto;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(15,95,168,0.14);
    background: rgba(240,248,252,0.92);
    color: #244153;
}
.v0c-success-account-box strong,
.v0c-success-account-box span {
    display: block;
}
.v0c-success-account-box span {
    margin-top: 8px;
    line-height: 1.55;
}
.v0c-success-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.v0c-empty { text-align: center; padding: 60px 20px; color: var(--v0c-muted); }

.v0c-ports-timeline { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.v0c-port-stop {
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--v0c-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(8,32,50,0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.v0c-port-stop:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(8,32,50,0.13); }
.v0c-port-img { height: 130px; overflow: hidden; }
.v0c-port-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.v0c-port-stop:hover .v0c-port-img img { transform: scale(1.07); }
.v0c-port-stop.is-sea-day { background: linear-gradient(180deg, rgba(235,244,251,0.92) 0%, rgba(255,255,255,0.98) 100%); border-color: rgba(30,99,137,0.18); }
.v0c-port-img-placeholder {
    height: 130px;
    background: linear-gradient(135deg, #1c7293 0%, #082032 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    text-align: center;
}
.v0c-port-img-placeholder span { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.v0c-port-info { padding: 12px 14px 14px; }
.v0c-port-day { font-size: 11px; color: var(--v0c-sea-dark); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.v0c-port-name { font-size: 14px; font-weight: 800; color: var(--v0c-navy); line-height: 1.35; }
.v0c-port-meta { margin-top: 6px; color: #4f6475; font-size: 12px; line-height: 1.5; }

body.v0-cruzeiros-page {
    background: #f5f7fa;
}

body.v0-cruzeiros-page .container.grid-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.v0-cruzeiros-page .site-main,
body.v0-cruzeiros-page .content-area {
    margin: 0 !important;
    width: 100% !important;
}

body.v0-cruzeiros-page .inside-article,
body.v0-cruzeiros-page .comments-area,
body.v0-cruzeiros-page .page-header,
body.v0-cruzeiros-page .paging-navigation {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.v0-cruzeiros-page .entry-content,
body.v0-cruzeiros-page .site-main > * {
    margin-bottom: 0 !important;
}

body.v0-cruzeiros-page .site-content {
    padding: 0 0 40px !important;
}

body.v0-cruzeiros-page {
    overflow-x: hidden;
}

.v0c-frontend {
    --v0c-primary: #0f5fa8;
    --v0c-primary-dark: #0b4477;
    --v0c-accent: #2c7ecb;
    --v0c-bg: #f5f7fa;
    --v0c-surface: #ffffff;
    --v0c-surface-soft: #f8fafb;
    --v0c-border: #d8e1e8;
    --v0c-border-strong: #c2ced9;
    --v0c-ink: #162533;
    --v0c-muted: #5f7386;
    max-width: 1400px;
    padding: clamp(14px, 2vw, 28px);
    background: transparent;
}

.v0c-catalog-hero,
.v0c-search-form,
.v0c-card-cruise,
.v0c-overview-strip div,
.v0c-panel-box,
.v0c-summary-card,
.v0c-form-section,
.v0c-price-card,
.v0c-cabins-card,
.v0c-info-card,
.v0c-shipfact-card,
.v0c-official-cabin,
.v0c-area-card,
.v0c-sailing-row {
    background: var(--v0c-surface);
    border: 1px solid var(--v0c-border);
    box-shadow: 0 8px 24px rgba(15, 32, 51, 0.05);
}

.v0c-catalog-hero,
.v0c-conversion-strip {
    display: none;
}

.v0c-search-bar {
    margin: 0 0 24px;
}

.v0c-search-form {
    padding: 14px;
    border-radius: 26px;
    border: 1px solid rgba(15, 32, 51, 0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,252,0.96));
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(15, 32, 51, 0.07);
}

.v0c-search-fields-modern {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.7fr) minmax(0, 1.04fr) minmax(0, 0.92fr) auto;
    gap: 10px;
    align-items: stretch;
}

.v0c-search-fields-modern > * {
    min-width: 0 !important;
}

.v0c-search-field {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(15, 32, 51, 0.08);
    background: linear-gradient(180deg, #ffffff, #f9fbfd);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.v0c-search-field:hover {
    border-color: rgba(13, 94, 120, 0.22);
    box-shadow: 0 12px 26px rgba(15, 32, 51, 0.05);
    transform: translateY(-1px);
}

.v0c-search-field:focus-within {
    border-color: rgba(13, 94, 120, 0.48);
    box-shadow: 0 0 0 4px rgba(13, 94, 120, 0.08);
}

.v0c-search-field-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(13,94,120,0.06), rgba(13,94,120,0.1));
    color: var(--v0c-primary);
}

.v0c-search-field-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.v0c-search-field-copy {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v0c-search-field-label {
    display: block;
    color: #6b7c8d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.v0c-search-select-wrap {
    position: relative;
    display: block;
}

.v0c-search-select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%235f7386%22 stroke-width=%221.8%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3E%3Cpath d=%22m6 9 6 6 6-6%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.v0c-search-fields-modern .v0c-select {
    width: 100%;
    min-height: 0;
    padding: 0 28px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--v0c-ink);
    appearance: none;
    -webkit-appearance: none;
    text-overflow: ellipsis;
}

.v0c-search-fields-modern .v0c-select:focus {
    outline: none;
    box-shadow: none;
}

.v0c-search-field-wide {
    min-width: 0;
}

.v0c-search-actions {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.v0c-search-submit,
.v0c-search-reset {
    min-height: 72px;
    border-radius: 18px;
    padding-inline: 20px;
}

.v0c-search-submit {
    min-width: 156px;
    box-shadow: 0 14px 28px rgba(13, 94, 120, 0.16);
}

.v0c-search-reset {
    min-width: 104px;
}

.v0c-search-submit-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.v0c-search-submit-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.v0c-catalog-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 14px 4px 0;
    color: var(--v0c-muted);
    font-size: 14px;
}

.v0c-catalog-count {
    font-weight: 800;
    color: var(--v0c-ink);
}

.v0c-catalog-count {
    color: var(--v0c-ink);
    font-weight: 700;
}

.v0c-btn {
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
}

.v0c-btn-primary {
    background: var(--v0c-primary);
    color: #fff !important;
    box-shadow: none;
}

.v0c-btn-primary:hover {
    transform: translateY(-1px);
    background: var(--v0c-primary-dark);
    box-shadow: 0 10px 24px rgba(13, 94, 120, 0.16);
}

.v0c-btn-outline {
    background: #fff;
    color: var(--v0c-primary-dark) !important;
    border: 1px solid var(--v0c-border-strong);
}

.v0c-btn-whatsapp {
    background: #eaf8ef;
    color: #187848 !important;
    border: 1px solid #b9e2c7;
}

.v0c-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 18px;
}

.v0c-card-cruise {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 32, 51, 0.05);
}

.v0c-card-cruise:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15, 32, 51, 0.09);
}

.v0c-card-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.v0c-card-image,
.v0c-card-body,
.v0c-card-footer {
    position: relative;
    z-index: 1;
}

.v0c-card-title a,
.v0c-card-cta {
    position: relative;
    z-index: 3;
}

.v0c-card-image {
    height: 220px;
    background: #dfe8ee;
}

.v0c-badge-noites {
    background: rgba(8, 63, 86, 0.88);
}

.v0c-card-body {
    padding: 18px;
}

.v0c-card-topline {
    margin-bottom: 10px;
}

.v0c-card-company {
    color: var(--v0c-muted);
    font-size: 11px;
}

.v0c-card-next-date {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(13, 94, 120, 0.08);
    color: var(--v0c-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.v0c-card-title {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.15;
}

.v0c-card-route {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #35556b;
}

.v0c-card-excerpt {
    margin-bottom: 14px;
    color: var(--v0c-muted);
}

.v0c-card-meta {
    gap: 8px;
}

.v0c-card-meta span {
    padding: 7px 10px;
    background: var(--v0c-surface-soft);
    color: #496276;
    border: 1px solid rgba(198, 210, 219, 0.7);
}

.v0c-card-footer {
    padding: 16px 18px 18px;
    align-items: flex-end;
}

.v0c-card-price strong {
    font-size: 30px;
}

.v0c-card-cta {
    min-width: 148px;
}

.v0c-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.v0c-pagination-pages {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.v0c-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--v0c-border-strong);
    background: #fff;
    color: var(--v0c-ink);
    text-decoration: none;
    font-weight: 700;
}

.v0c-pagination-link.is-active {
    background: var(--v0c-primary);
    border-color: var(--v0c-primary);
    color: #fff;
}

.v0c-detail-hero {
    height: clamp(280px, 42vw, 460px);
    border-radius: 22px;
}

.v0c-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 24px;
}

.v0c-overview-strip {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.v0c-price-card {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
    color: var(--v0c-ink);
    border: 1px solid rgba(15,95,168,0.16);
}

.v0c-price-label,
.v0c-price-per,
.v0c-quick-facts span {
    color: var(--v0c-muted);
    opacity: 1;
}

.v0c-price-value {
    color: var(--v0c-primary-dark);
}

.v0c-price-dates,
.v0c-quick-facts div {
    background: var(--v0c-surface-soft);
    color: var(--v0c-ink);
}

.v0c-booking-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
}

.v0c-summary-card {
    top: 16px;
}

.v0c-sailing-row {
    gap: 16px;
}

@media (max-width: 1280px) {
    .v0c-search-fields-modern {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v0c-search-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .v0c-detail-grid {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .v0c-media-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
    }
}

@media (max-width: 1100px) {
    .v0c-detail-grid,
    .v0c-booking-layout {
        grid-template-columns: 1fr;
    }

    .v0c-detail-sidebar {
        position: static;
    }

    .v0c-media-layout {
        grid-template-columns: 1fr;
    }

    .v0c-media-dialog {
        width: min(920px, calc(100vw - 24px));
    }
}

@media (max-width: 860px) {
    .v0c-search-fields-modern,
    .v0c-conversion-strip,
    .v0c-included-grid,
    .v0c-info-panels,
    .v0c-booking-fields,
    .v0c-overview-strip,
    .v0c-route-summary-grid,
    .v0c-catalog-stats,
    .v0c-quick-facts,
    .v0c-booking-options,
    .v0c-booking-stage-grid,
    .v0c-price-preview,
    .v0c-payment-options,
    .v0c-payment-breakdown,
    .v0c-extras-options,
    .v0c-hospede-fields {
        grid-template-columns: 1fr;
    }

    .v0c-catalog-toolbar,
    .v0c-pagination,
    .v0c-step-actions,
    .v0c-step-head,
    .v0c-stage-card-head,
    .v0c-hospede-card-head {
        flex-direction: column;
        align-items: stretch;
    }

    .v0c-pagination-pages {
        justify-content: center;
    }

    .v0c-search-actions {
        justify-content: stretch;
    }

    .v0c-search-submit,
    .v0c-search-reset {
        flex: 1 1 auto;
    }

    .v0c-hero-actions {
        flex-direction: column;
    }

    .v0c-section-head {
        flex-direction: column;
        align-items: stretch;
    }

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

	    .v0c-address-result-head {
	        align-items: flex-start;
	    }
	}

@media (max-width: 640px) {
    .v0c-frontend {
        padding: 12px;
    }

    .v0c-catalog-hero {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .v0c-catalog-hero h1,
    .v0c-hero-title,
    .v0c-booking-title {
        font-size: 30px;
    }

	    .v0c-catalog-hero p,
	    .v0c-booking-subtitle {
	        font-size: 15px;
	    }

	    .v0c-cep-assist {
	        display: grid;
	        gap: 8px;
	    }

	    .v0c-address-manual-toggle {
	        width: 100%;
	        min-height: 42px;
	    }

	    .v0c-address-result-head {
	        flex-direction: column;
	        gap: 4px;
	    }

	    .v0c-search-fields-modern {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .v0c-search-form {
        padding: 14px;
        border-radius: 20px;
    }

    .v0c-search-field,
    .v0c-search-submit,
    .v0c-search-reset {
        min-height: 68px;
        border-radius: 18px;
    }

    .v0c-search-field {
        padding: 11px 13px;
        gap: 11px;
    }

    .v0c-search-field-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .v0c-search-fields-modern .v0c-select {
        font-size: 14px;
    }

    .v0c-search-actions {
        flex-direction: column;
    }

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

    .v0c-card-image {
        height: 208px;
    }

    .v0c-card-footer,
    .v0c-sailing-row {
        flex-direction: column;
        align-items: stretch;
    }

    .v0c-card-cta,
    .v0c-btn {
        width: 100%;
    }

    .v0c-detail-hero {
        height: 260px;
    }

    .v0c-hero-overlay {
        padding: 20px;
        background: linear-gradient(180deg, rgba(4,14,23,0.32) 0%, rgba(4,14,23,0.92) 74%);
    }

    .v0c-badge-company,
    .v0c-badge-noites {
        background: rgba(6,18,29,0.68);
        backdrop-filter: blur(10px);
    }

    .v0c-route-tags {
        gap: 8px;
        margin: 14px 0 16px;
    }

    .v0c-route-tag {
        min-height: 30px;
        padding: 0 12px;
        font-size: 11px;
    }

    .v0c-hero-actions .v0c-btn-primary,
    .v0c-price-card > .v0c-btn-primary,
    .v0c-price-card > .v0c-btn-whatsapp {
        display: none;
    }

    .v0c-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .v0c-gallery-item {
        height: 136px;
    }

    .v0c-cabins-card h3 {
        font-size: 24px;
    }

    .v0c-cabin-item {
        padding: 14px;
        gap: 12px;
        border-radius: 18px;
    }

    .v0c-cabin-photo {
        height: 160px;
        border-radius: 16px;
    }

    .v0c-cabin-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .v0c-cabin-price {
        justify-items: start;
        text-align: left;
    }

    .v0c-form-section {
        padding: 18px;
    }

    .v0c-booking-step {
        padding: 12px 14px;
    }

    .v0c-booking .v0c-input,
    .v0c-booking .v0c-select,
    .v0c-booking .v0c-textarea {
        font-size: 16px !important;
    }

    .v0c-cabin-choice {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .v0c-cabin-choice-title-row {
        display: grid;
        gap: 8px;
    }

    .v0c-cabin-choice.is-active::after {
        position: static;
        justify-self: start;
        margin-top: 4px;
    }

    .v0c-cabin-picker {
        grid-template-columns: 1fr;
    }

    .v0c-cabin-choice-photo {
        min-height: 168px;
    }

    .v0c-cabin-choice-footer {
        grid-column: 1;
        flex-direction: column;
        align-items: stretch;
    }

    .v0c-cabin-choice-price {
        justify-items: start;
    }

    .v0c-cabin-choice-body strong {
        padding-right: 0;
    }

    .v0c-summary-list div {
        flex-direction: column;
        align-items: flex-start;
    }

    .v0c-extra-option,
    .v0c-extra-total-box {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .v0c-extra-option > strong,
    .v0c-extra-total-box strong {
        white-space: normal;
    }

    .v0c-media-dialog,
    .v0c-tour-dialog {
        width: calc(100vw - 16px);
        margin: 8px auto;
        border-radius: 18px;
        max-height: calc(100svh - 16px);
        overflow-y: auto;
    }

    .v0c-media-layout {
        min-height: 0;
        max-height: none;
    }

    .v0c-media-panel {
        padding: 18px;
        overflow: visible;
    }

    .v0c-media-actions {
        position: sticky;
        bottom: 0;
        margin-top: auto;
        background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.98) 24%);
        padding-bottom: 2px;
    }

    .v0c-media-nav {
        top: auto;
        bottom: 14px;
        transform: none;
        width: 46px;
        height: 46px;
        font-size: 28px;
    }

    .v0c-media-stage {
        min-height: clamp(220px, 34svh, 300px);
    }

    .v0c-tour-frame-wrap iframe {
        height: clamp(260px, 48svh, 460px);
    }

    .v0c-mobile-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
        background: rgba(255,255,255,0.97);
        border-top: 1px solid var(--v0c-border);
        box-shadow: 0 -10px 30px rgba(8,32,50,0.12);
    }

    .v0c-mobile-cta-copy span {
        display: block;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--v0c-muted);
    }

    .v0c-mobile-cta-copy strong {
        display: block;
        margin-top: 4px;
        font-size: 22px;
        line-height: 1;
        color: var(--v0c-primary-dark);
    }

    .v0c-mobile-cta .v0c-btn {
        min-width: 0;
    }

    .v0c-detail {
        padding-bottom: 100px;
    }
}

@media (max-width: 430px) {
    .v0c-frontend {
        padding: 10px;
    }

    .v0c-card-body,
    .v0c-card-footer,
    .v0c-price-card,
    .v0c-cabins-card,
    .v0c-info-card,
    .v0c-route-summary-card,
    .v0c-form-section,
    .v0c-summary-card {
        padding-left: 14px;
        padding-right: 14px;
    }

    .v0c-booking-title {
        font-size: 28px;
    }

    .v0c-card-title {
        font-size: 20px;
    }

    .v0c-mobile-cta {
        flex-direction: column;
        align-items: stretch;
        padding-left: 12px;
        padding-right: 12px;
    }

    .v0c-mobile-cta-actions {
        grid-template-columns: 1fr;
    }

    .v0c-tour-header {
        padding: 18px 14px 14px;
    }

    .v0c-tour-frame-wrap {
        padding: 0 14px 14px;
    }
}

/* Public cruise experience: scoped hardening and conversion-first layout. */
body.v0-cruzeiros-page .site-header,
body.v0-cruzeiros-page #masthead,
body.v0-cruzeiros-page .site-footer,
body.v0-cruzeiros-page .footer-widgets,
body.v0-cruzeiros-page .entry-header {
    display: none !important;
}

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

.v0c-frontend {
    isolation: isolate;
    color: var(--v0c-ink);
}

.v0c-frontend :where(h1, h2, h3, h4, h5, h6) {
    color: var(--v0c-navy);
    font-family: inherit;
    font-weight: 850;
    letter-spacing: 0;
}

.v0c-frontend :where(p, li, span, small, label, strong, div) {
    font-family: inherit;
}

.v0c-frontend :where(button, input, select, textarea) {
    font-family: inherit;
}

.v0c-frontend :where(button) {
    color: var(--v0c-ink);
}

.v0c-frontend :where(a) {
    color: inherit;
}

.v0c-booking-title,
.v0c-booking-subtitle,
.v0c-step-head h2,
.v0c-step-head p {
    color: var(--v0c-ink) !important;
}

.v0c-booking-subtitle,
.v0c-step-head p {
    color: var(--v0c-muted) !important;
}

.v0c-hero-title,
.v0c-hero-route,
.v0c-hero-overlay {
    color: #ffffff !important;
}

.v0c-list-check li::before {
    content: "\2713";
}

.v0c-list-x li::before {
    content: "\2717";
}

.v0c-detail-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
}

.v0c-detail-jump-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(15,95,168,0.14);
    background: #ffffff;
    color: var(--v0c-primary-dark) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 8px 22px rgba(15, 32, 51, 0.05);
}

.v0c-detail-jump-nav a:hover,
.v0c-detail-jump-nav a:focus-visible {
    border-color: rgba(15,95,168,0.28);
    background: #f6fafc;
    color: var(--v0c-primary-dark) !important;
}

.v0c-detail > .v0c-overview-strip {
    display: none !important;
}

.v0c-inclusion-section {
    padding: 24px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--v0c-border);
    box-shadow: 0 8px 24px rgba(15, 32, 51, 0.05);
}

.v0c-inclusion-section .v0c-section-head {
    margin-bottom: 18px;
}

.v0c-inclusion-section .v0c-section-head h2 {
    color: var(--v0c-navy) !important;
}

.v0c-inclusion-section .v0c-section-head p {
    max-width: 620px;
    color: var(--v0c-muted) !important;
}

.v0c-included-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.v0c-inclusion-card {
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(15, 95, 168, 0.12);
    background: #f8fafb;
}

.v0c-inclusion-card.is-included {
    border-color: rgba(11, 139, 111, 0.22);
    background: linear-gradient(180deg, #ffffff 0%, #f1fbf7 100%);
}

.v0c-inclusion-card.is-excluded {
    border-color: rgba(204, 91, 72, 0.16);
    background: linear-gradient(180deg, #ffffff 0%, #fff8f6 100%);
}

.v0c-inclusion-card h3 {
    margin: 0 0 12px;
    color: var(--v0c-navy) !important;
    font-size: 18px;
    line-height: 1.2;
}

.v0c-inclusion-card .v0c-list li {
    color: #27465a !important;
    font-size: 14px;
}

.v0c-cabins-section {
    padding: 24px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--v0c-border);
    box-shadow: 0 8px 24px rgba(15, 32, 51, 0.05);
}

.v0c-cabin-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.v0c-cabin-list .v0c-cabin-item + .v0c-cabin-item {
    margin-top: 0;
}

.v0c-cabin-choice,
.v0c-cabin-choice:hover,
.v0c-cabin-choice:focus-visible,
.v0c-cabin-choice.is-active,
.v0c-cabin-choice-title-row,
.v0c-cabin-choice-body strong,
.v0c-cabin-choice-body small,
.v0c-cabin-choice-capacity,
.v0c-cabin-choice-price,
.v0c-cabin-choice-price small {
    color: var(--v0c-ink) !important;
}

.v0c-cabin-choice-body strong {
    color: var(--v0c-navy) !important;
}

.v0c-cabin-choice-body small {
    color: #4b6478 !important;
}

.v0c-cabin-choice-capacity,
.v0c-cabin-choice-price {
    color: var(--v0c-primary-dark) !important;
}

.v0c-cabin-choice-price small {
    color: var(--v0c-muted) !important;
}

.v0c-payment-option,
.v0c-payment-option:hover,
.v0c-payment-option:focus-within {
    color: var(--v0c-ink) !important;
}

.v0c-payment-option-rich.is-active {
    border-color: rgba(15,95,168,0.56);
    background: linear-gradient(180deg, #ffffff 0%, #edf6fc 100%);
}

.v0c-summary-card {
    border-color: rgba(15,95,168,0.18);
}

.v0c-floating-whatsapp {
    position: fixed;
    left: 16px;
    top: 50%;
    z-index: 70;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 999px;
    background: #128c5a;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 16px 34px rgba(18, 140, 90, 0.24);
}

.v0c-floating-whatsapp:hover,
.v0c-floating-whatsapp:focus-visible {
    background: #0d7148;
    color: #ffffff !important;
}

.v0c-mobile-cta-actions {
    grid-template-columns: 1fr;
}

@media (max-width: 640px) {
    .v0c-hero-title,
    .v0c-booking-title {
        max-width: 20ch !important;
        font-size: 26px !important;
        line-height: 1.08 !important;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
    }

    .v0c-booking-subtitle {
        max-width: 34ch;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .v0c-step-head p {
        max-width: 34ch;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .v0c-hero-actions .v0c-btn {
        white-space: normal;
    }

    .v0c-detail .v0c-mobile-cta {
        display: grid;
        grid-template-columns: minmax(0, 110px) minmax(0, 1fr);
        align-items: center;
        gap: 10px;
        padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    }

    .v0c-detail .v0c-mobile-cta-copy strong {
        font-size: 20px;
    }

    .v0c-detail .v0c-mobile-cta-actions {
        display: block;
    }

    .v0c-detail .v0c-mobile-cta .v0c-btn {
        min-height: 50px;
    }

    .v0c-route-summary-grid {
        gap: 0;
    }

    .v0c-route-summary-card {
        padding: 13px 16px;
        border-radius: 0;
        box-shadow: none;
    }

    .v0c-route-summary-card:first-child {
        border-radius: 18px 18px 0 0;
    }

    .v0c-route-summary-card:last-child {
        border-radius: 0 0 18px 18px;
    }

    .v0c-route-summary-card span {
        margin-bottom: 5px;
        font-size: 11px;
    }

    .v0c-route-summary-card strong {
        font-size: 16px;
    }

    .v0c-detail-jump-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 100%;
        gap: 8px;
    }

    .v0c-detail-jump-nav a {
        min-width: 0;
        width: 100%;
        justify-content: center;
        min-height: 40px;
        padding: 7px 8px;
        font-size: 11px;
        line-height: 1.15;
        white-space: normal;
        text-align: center;
    }

    .v0c-inclusion-section {
        padding: 18px;
        border-radius: 18px;
    }

    .v0c-included-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .v0c-cabins-section {
        padding: 18px;
        border-radius: 18px;
    }

    .v0c-cabin-list {
        grid-template-columns: 1fr;
    }

    .v0c-floating-whatsapp {
        left: 0;
        top: 38%;
        min-width: 34px;
        width: 34px;
        height: 92px;
        padding: 0;
        border-radius: 0 999px 999px 0;
        font-size: 0;
    }

    .v0c-floating-whatsapp::before {
        content: "WhatsApp";
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 0.04em;
    }
}

/* Product page redesign adapted from the high-conversion reference. */
.v0c-sales-page {
    max-width: none;
    padding: 0 0 96px;
    background: #f3f7fb;
    color: #071c2f;
}

.v0c-sales-page .v0c-btn {
    border-radius: 16px;
    min-height: 48px;
    gap: 8px;
}

.v0c-sales-page .v0c-btn-light {
    background: #ffffff;
    color: #073763 !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 24px rgba(7, 28, 47, 0.12);
}

.v0c-sales-page .v0c-btn-light:hover,
.v0c-sales-page .v0c-btn-light:focus-visible {
    background: #f8fafc;
    color: #073763 !important;
}

.v0c-product-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px clamp(14px, 2vw, 28px);
    border-bottom: 1px solid rgba(194, 206, 217, 0.78);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
}

.v0c-product-back,
.v0c-product-nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #071c2f !important;
    text-decoration: none;
    font-weight: 850;
}

.v0c-product-back {
    flex: 0 0 auto;
    font-size: 14px;
}

.v0c-product-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

.v0c-product-nav-links a {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    color: #5f7386 !important;
    font-size: 13px;
}

.v0c-product-nav-links a:hover,
.v0c-product-nav-links a:focus-visible {
    background: #eaf3fb;
    color: #0e5e9e !important;
}

.v0c-product-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.v0c-product-nav-actions .v0c-btn {
    min-height: 42px;
    padding: 0 16px;
}

.v0c-sales-hero {
    position: relative;
    width: min(1440px, calc(100vw - 32px));
    min-height: 520px;
    margin: 18px auto 22px;
    overflow: hidden;
    border-radius: 36px;
    background: #071c2f;
    box-shadow: 0 28px 70px rgba(7, 28, 47, 0.18);
}

.v0c-sales-hero .v0c-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.64;
}

.v0c-sales-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 26, 45, 0.96) 0%, rgba(6, 26, 45, 0.86) 48%, rgba(6, 26, 45, 0.28) 100%);
}

.v0c-sales-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    min-height: 520px;
    gap: 32px;
    align-items: end;
    padding: clamp(26px, 4vw, 48px);
}

.v0c-sales-hero-copy {
    max-width: 900px;
    padding: 22px 0;
}

.v0c-sales-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.v0c-sales-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 850;
    backdrop-filter: blur(10px);
}

.v0c-sales-hero .v0c-hero-title {
    max-width: 940px;
    margin: 24px 0 0;
    color: #ffffff !important;
    font-size: clamp(42px, 5.4vw, 78px);
    line-height: 0.96;
    letter-spacing: 0;
}

.v0c-sales-hero .v0c-hero-route {
    max-width: 720px;
    margin: 18px 0 0;
    color: #dbe7f0 !important;
    font-size: 18px;
    line-height: 1.7;
    opacity: 1;
}

.v0c-sales-hero .v0c-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.v0c-hero-decision-card {
    align-self: end;
    padding: 22px;
    border-radius: 32px;
    background: #ffffff;
    color: #071c2f;
    box-shadow: 0 28px 64px rgba(2, 10, 18, 0.28);
}

.v0c-hero-decision-card .v0c-price-value {
    color: #073763;
    font-size: 46px;
    letter-spacing: 0;
}

.v0c-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 20px 0;
}

.v0c-hero-stats div {
    padding: 12px 8px;
    border-radius: 18px;
    background: #f3f7fb;
    text-align: center;
}

.v0c-hero-stats strong {
    display: block;
    color: #071c2f;
    font-size: 20px;
    line-height: 1;
}

.v0c-hero-stats span {
    display: block;
    margin-top: 5px;
    color: #5f7386;
    font-size: 11px;
    font-weight: 800;
}

.v0c-route-tags,
.v0c-sales-layout {
    width: min(1440px, calc(100vw - 32px));
    margin-left: auto;
    margin-right: auto;
}

.v0c-sales-page > .v0c-route-tags {
    display: none;
}

.v0c-sales-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
    margin-top: 20px;
}

.v0c-sales-main {
    display: grid;
    gap: 28px;
}

.v0c-sales-summary {
    position: sticky;
    top: 86px;
}

.v0c-sales-summary .v0c-price-card {
    border-radius: 32px;
    padding: 22px;
    border-color: #d8e1e8;
    background: #ffffff;
    box-shadow: 0 24px 56px rgba(15, 32, 51, 0.09);
}

.v0c-sales-summary .v0c-summary-list {
    margin: 20px 0;
    padding: 16px;
    border-radius: 24px;
    background: #f8fafc;
}

.v0c-sales-summary .v0c-summary-list div {
    padding: 10px 0;
    border-bottom: 1px solid rgba(194, 206, 217, 0.72);
}

.v0c-sales-summary .v0c-summary-list div:last-child {
    border-bottom: 0;
}

.v0c-summary-note {
    margin: 14px 0 0;
    color: #5f7386;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.v0c-primary-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.v0c-primary-facts div,
.v0c-decision-section,
.v0c-route-section,
.v0c-about-section,
.v0c-experience-section,
.v0c-final-details,
.v0c-inclusion-section {
    border: 1px solid #d8e1e8;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 32, 51, 0.05);
}

.v0c-primary-facts div {
    padding: 20px;
    border-radius: 24px;
}

.v0c-primary-facts span,
.v0c-section-eyebrow {
    display: block;
    color: #0e5e9e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.v0c-primary-facts strong {
    display: block;
    margin-top: 8px;
    color: #071c2f;
    font-size: 18px;
    line-height: 1.3;
}

.v0c-decision-section,
.v0c-route-section,
.v0c-about-section,
.v0c-experience-section,
.v0c-final-details,
.v0c-inclusion-section {
    padding: clamp(20px, 3vw, 30px);
    border-radius: 32px;
}

.v0c-decision-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
}

.v0c-decision-panel {
    min-width: 0;
}

.v0c-decision-panel h3 {
    margin: 0 0 12px;
    color: #071c2f !important;
    font-size: 20px;
}

.v0c-panel-intro {
    margin: -6px 0 14px;
    color: #5f7386;
    font-size: 14px;
    line-height: 1.55;
}

.v0c-date-choice-list {
    display: grid;
    gap: 12px;
}

.v0c-date-choice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 82px;
    padding: 16px;
    border: 1px solid #d8e1e8;
    border-radius: 24px;
    background: #ffffff;
}

.v0c-date-choice.is-featured {
    border-color: rgba(14, 94, 158, 0.38);
    background: #eef7ff;
    box-shadow: 0 16px 28px rgba(14, 94, 158, 0.08);
}

.v0c-date-choice strong {
    display: block;
    color: #071c2f;
    font-size: 20px;
}

.v0c-date-choice span {
    display: block;
    margin-top: 4px;
    color: #5f7386;
    font-size: 13px;
    line-height: 1.5;
}

.v0c-date-choice em {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: #0e5e9e;
    color: #ffffff;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.v0c-decision-section .v0c-cabin-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v0c-decision-section .v0c-cabin-item {
    border-radius: 26px;
    padding: 14px;
    border-color: #d8e1e8;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 32, 51, 0.05);
}

.v0c-decision-section .v0c-cabin-photo {
    height: 136px;
    border-radius: 20px;
}

.v0c-cabin-tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eaf3fb;
    color: #0e5e9e;
    font-size: 11px;
    font-weight: 900;
}

.v0c-decision-cta {
    width: 100%;
    margin-top: 16px;
}

.v0c-inclusion-section {
    scroll-margin-top: 92px;
}

.v0c-inclusion-card {
    border-radius: 26px;
}

.v0c-route-section {
    scroll-margin-top: 92px;
}

.v0c-route-section .v0c-ports-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
}

.v0c-route-section .v0c-port-stop {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid #d8e1e8;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 32, 51, 0.05);
}

.v0c-route-section .v0c-port-img {
    height: 140px;
    border-radius: 0;
}

.v0c-route-section .v0c-port-info {
    padding: 16px;
}

.v0c-route-section .v0c-port-name {
    font-size: 20px;
}

.v0c-route-section .v0c-itinerary {
    margin-top: 20px;
}

.v0c-experience-section {
    scroll-margin-top: 92px;
}

.v0c-experience-section .v0c-areas-grid,
.v0c-experience-section .v0c-gallery {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.v0c-final-details {
    scroll-margin-top: 92px;
}

.v0c-final-details .v0c-shipfacts-grid + .v0c-info-panels {
    margin-top: 18px;
}

@media (max-width: 1180px) {
    .v0c-product-nav-links {
        display: none;
    }

    .v0c-sales-layout {
        grid-template-columns: 1fr;
    }

    .v0c-sales-summary {
        display: none;
    }
}

@media (max-width: 900px) {
    .v0c-sales-hero {
        width: min(100% - 20px, 760px);
        min-height: 420px;
        border-radius: 28px;
    }

    .v0c-sales-hero-inner {
        grid-template-columns: 1fr;
        min-height: 420px;
        padding: 22px;
    }

    .v0c-sales-hero-shade {
        background: linear-gradient(180deg, rgba(6, 26, 45, 0.36) 0%, rgba(6, 26, 45, 0.95) 78%);
    }

    .v0c-hero-decision-card {
        display: none;
    }

    .v0c-sales-hero .v0c-hero-title {
        font-size: 38px !important;
        line-height: 0.98 !important;
        max-width: 100% !important;
    }

    .v0c-sales-hero .v0c-hero-route {
        font-size: 15px;
        line-height: 1.55;
    }

    .v0c-primary-facts,
    .v0c-decision-grid,
    .v0c-included-grid {
        grid-template-columns: 1fr;
    }

    .v0c-decision-section .v0c-cabin-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .v0c-sales-page {
        padding-bottom: 106px;
    }

    .v0c-product-nav {
        display: none;
    }

    .v0c-sales-hero {
        min-height: 0;
        margin-top: 10px;
        margin-bottom: 56px;
        border-radius: 24px;
    }

    .v0c-sales-hero-inner {
        min-height: 0;
        padding: 18px;
        gap: 22px;
    }

    .v0c-sales-pills {
        gap: 6px;
    }

    .v0c-sales-pills span {
        min-height: 28px;
        padding: 0 10px;
        font-size: 11px;
    }

    .v0c-sales-hero .v0c-hero-title {
        font-size: 30px !important;
    }

    .v0c-sales-hero .v0c-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .v0c-sales-hero .v0c-hero-actions .v0c-btn,
    .v0c-sales-hero .v0c-hero-actions .v0c-btn-primary,
    .v0c-sales-hero .v0c-hero-actions .v0c-btn-light {
        display: inline-flex !important;
        width: 100%;
        min-height: 46px;
    }

    .v0c-hero-decision-card {
        display: block;
        padding: 20px;
        border-radius: 28px;
        box-shadow: 0 24px 54px rgba(2, 10, 18, 0.22);
    }

    .v0c-hero-decision-card .v0c-price-value {
        font-size: 42px;
        line-height: 0.98;
    }

    .v0c-hero-stats {
        margin: 16px 0;
    }

    .v0c-hero-stats div {
        border-radius: 16px;
        padding: 11px 6px;
    }

    .v0c-route-tags,
    .v0c-sales-layout {
        width: calc(100vw - 20px);
    }

    .v0c-sales-page > .v0c-route-tags,
    .v0c-primary-facts {
        display: none;
    }

    .v0c-sales-main {
        gap: 18px;
    }

    .v0c-primary-facts div,
    .v0c-decision-section,
    .v0c-route-section,
    .v0c-about-section,
    .v0c-experience-section,
    .v0c-final-details,
    .v0c-inclusion-section {
        border-radius: 24px;
    }

    .v0c-decision-section,
    .v0c-route-section,
    .v0c-about-section,
    .v0c-experience-section,
    .v0c-final-details,
    .v0c-inclusion-section {
        padding: 18px;
    }

    .v0c-date-choice {
        align-items: flex-start;
        flex-direction: column;
    }

    .v0c-route-section .v0c-ports-timeline,
    .v0c-experience-section .v0c-areas-grid,
    .v0c-experience-section .v0c-gallery {
        grid-template-columns: 1fr;
    }

    .v0c-detail .v0c-mobile-cta {
        grid-template-columns: minmax(0, 116px) minmax(0, 1fr);
        min-height: 78px;
        padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    }

    .v0c-sales-page .v0c-floating-whatsapp {
        display: none;
    }
}

/* Checkout refinement: same product language, no field/rule changes. */
.v0c-booking {
    max-width: 1320px;
    padding: clamp(16px, 2.4vw, 32px);
    background: #f3f7fb;
    color: #071c2f;
}

.v0c-booking .v0c-back-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: #071c2f !important;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.v0c-booking-title {
    max-width: 980px;
    margin: 14px 0 8px;
    color: #071c2f !important;
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.02;
    letter-spacing: 0;
}

.v0c-booking-subtitle {
    max-width: 760px;
    margin-bottom: 24px;
    color: #5f7386 !important;
    font-size: 15px;
    font-weight: 700;
}

.v0c-booking-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
}

.v0c-booking-steps {
    gap: 12px;
    margin-bottom: 18px;
}

.v0c-booking-step {
    min-height: 74px;
    padding: 16px;
    border-radius: 24px;
    border-color: #d8e1e8;
    background: #ffffff;
    color: #071c2f !important;
    box-shadow: 0 10px 24px rgba(15, 32, 51, 0.04);
}

.v0c-booking-step.is-active {
    border-color: rgba(14, 94, 158, 0.5);
    background: #eef7ff;
    box-shadow: 0 16px 30px rgba(14, 94, 158, 0.09);
}

.v0c-booking-step.is-complete {
    border-color: rgba(11, 139, 111, 0.28);
    background: #f0fbf7;
}

.v0c-booking-step span {
    width: 38px;
    height: 38px;
}

.v0c-form-section {
    border-radius: 32px;
    border-color: #d8e1e8;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 32, 51, 0.05);
}

.v0c-step-head {
    margin-bottom: 22px;
}

.v0c-step-head h2 {
    color: #071c2f !important;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.1;
}

.v0c-step-head p {
    max-width: 760px;
    color: #5f7386 !important;
    font-size: 15px;
    line-height: 1.7;
}

.v0c-field-card,
.v0c-stage-card,
.v0c-preview-card,
.v0c-payment-panel,
.v0c-payment-breakdown div {
    border: 1px solid #d8e1e8;
    border-radius: 26px;
    background: #f8fafc;
}

.v0c-booking .v0c-input,
.v0c-booking .v0c-select,
.v0c-booking .v0c-textarea {
    min-height: 56px;
    border-radius: 18px;
    border-color: #d8e1e8;
    background: #ffffff;
    color: #071c2f !important;
    font-weight: 750;
}

.v0c-booking .v0c-input:focus,
.v0c-booking .v0c-select:focus,
.v0c-booking .v0c-textarea:focus {
    border-color: #0e5e9e;
    box-shadow: 0 0 0 4px rgba(14, 94, 158, 0.12);
}

.v0c-cabin-picker {
    gap: 14px;
}

.v0c-cabin-choice {
    border-radius: 26px;
    border-color: #d8e1e8;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 32, 51, 0.04);
}

.v0c-cabin-choice.is-active {
    border-color: rgba(14, 94, 158, 0.58);
    background: #eef7ff;
    box-shadow: 0 16px 34px rgba(14, 94, 158, 0.11);
}

.v0c-cabin-choice.is-active::after {
    background: #0e5e9e;
    color: #ffffff;
    border-radius: 999px;
}

.v0c-payment-options-rich {
    gap: 14px;
}

.v0c-payment-option-rich {
    border-radius: 24px;
    border-color: #d8e1e8;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 32, 51, 0.04);
}

.v0c-payment-option-rich.is-active {
    border-color: rgba(14, 94, 158, 0.58);
    background: #eef7ff;
    box-shadow: 0 16px 34px rgba(14, 94, 158, 0.1);
}

.v0c-payment-tag {
    background: #0e5e9e;
    color: #ffffff;
}

.v0c-summary-card {
    border-radius: 32px;
    border-color: #d8e1e8;
    background: #ffffff;
    box-shadow: 0 24px 56px rgba(15, 32, 51, 0.09);
}

.v0c-summary-card h3 {
    color: #071c2f !important;
    font-size: 22px;
}

.v0c-summary-list {
    padding: 16px;
    border-radius: 24px;
    background: #f8fafc;
}

.v0c-summary-list div {
    border-bottom-color: rgba(194, 206, 217, 0.74);
}

.v0c-summary-list strong {
    color: #071c2f !important;
}

.v0c-summary-dates {
    border-radius: 24px;
    background: #eef7ff;
    border: 1px solid rgba(14, 94, 158, 0.12);
}

@media (max-width: 1100px) {
    .v0c-booking-layout {
        grid-template-columns: 1fr;
    }

    .v0c-booking-summary {
        order: 0;
    }
}

@media (max-width: 640px) {
    .v0c-booking {
        padding: 14px 10px 110px;
    }

    .v0c-booking-title {
        max-width: none !important;
        font-size: 30px !important;
    }

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

    .v0c-form-section {
        padding: 18px;
        border-radius: 24px;
    }

    .v0c-step-actions {
        gap: 10px;
    }
}

/* Catalog grid redesign: frontend-only structure for the cruise listing. */
.v0c-catalog-shell {
    --v0c-navy: #071c2f;
    --v0c-blue: #0e5e9e;
    --v0c-blue-dark: #073763;
    --v0c-catalog-bg: #f3f7fb;
    --v0c-catalog-soft: #f8fafc;
    --v0c-catalog-border: #d8e1e8;
    --v0c-catalog-text: #071c2f;
    --v0c-catalog-muted: #5f7386;
    width: 100%;
    max-width: 1500px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 28px;
    background: var(--v0c-catalog-bg);
    color: var(--v0c-catalog-text);
    overflow: clip;
}

.v0c-catalog-shell :where(h1, h2, h3, p, a, span, small, strong, label, div, button, select) {
    font-family: inherit;
    letter-spacing: 0;
}

.v0c-catalog-shell svg {
    display: block;
    width: 1em;
    height: 1em;
}

.v0c-catalog-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.v0c-catalog-eyebrow,
.v0c-search-heading p,
.v0c-card-price small,
.v0c-card-departure small {
    margin: 0;
    color: var(--v0c-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.v0c-catalog-intro h1 {
    margin: 4px 0 0;
    color: var(--v0c-navy) !important;
    font-size: 40px;
    line-height: 1.05;
}

.v0c-catalog-intro p:last-child {
    max-width: 680px;
    margin: 10px 0 0;
    color: var(--v0c-catalog-muted);
    font-size: 15px;
    line-height: 1.6;
}

.v0c-catalog-intro p:last-child strong {
    color: var(--v0c-navy);
}

.v0c-catalog-intro-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    color: var(--v0c-catalog-muted);
    font-size: 13px;
    font-weight: 800;
}

.v0c-catalog-intro-meta span:last-child {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--v0c-catalog-border);
    border-radius: 16px;
    background: #ffffff;
    color: #40586c;
    box-shadow: 0 8px 20px rgba(15, 32, 51, 0.05);
}

.v0c-catalog-shell .v0c-search-bar {
    margin: 0 0 28px;
}

.v0c-search-heading {
    display: none;
}

.v0c-catalog-shell .v0c-search-form {
    padding: 14px;
    border: 1px solid rgba(216, 225, 232, 0.94);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 50px rgba(15, 32, 51, 0.08);
    backdrop-filter: blur(18px);
}

.v0c-catalog-shell .v0c-search-fields-modern {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr) minmax(0, 0.78fr) minmax(0, 0.72fr) minmax(0, 0.78fr);
    gap: 12px;
    align-items: stretch;
}

.v0c-catalog-shell .v0c-search-fields-modern > * {
    min-width: 0 !important;
}

.v0c-catalog-shell .v0c-search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 14px;
    border: 1px solid rgba(216, 225, 232, 0.92);
    border-radius: 24px;
    background: #ffffff;
    color: var(--v0c-navy);
    box-shadow: 0 8px 20px rgba(15, 32, 51, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.v0c-catalog-shell .v0c-search-field:hover,
.v0c-catalog-shell .v0c-search-field:focus-within {
    border-color: rgba(14, 94, 158, 0.34);
    box-shadow: 0 14px 28px rgba(14, 94, 158, 0.08);
    transform: translateY(-1px);
}

.v0c-catalog-shell .v0c-search-field-icon,
.v0c-search-heading-icon {
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: #eaf3fb;
    color: var(--v0c-blue);
}

.v0c-catalog-shell .v0c-search-field-icon svg,
.v0c-search-heading-icon svg {
    width: 20px;
    height: 20px;
}

.v0c-catalog-shell .v0c-search-field-copy {
    min-width: 0;
}

.v0c-catalog-shell .v0c-search-field-label {
    display: block;
    color: #8a9aae;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.v0c-catalog-shell .v0c-search-select-wrap {
    position: relative;
    display: block;
    margin-top: 4px;
}

.v0c-catalog-shell .v0c-search-fields-modern .v0c-select {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 0 26px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--v0c-navy) !important;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    text-overflow: ellipsis;
}

.v0c-catalog-shell .v0c-search-fields-modern .v0c-select:focus {
    outline: none;
    box-shadow: none;
}

.v0c-catalog-shell .v0c-search-actions {
    display: flex;
    align-items: stretch;
    gap: 10px;
    grid-column: span 2;
    justify-content: flex-end;
}

.v0c-catalog-shell .v0c-search-field-wide {
    grid-column: span 2;
}

.v0c-catalog-shell .v0c-search-field-priority {
    border-color: rgba(14, 94, 158, 0.28);
    background: linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
    box-shadow: 0 16px 34px rgba(14, 94, 158, 0.09);
}

.v0c-catalog-shell .v0c-search-field-priority .v0c-search-field-icon {
    background: #083b61;
    color: #ffffff;
}

.v0c-catalog-shell .v0c-search-field-note {
    display: block;
    margin-top: 5px;
    color: #5f7386;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.35;
}

.v0c-catalog-shell .v0c-search-submit,
.v0c-catalog-shell .v0c-search-reset {
    min-height: 76px;
    border-radius: 24px;
    white-space: nowrap;
}

.v0c-catalog-shell .v0c-search-submit {
    min-width: 150px;
    background: var(--v0c-blue);
    box-shadow: 0 14px 30px rgba(14, 94, 158, 0.2);
}

.v0c-catalog-shell .v0c-search-submit:hover,
.v0c-catalog-shell .v0c-search-submit:focus-visible {
    background: #0b4d82 !important;
    color: #ffffff !important;
}

.v0c-catalog-shell .v0c-search-reset {
    min-width: 96px;
    color: var(--v0c-blue-dark) !important;
}

.v0c-catalog-shell .v0c-catalog-toolbar {
    display: none;
}

.v0c-catalog-shell .v0c-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    min-width: 0;
}

.v0c-catalog-shell .v0c-card-cruise {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--v0c-catalog-border);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 32, 51, 0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.v0c-catalog-shell .v0c-card-cruise:hover,
.v0c-catalog-shell .v0c-card-cruise:focus-within {
    border-color: rgba(14, 94, 158, 0.28);
    box-shadow: 0 26px 56px rgba(15, 32, 51, 0.13);
    transform: translateY(-3px);
}

.v0c-catalog-shell .v0c-card-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.v0c-catalog-shell .v0c-card-image,
.v0c-catalog-shell .v0c-card-body,
.v0c-catalog-shell .v0c-card-footer {
    position: relative;
    z-index: 1;
}

.v0c-catalog-shell .v0c-card-title a,
.v0c-catalog-shell .v0c-card-cta {
    position: relative;
    z-index: 3;
}

.v0c-catalog-shell .v0c-card-image {
    height: auto;
    min-height: 198px;
    aspect-ratio: 4 / 2.55;
    overflow: hidden;
    background: #dfe8ee;
}

.v0c-catalog-shell .v0c-card-image img,
.v0c-catalog-shell .v0c-card-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.v0c-catalog-shell .v0c-card-cruise:hover .v0c-card-image img {
    transform: scale(1.04);
}

.v0c-catalog-shell .v0c-card-placeholder {
    background: linear-gradient(135deg, #0e5e9e 0%, #071c2f 100%);
}

.v0c-card-image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 28, 47, 0.08) 0%, rgba(7, 28, 47, 0.18) 42%, rgba(7, 28, 47, 0.78) 100%);
}

.v0c-card-image-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 86px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.v0c-card-image-badges:empty {
    display: none;
}

.v0c-catalog-shell .v0c-badge-date,
.v0c-catalog-shell .v0c-badge-destaque,
.v0c-catalog-shell .v0c-badge-noites {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
    box-shadow: 0 8px 18px rgba(7, 28, 47, 0.12);
}

.v0c-catalog-shell .v0c-badge-date {
    background: rgba(255, 255, 255, 0.96);
    color: var(--v0c-blue-dark);
}

.v0c-catalog-shell .v0c-badge-destaque {
    position: static;
    background: #16a36d;
    color: #ffffff;
}

.v0c-catalog-shell .v0c-badge-noites {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--v0c-blue-dark);
    color: #ffffff;
}

.v0c-card-image-footer {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    color: #ffffff;
}

.v0c-card-image-copy {
    min-width: 0;
}

.v0c-card-image-copy span {
    display: block;
    color: #cfe0ef;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.v0c-card-image-copy strong {
    display: block;
    margin-top: 4px;
    overflow: hidden;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v0c-card-ship-icon {
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.v0c-card-ship-icon svg {
    width: 23px;
    height: 23px;
}

.v0c-catalog-shell .v0c-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    padding: 22px 22px 0;
}

.v0c-catalog-shell .v0c-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 12px;
}

.v0c-catalog-shell .v0c-card-company {
    min-width: 0;
    overflow: hidden;
    color: #7890a5;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.v0c-catalog-shell .v0c-card-next-date {
    flex: 0 0 auto;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eaf3fb;
    color: var(--v0c-blue);
    font-size: 11px;
    font-weight: 900;
}

.v0c-catalog-shell .v0c-card-title {
    margin: 0;
    color: var(--v0c-navy) !important;
    font-size: 23px;
    line-height: 1.08;
}

.v0c-catalog-shell .v0c-card-title a {
    color: var(--v0c-navy) !important;
    text-decoration: none;
}

.v0c-card-route-list {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.v0c-catalog-shell .v0c-card-route {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    margin: 0;
    color: #4f667a;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.v0c-catalog-shell .v0c-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin: 0;
    color: var(--v0c-blue);
}

.v0c-catalog-shell .v0c-icon svg {
    width: 18px;
    height: 18px;
}

.v0c-catalog-shell .v0c-card-route span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v0c-catalog-shell .v0c-card-excerpt {
    display: -webkit-box;
    margin: 16px 0 0;
    overflow: hidden;
    color: var(--v0c-catalog-muted);
    font-size: 14px;
    line-height: 1.62;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.v0c-catalog-shell .v0c-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.v0c-catalog-shell .v0c-card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid #dfe7ef;
    border-radius: 999px;
    background: #f8fafc;
    color: #5b7084;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.v0c-catalog-shell .v0c-card-footer {
    margin-top: auto;
    padding: 22px;
    border: 0;
}

.v0c-card-price-panel {
    display: grid;
    gap: 16px;
    width: 100%;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf6ff 100%);
}

.v0c-card-price-row {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.v0c-catalog-shell .v0c-card-price {
    min-width: 0;
    color: var(--v0c-catalog-muted);
}

.v0c-catalog-shell .v0c-card-price small,
.v0c-catalog-shell .v0c-card-departure small {
    display: block;
    color: #8a9aae;
    font-size: 11px;
    letter-spacing: 0.14em;
}

.v0c-catalog-shell .v0c-card-price strong {
    display: block;
    margin-top: 5px;
    color: var(--v0c-blue-dark) !important;
    font-size: 31px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
}

.v0c-card-departure {
    flex: 0 0 auto;
    text-align: left;
}

.v0c-card-departure strong {
    display: block;
    margin-top: 6px;
    color: var(--v0c-navy) !important;
    font-size: 14px;
    font-weight: 900;
}

.v0c-catalog-shell .v0c-card-cta {
    width: 100%;
    min-height: 50px;
    border-radius: 18px;
    background: var(--v0c-blue);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(14, 94, 158, 0.18);
}

.v0c-catalog-shell .v0c-card-cta svg {
    width: 17px;
    height: 17px;
}

.v0c-catalog-shell .v0c-card-cta:hover,
.v0c-catalog-shell .v0c-card-cta:focus-visible {
    background: #0b4d82 !important;
    color: #ffffff !important;
}

.v0c-catalog-shell .v0c-empty {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 52px 20px;
    border: 1px dashed #c2ced9;
    border-radius: 32px;
    background: #ffffff;
    color: var(--v0c-catalog-muted);
    text-align: center;
    box-shadow: 0 10px 26px rgba(15, 32, 51, 0.05);
}

.v0c-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 24px;
    background: #eaf3fb;
    color: var(--v0c-blue);
}

.v0c-empty-icon svg {
    width: 30px;
    height: 30px;
}

.v0c-catalog-shell .v0c-empty h2 {
    margin: 0;
    color: var(--v0c-navy) !important;
    font-size: 24px;
}

.v0c-catalog-shell .v0c-empty p {
    max-width: 440px;
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.v0c-catalog-shell .v0c-pagination {
    justify-content: center;
    margin-top: 26px;
}

.v0c-catalog-shell .v0c-pagination-link {
    border-radius: 999px;
    background: #ffffff;
    color: var(--v0c-navy);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(15, 32, 51, 0.05);
}

.v0c-catalog-shell .v0c-pagination-link.is-active {
    background: var(--v0c-blue);
    border-color: var(--v0c-blue);
    color: #ffffff;
}

@media (max-width: 1320px) {
    .v0c-catalog-shell .v0c-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) {
    .v0c-catalog-shell .v0c-search-fields-modern {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v0c-catalog-shell .v0c-search-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .v0c-catalog-shell .v0c-search-field-wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    .v0c-catalog-shell {
        padding: 18px;
    }

    .v0c-catalog-intro {
        flex-direction: column;
        align-items: stretch;
    }

    .v0c-catalog-intro-meta {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .v0c-search-heading {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        padding: 16px;
        border: 1px solid var(--v0c-catalog-border);
        border-radius: 26px;
        background: #ffffff;
        box-shadow: 0 10px 24px rgba(15, 32, 51, 0.05);
    }

    .v0c-search-heading p {
        font-size: 11px;
    }

    .v0c-search-heading strong {
        display: block;
        margin-top: 2px;
        color: var(--v0c-navy);
        font-size: 19px;
        font-weight: 900;
    }

    .v0c-catalog-shell .v0c-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .v0c-catalog-shell {
        padding: 14px 10px 24px;
        overflow: hidden;
    }

    .v0c-catalog-intro {
        margin-bottom: 14px;
    }

    .v0c-catalog-intro h1 {
        font-size: 30px;
        line-height: 1.08;
    }

    .v0c-catalog-intro p:last-child {
        font-size: 14px;
    }

    .v0c-catalog-intro-meta {
        gap: 8px;
        font-size: 12px;
    }

    .v0c-catalog-intro-meta span:last-child {
        min-height: 34px;
        border-radius: 14px;
    }

    .v0c-catalog-shell .v0c-search-bar {
        margin-bottom: 18px;
    }

    .v0c-catalog-shell .v0c-search-form {
        padding: 12px;
        border-radius: 24px;
    }

    .v0c-catalog-shell .v0c-search-fields-modern {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .v0c-catalog-shell .v0c-search-field {
        min-height: 66px;
        padding: 12px;
        border-radius: 20px;
    }

    .v0c-catalog-shell .v0c-search-field-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .v0c-catalog-shell .v0c-search-actions {
        display: grid;
        grid-template-columns: 1fr;
        grid-column: auto;
    }

    .v0c-catalog-shell .v0c-search-field-wide {
        grid-column: auto;
    }

    .v0c-catalog-shell .v0c-search-submit,
    .v0c-catalog-shell .v0c-search-reset {
        width: 100%;
        min-height: 52px;
        border-radius: 18px;
    }

    .v0c-catalog-shell .v0c-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .v0c-catalog-shell .v0c-card-cruise {
        border-radius: 28px;
    }

    .v0c-catalog-shell .v0c-card-image {
        min-height: 206px;
        aspect-ratio: 4 / 2.7;
    }

    .v0c-catalog-shell .v0c-card-body {
        padding: 20px 18px 0;
    }

    .v0c-catalog-shell .v0c-card-topline {
        display: none;
    }

    .v0c-catalog-shell .v0c-card-title {
        font-size: 24px;
    }

    .v0c-catalog-shell .v0c-card-route span:last-child {
        white-space: normal;
    }

    .v0c-catalog-shell .v0c-card-footer {
        padding: 20px 18px 18px;
    }

    .v0c-card-price-panel {
        padding: 16px;
        border-radius: 22px;
    }
}

@media (max-width: 430px) {
    .v0c-catalog-shell .v0c-card-image-badges {
        right: 78px;
        gap: 6px;
    }

    .v0c-catalog-shell .v0c-badge-date,
    .v0c-catalog-shell .v0c-badge-destaque,
    .v0c-catalog-shell .v0c-badge-noites {
        min-height: 28px;
        padding: 0 10px;
        font-size: 11px;
    }

    .v0c-card-image-footer {
        left: 14px;
        right: 14px;
    }

    .v0c-card-ship-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .v0c-card-price-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .v0c-card-departure {
        text-align: left;
    }

    .v0c-catalog-shell .v0c-card-price strong {
        font-size: 30px;
        white-space: normal;
    }
}

/* Catalog typography pass: closer to the high-conversion reference, scoped to grid only. */
.v0c-catalog-shell {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-kerning: normal;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.v0c-catalog-shell :where(h1, h2, h3, p, a, span, small, strong, label, div, button, select) {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
    letter-spacing: 0 !important;
}

.v0c-catalog-eyebrow,
.v0c-search-heading p,
.v0c-catalog-shell .v0c-search-field-label,
.v0c-catalog-shell .v0c-card-company,
.v0c-card-image-copy span,
.v0c-catalog-shell .v0c-card-price small,
.v0c-catalog-shell .v0c-card-departure small {
    font-size: 11px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.v0c-catalog-intro h1 {
    font-size: 44px;
    font-weight: 950;
    line-height: 1.02;
}

.v0c-catalog-intro p:last-child {
    font-size: 15px;
    font-weight: 650;
}

.v0c-catalog-intro p:last-child strong,
.v0c-catalog-intro-meta,
.v0c-catalog-intro-meta span {
    font-weight: 900;
}

.v0c-catalog-shell .v0c-search-fields-modern .v0c-select {
    font-size: 15px;
    font-weight: 900;
    line-height: 1.18;
}

.v0c-catalog-shell .v0c-search-submit,
.v0c-catalog-shell .v0c-search-reset,
.v0c-catalog-shell .v0c-card-cta,
.v0c-catalog-shell .v0c-pagination-link {
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.v0c-catalog-shell .v0c-badge-date,
.v0c-catalog-shell .v0c-badge-destaque,
.v0c-catalog-shell .v0c-badge-noites,
.v0c-catalog-shell .v0c-card-next-date {
    font-size: 13px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.v0c-card-image-copy strong {
    font-size: 16px;
    font-weight: 950;
    line-height: 1.05;
}

.v0c-catalog-shell .v0c-card-title {
    font-size: 24px;
    font-weight: 950;
    line-height: 1.04;
}

.v0c-catalog-shell .v0c-card-route {
    color: #4a6277;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.42;
}

.v0c-catalog-shell .v0c-card-excerpt {
    color: #667b8e;
    font-size: 14px;
    font-weight: 560;
    line-height: 1.62;
}

.v0c-catalog-shell .v0c-card-meta span {
    font-size: 12px;
    font-weight: 850;
}

.v0c-catalog-shell .v0c-card-price strong,
.v0c-card-departure strong {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.v0c-catalog-shell .v0c-card-price small,
.v0c-catalog-shell .v0c-card-departure small {
    color: #8a9aae;
}

.v0c-catalog-shell .v0c-card-price strong {
    margin-top: 7px;
    color: #073763 !important;
    font-size: 32px;
    font-weight: 950;
    line-height: 0.98;
}

.v0c-catalog-shell .v0c-card-price small:last-child {
    margin-top: 4px;
    color: #7d8fa3;
}

.v0c-card-departure strong {
    color: #071c2f !important;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.05;
}

@media (max-width: 760px) {
    .v0c-catalog-intro h1 {
        font-size: 32px;
        line-height: 1.05;
    }

    .v0c-search-heading strong {
        font-size: 21px;
        line-height: 1.08;
    }

    .v0c-catalog-shell .v0c-card-title {
        font-size: 25px;
        line-height: 1.05;
    }

    .v0c-catalog-shell .v0c-card-route {
        font-size: 14px;
    }

    .v0c-catalog-shell .v0c-card-excerpt {
        font-size: 14px;
        line-height: 1.64;
    }

    .v0c-catalog-shell .v0c-card-price strong {
        font-size: 38px;
    }

    .v0c-card-departure strong {
        font-size: 16px;
    }
}

@media (max-width: 430px) {
    .v0c-catalog-shell .v0c-badge-date,
    .v0c-catalog-shell .v0c-badge-destaque,
    .v0c-catalog-shell .v0c-badge-noites {
        font-size: 12px;
    }

    .v0c-catalog-shell .v0c-card-title {
        font-size: 24px;
    }

    .v0c-catalog-shell .v0c-card-price strong {
        font-size: 36px;
    }
}

/* Catalog card exact typography/layout pass from the supplied reference. */
.v0c-catalog-shell .v0c-card-cruise {
    border-radius: 28px;
    background: #ffffff;
}

.v0c-catalog-shell .v0c-card-image {
    min-height: 190px;
}

.v0c-card-image-footer {
    bottom: 18px;
}

.v0c-card-image-copy span,
.v0c-catalog-shell .v0c-card-company {
    color: #d8e8f3;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.16em !important;
}

.v0c-catalog-shell .v0c-card-company {
    color: #8da0b3;
    letter-spacing: 0.08em !important;
}

.v0c-card-image-copy strong {
    margin-top: 7px;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 850;
    line-height: 1;
}

.v0c-catalog-shell .v0c-card-body {
    padding: 28px 26px 0;
}

.v0c-catalog-shell .v0c-card-topline {
    margin-bottom: 18px;
}

.v0c-catalog-shell .v0c-card-title {
    color: #071c2f !important;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.02;
}

.v0c-catalog-shell .v0c-card-title a {
    color: #071c2f !important;
}

.v0c-card-route-list {
    gap: 10px;
    margin-top: 18px;
}

.v0c-catalog-shell .v0c-card-route {
    color: #425a70;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.35;
}

.v0c-catalog-shell .v0c-icon {
    color: #0e5e9e;
}

.v0c-catalog-shell .v0c-card-excerpt {
    margin-top: 20px;
    color: #50677f;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.58;
}

.v0c-catalog-shell .v0c-card-meta {
    gap: 9px;
    margin-top: 22px;
}

.v0c-catalog-shell .v0c-card-meta span {
    min-height: 32px;
    padding: 0 14px;
    border-color: #dbe5ef;
    border-radius: 999px;
    background: #f8fafc;
    color: #435970;
    font-size: 13px;
    font-weight: 800;
}

.v0c-catalog-shell .v0c-card-footer {
    padding: 28px 26px 24px;
}

.v0c-card-price-panel {
    gap: 17px;
    padding: 20px 18px 18px;
    border-radius: 24px;
    background: #f3f8fe;
}

.v0c-card-price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 14px;
}

.v0c-catalog-shell .v0c-card-price small:first-child {
    color: #91a2b4;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.18em !important;
    text-transform: uppercase;
}

.v0c-catalog-shell .v0c-card-price strong {
    margin-top: 9px;
    color: #073763 !important;
    font-size: 34px;
    font-weight: 850;
    line-height: 0.96;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
    white-space: nowrap;
}

.v0c-catalog-shell .v0c-card-price small:last-child {
    margin-top: 7px;
    color: #5f7386;
    font-size: 13px;
    font-weight: 750;
    line-height: 1;
    text-transform: none;
}

.v0c-card-departure {
    align-self: end;
    min-width: 70px;
    text-align: right;
}

.v0c-catalog-shell .v0c-card-departure small {
    color: #7f92a7;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: none;
}

.v0c-card-departure strong {
    margin-top: 5px;
    color: #071c2f !important;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.v0c-card-action-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 12px;
    align-items: center;
}

.v0c-catalog-shell .v0c-card-cta {
    min-height: 48px;
    border-radius: 17px;
    background: #1067a9;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 850;
    line-height: 1;
    box-shadow: 0 14px 24px rgba(14, 94, 158, 0.22);
}

.v0c-card-save-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #d9e3ee;
    border-radius: 17px;
    background: #ffffff;
    color: #073763;
}

.v0c-card-save-icon svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 761px) and (max-width: 1500px) {
    .v0c-catalog-shell .v0c-card-body {
        padding: 24px 20px 0;
    }

    .v0c-catalog-shell .v0c-card-footer {
        padding: 24px 20px 22px;
    }

    .v0c-catalog-shell .v0c-card-title {
        font-size: clamp(23px, 1.55vw, 26px);
    }

    .v0c-catalog-shell .v0c-card-price strong {
        font-size: clamp(29px, 2.2vw, 34px);
    }

    .v0c-card-departure strong {
        font-size: 14px;
    }
}

@media (max-width: 760px) {
    .v0c-catalog-shell .v0c-card-body {
        padding: 24px 22px 0;
    }

    .v0c-catalog-shell .v0c-card-title {
        font-size: 25px;
        line-height: 1.04;
    }

    .v0c-catalog-shell .v0c-card-route {
        font-size: 15px;
    }

    .v0c-catalog-shell .v0c-card-excerpt {
        font-size: 15px;
    }

    .v0c-catalog-shell .v0c-card-footer {
        padding: 24px 22px 24px;
    }

    .v0c-catalog-shell .v0c-card-price strong {
        font-size: 34px;
    }
}

@media (max-width: 430px) {
    .v0c-card-price-row {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .v0c-catalog-shell .v0c-card-price strong {
        font-size: 33px;
    }

    .v0c-card-departure {
        min-width: 66px;
        text-align: right;
    }

    .v0c-card-action-row {
        grid-template-columns: minmax(0, 1fr) 48px;
    }
}

/* Product detail typography pass matching the approved cruise grid. */
.v0c-sales-page {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-kerning: normal;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    overflow-x: hidden;
}

.v0c-sales-page :where(h1, h2, h3, h4, p, a, button, span, strong, small, em, div, li, label, input, select, textarea) {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
    letter-spacing: 0 !important;
}

.v0c-sales-page :where(.v0c-sales-layout, .v0c-sales-main, .v0c-sales-summary, .v0c-sales-hero, .v0c-sales-hero-inner, .v0c-sales-hero-copy, .v0c-hero-decision-card, .v0c-decision-section, .v0c-decision-grid, .v0c-decision-panel, .v0c-cabin-list, .v0c-cabin-item, .v0c-section, .v0c-section-head, .v0c-included-grid, .v0c-route-section, .v0c-experience-section, .v0c-final-details) {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.v0c-sales-page :where(.v0c-sales-hero-copy, .v0c-hero-decision-card, .v0c-section-head, .v0c-section-head > div, .v0c-decision-panel, .v0c-mobile-cta, .v0c-mobile-cta-copy) {
    width: 100%;
}

.v0c-sales-page :where(.v0c-hero-title, .v0c-section-head h2, .v0c-decision-panel h3, .v0c-cabin-info strong, .v0c-port-name, .v0c-shipfact-card strong, .v0c-area-label) {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
}

.v0c-sales-page :where(.v0c-price-value, .v0c-hero-stats strong, .v0c-date-choice strong, .v0c-cabin-price strong, .v0c-summary-list strong, .v0c-quick-facts strong, .v0c-mobile-cta-copy strong, .v0c-charge-list strong) {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.v0c-sales-page .v0c-btn,
.v0c-sales-page .v0c-btn-primary,
.v0c-sales-page .v0c-btn-outline,
.v0c-sales-page .v0c-btn-light {
    color: inherit;
    font-size: 15px;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
}

.v0c-sales-page .v0c-btn-primary {
    color: #ffffff !important;
}

.v0c-sales-page .v0c-btn-light,
.v0c-sales-page .v0c-btn-outline {
    color: #073763 !important;
}

.v0c-sales-page .v0c-product-back {
    color: #071c2f !important;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
}

.v0c-sales-page .v0c-product-nav-links a {
    color: #5f7386 !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.v0c-sales-page .v0c-product-nav-actions .v0c-btn {
    font-size: 14px;
}

.v0c-sales-page .v0c-sales-pills span,
.v0c-sales-page .v0c-route-tag {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
}

.v0c-sales-page .v0c-route-tag {
    color: #073763 !important;
}

.v0c-sales-page .v0c-sales-hero .v0c-hero-title {
    color: #ffffff !important;
    font-size: 72px !important;
    font-weight: 900;
    line-height: 0.96 !important;
    width: 100%;
    max-width: 100% !important;
}

.v0c-sales-page .v0c-sales-hero .v0c-hero-route {
    color: #dbe7f0 !important;
    font-size: 18px;
    font-weight: 450;
    line-height: 1.58;
}

.v0c-sales-page .v0c-price-label,
.v0c-sales-page .v0c-price-per,
.v0c-sales-page .v0c-primary-facts span,
.v0c-sales-page .v0c-section-eyebrow,
.v0c-sales-page .v0c-cabin-tag,
.v0c-sales-page .v0c-date-choice em,
.v0c-sales-page .v0c-port-day,
.v0c-sales-page .v0c-shipfact-card span,
.v0c-sales-page .v0c-summary-list span,
.v0c-sales-page .v0c-quick-facts span,
.v0c-sales-page .v0c-mobile-cta-copy span,
.v0c-sales-page .v0c-media-eyebrow,
.v0c-sales-page .v0c-media-counter {
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.v0c-sales-page .v0c-price-label,
.v0c-sales-page .v0c-primary-facts span,
.v0c-sales-page .v0c-section-eyebrow,
.v0c-sales-page .v0c-shipfact-card span,
.v0c-sales-page .v0c-mobile-cta-copy span,
.v0c-sales-page .v0c-media-eyebrow {
    color: #0e5e9e;
}

.v0c-sales-page .v0c-price-per,
.v0c-sales-page .v0c-summary-list span,
.v0c-sales-page .v0c-quick-facts span,
.v0c-sales-page .v0c-media-counter {
    color: #5f7386;
}

.v0c-sales-page .v0c-hero-decision-card .v0c-price-value,
.v0c-sales-page .v0c-sales-summary .v0c-price-value {
    color: #073763 !important;
    font-size: 52px;
    font-weight: 850;
    line-height: 0.96;
    white-space: nowrap;
}

.v0c-sales-page .v0c-sales-summary .v0c-price-value {
    font-size: 44px;
}

.v0c-sales-page .v0c-hero-stats strong {
    color: #071c2f;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.v0c-sales-page .v0c-hero-stats div {
    min-width: 0;
}

.v0c-sales-page .v0c-hero-stats span {
    color: #5f7386;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.v0c-sales-page .v0c-primary-facts strong {
    color: #071c2f !important;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.18;
}

.v0c-sales-page .v0c-section-head h2 {
    color: #071c2f !important;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.04;
}

.v0c-sales-page .v0c-section-head p,
.v0c-sales-page .v0c-panel-intro,
.v0c-sales-page .v0c-content,
.v0c-sales-page .v0c-content p,
.v0c-sales-page .v0c-list li,
.v0c-sales-page .v0c-area-copy,
.v0c-sales-page .v0c-itinerary-text,
.v0c-sales-page .v0c-summary-note {
    color: #50677f;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.58;
}

.v0c-sales-page .v0c-decision-panel h3,
.v0c-sales-page .v0c-inclusion-card h3,
.v0c-sales-page .v0c-panel-box h3,
.v0c-sales-page .v0c-media-panel h3,
.v0c-sales-page .v0c-tour-header h3 {
    color: #071c2f !important;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.08;
}

.v0c-sales-page .v0c-date-choice strong {
    color: #071c2f !important;
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
}

.v0c-sales-page .v0c-date-choice span {
    color: #50677f;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.v0c-sales-page .v0c-date-choice em {
    color: #ffffff;
    font-size: 11px;
}

.v0c-sales-page .v0c-cabin-info strong {
    color: #071c2f !important;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.08;
}

.v0c-sales-page .v0c-cabin-info p {
    color: #50677f;
    font-size: 14px;
    font-weight: 450;
    line-height: 1.55;
}

.v0c-sales-page .v0c-cabin-capacity {
    color: #5f7386;
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
}

.v0c-sales-page .v0c-cabin-price strong {
    color: #073763 !important;
    font-size: 25px;
    font-weight: 850;
    line-height: 0.98;
    white-space: nowrap;
}

.v0c-sales-page .v0c-cabin-price small {
    color: #5f7386;
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
}

.v0c-sales-page .v0c-inclusion-card .v0c-list li {
    font-size: 15px;
    font-weight: 750;
}

.v0c-sales-page .v0c-port-day {
    color: #0e5e9e;
    font-size: 12px;
}

.v0c-sales-page .v0c-port-name {
    color: #071c2f !important;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.05;
}

.v0c-sales-page .v0c-area-label {
    color: #071c2f !important;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.08;
}

.v0c-sales-page .v0c-shipfact-card strong {
    color: #071c2f !important;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.18;
}

.v0c-sales-page .v0c-summary-list strong {
    color: #071c2f !important;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.v0c-sales-page .v0c-quick-facts strong {
    color: #071c2f !important;
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
}

.v0c-sales-page .v0c-mobile-cta-copy strong {
    color: #073763 !important;
    font-size: 22px;
    font-weight: 850;
    line-height: 0.98;
    white-space: nowrap;
}

.v0c-sales-page .v0c-floating-whatsapp span {
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.v0c-sales-page .v0c-media-panel p,
.v0c-sales-page .v0c-media-loading strong,
.v0c-sales-page .v0c-tour-loading strong,
.v0c-sales-page .v0c-tour-loading small,
.v0c-sales-page .v0c-copy-toggle {
    color: #50677f;
    font-size: 15px;
    font-weight: 550;
    line-height: 1.58;
}

@media (max-width: 1180px) {
    .v0c-sales-page .v0c-sales-hero .v0c-hero-title {
        font-size: 54px !important;
    }
}

@media (max-width: 900px) {
    .v0c-sales-page .v0c-sales-hero .v0c-hero-title {
        font-size: 38px !important;
        line-height: 0.98 !important;
    }

    .v0c-sales-page .v0c-section-head h2 {
        font-size: 29px;
    }

    .v0c-sales-page .v0c-hero-decision-card .v0c-price-value {
        font-size: 46px;
    }
}

@media (max-width: 640px) {
    .v0c-sales-page .v0c-sales-pills span {
        font-size: 12px;
        font-weight: 850;
    }

    .v0c-sales-page .v0c-sales-hero .v0c-hero-title {
        font-size: 28px !important;
        line-height: 1 !important;
        width: auto;
        max-width: 16ch !important;
    }

    .v0c-sales-page .v0c-sales-hero .v0c-hero-route {
        font-size: 16px;
        line-height: 1.5;
    }

    .v0c-sales-page .v0c-hero-decision-card .v0c-price-value {
        font-size: 38px;
    }

    .v0c-sales-page .v0c-hero-decision-card {
        overflow: hidden;
    }

    .v0c-sales-page .v0c-hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .v0c-sales-page .v0c-hero-stats span {
        font-size: 11px;
    }

    .v0c-sales-page .v0c-section-head h2 {
        font-size: 26px;
        line-height: 1.08;
    }

    .v0c-sales-page .v0c-decision-section .v0c-section-head h2 {
        width: auto;
        max-width: 18ch !important;
    }

    .v0c-sales-page .v0c-decision-panel h3,
    .v0c-sales-page .v0c-inclusion-card h3,
    .v0c-sales-page .v0c-panel-box h3,
    .v0c-sales-page .v0c-media-panel h3,
    .v0c-sales-page .v0c-tour-header h3 {
        font-size: 21px;
    }

    .v0c-sales-page .v0c-primary-facts strong,
    .v0c-sales-page .v0c-shipfact-card strong,
    .v0c-sales-page .v0c-port-name,
    .v0c-sales-page .v0c-cabin-info strong,
    .v0c-sales-page .v0c-date-choice strong {
        font-size: 20px;
    }

    .v0c-sales-page .v0c-cabin-price strong {
        font-size: 24px;
    }

    .v0c-sales-page .v0c-mobile-cta-copy span {
        font-size: 11px;
    }

    .v0c-sales-page .v0c-mobile-cta-copy strong {
        font-size: 20px;
    }

    .v0c-sales-page.v0c-detail .v0c-mobile-cta {
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        grid-template-columns: minmax(0, 1fr) minmax(132px, 0.82fr);
        box-sizing: border-box;
    }

    .v0c-sales-page .v0c-mobile-cta-actions,
    .v0c-sales-page .v0c-mobile-cta .v0c-btn {
        min-width: 0;
    }

    .v0c-sales-page .v0c-mobile-cta .v0c-btn {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 390px) {
    .v0c-sales-page .v0c-sales-hero .v0c-hero-title {
        font-size: 25px !important;
        line-height: 1.04 !important;
        max-width: 15ch !important;
    }

    .v0c-sales-page .v0c-hero-decision-card .v0c-price-value {
        font-size: 34px;
    }

    .v0c-sales-page .v0c-mobile-cta-copy strong {
        font-size: 18px;
    }
}

.v0c-catalog-shell .v0c-card-price-row {
    grid-template-columns: minmax(150px, 1fr) minmax(112px, auto);
}

.v0c-catalog-shell .v0c-card-price,
.v0c-catalog-shell .v0c-card-departure {
    min-width: 0;
}

.v0c-catalog-shell .v0c-card-departure strong {
    overflow-wrap: normal;
    word-break: normal;
}

@media (max-width: 430px) {
    .v0c-catalog-shell .v0c-card-price-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .v0c-catalog-shell .v0c-card-departure {
        text-align: left;
    }
}

/* Booking checkout refinements: compact mobile steps and readable cabin states. */
.v0c-booking .v0c-cabin-choice:hover,
.v0c-booking .v0c-cabin-choice:focus-visible {
    border-color: rgba(14, 94, 158, 0.34) !important;
    background: #f6fbff !important;
    color: #071c2f !important;
    box-shadow: 0 14px 28px rgba(14, 94, 158, 0.10);
    transform: translateY(-1px);
}

.v0c-booking .v0c-cabin-choice:active {
    background: #eef7ff !important;
}

.v0c-booking .v0c-cabin-choice.is-active,
.v0c-booking .v0c-cabin-choice.is-active:hover,
.v0c-booking .v0c-cabin-choice.is-active:focus-visible {
    border-color: #0b4776 !important;
    background: #ffffff !important;
    color: #071c2f !important;
    box-shadow: inset 0 0 0 2px rgba(14, 94, 158, 0.18), 0 16px 30px rgba(14, 94, 158, 0.10);
    transform: translateY(-1px);
}

.v0c-booking .v0c-cabin-choice.is-active::after {
    background: #0b4776 !important;
    color: #ffffff !important;
}

.v0c-booking .v0c-cabin-choice,
.v0c-booking .v0c-cabin-choice.is-active,
.v0c-booking .v0c-cabin-choice:hover,
.v0c-booking .v0c-cabin-choice:focus-visible,
.v0c-booking .v0c-cabin-choice.is-active:hover,
.v0c-booking .v0c-cabin-choice.is-active:focus-visible,
.v0c-booking .v0c-cabin-choice-title-row,
.v0c-booking .v0c-cabin-choice-body strong {
    color: #071c2f !important;
}

.v0c-booking .v0c-cabin-choice-body small {
    color: #4b6478 !important;
}

.v0c-booking .v0c-cabin-choice-price {
    color: #0b4776 !important;
}

.v0c-booking .v0c-cabin-choice-price small {
    color: #6b7f91 !important;
}

@media (max-width: 900px) {
    .v0c-booking .v0c-booking-steps {
        display: flex;
        grid-template-columns: none !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 12px;
        padding: 6px 0;
    }

    .v0c-booking .v0c-booking-step {
        flex: 0 0 38px;
        width: 38px;
        min-width: 38px;
        min-height: 38px;
        height: 38px;
        justify-content: center;
        gap: 0;
        padding: 0;
        border-radius: 999px;
        border-color: #d8e1e8;
        background: #ffffff;
        box-shadow: 0 8px 18px rgba(15, 32, 51, 0.06);
        text-align: center;
    }

    .v0c-booking .v0c-booking-step strong {
        display: none !important;
    }

    .v0c-booking .v0c-booking-step span {
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: inherit;
        background: transparent;
        color: #0b4776;
        font-size: 14px;
        font-weight: 900;
    }

    .v0c-booking .v0c-booking-step.is-active {
        border-color: #0b4776;
        background: #0b4776;
        box-shadow: 0 10px 22px rgba(11, 71, 118, 0.20);
    }

    .v0c-booking .v0c-booking-step.is-active span {
        background: transparent;
        color: #ffffff;
    }

    .v0c-booking .v0c-booking-step.is-complete {
        border-color: rgba(11, 71, 118, 0.24);
        background: #eaf6fb;
    }

    .v0c-booking .v0c-booking-step.is-complete span {
        background: transparent;
        color: #0b4776;
    }
}

@media (max-width: 640px) {
    .v0c-booking .v0c-cabin-choice {
        min-height: 0;
        padding: 16px;
        border-radius: 24px;
    }

    .v0c-booking .v0c-cabin-choice-title-row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
    }

    .v0c-booking .v0c-cabin-choice-body strong {
        min-width: 0;
        font-size: 15px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .v0c-booking .v0c-cabin-choice-price {
        flex: 0 0 auto;
        justify-items: end;
        text-align: right;
        font-size: 19px;
    }
}

@media (max-width: 390px) {
    .v0c-booking .v0c-booking-step {
        flex-basis: 36px;
        width: 36px;
        min-width: 36px;
        height: 36px;
        min-height: 36px;
    }

    .v0c-booking .v0c-cabin-choice {
        padding: 14px;
    }

    .v0c-booking .v0c-cabin-choice-price {
        font-size: 18px;
    }
}

/* Checkout clarity redesign - scoped to the booking flow only. */
.v0c-booking {
    --v0c-redesign-bg: #eef6fb;
    --v0c-redesign-card: #ffffff;
    --v0c-redesign-ink: #071d31;
    --v0c-redesign-text: #2b455b;
    --v0c-redesign-muted: #6d8497;
    --v0c-redesign-line: #d7e5ef;
    --v0c-redesign-line-soft: #edf3f8;
    --v0c-redesign-blue: #0b69b7;
    --v0c-redesign-blue-dark: #074f89;
    --v0c-redesign-blue-soft: #e8f4ff;
    --v0c-redesign-green: #128764;
    --v0c-redesign-green-soft: #e8f8f2;
    --v0c-redesign-shadow: 0 24px 64px rgba(7, 29, 49, 0.11);
    box-sizing: border-box;
    width: min(100%, 1440px);
    max-width: 1440px;
    margin: 0 auto !important;
    padding: 28px clamp(14px, 3vw, 38px) 110px !important;
    overflow-x: hidden;
    color: var(--v0c-redesign-text);
    background:
        radial-gradient(circle at 10% 0%, rgba(11, 105, 183, 0.14), transparent 32rem),
        linear-gradient(180deg, #f8fcff 0%, var(--v0c-redesign-bg) 100%);
    border-radius: 0 !important;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.v0c-booking *,
.v0c-booking *::before,
.v0c-booking *::after {
    box-sizing: border-box;
    min-width: 0;
}

.v0c-booking :where(h1, h2, h3, h4, p) {
    margin: 0;
}

.v0c-checkout-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.v0c-booking .v0c-back-link {
    display: inline-flex !important;
    align-items: center;
    width: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--v0c-redesign-ink) !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.v0c-checkout-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.v0c-checkout-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid var(--v0c-redesign-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--v0c-redesign-ink);
    font-size: 12px;
    font-weight: 850;
    box-shadow: 0 8px 20px rgba(7, 29, 49, 0.04);
}

.v0c-checkout-trust span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--v0c-redesign-green);
    box-shadow: 0 0 0 4px rgba(18, 135, 100, 0.12);
}

.v0c-booking .v0c-admin-extra-summary {
    position: sticky;
    top: 8px;
    z-index: 70;
    display: grid;
    grid-template-columns: minmax(210px, 1.1fr) repeat(3, minmax(160px, 0.8fr));
    gap: 1px;
    overflow: hidden;
    margin: 0 0 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: linear-gradient(135deg, #071d31 0%, #073b63 62%, #0b69b7 100%);
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(7, 29, 49, 0.22);
}

.admin-bar .v0c-booking .v0c-admin-extra-summary {
    top: 40px;
}

.v0c-booking .v0c-admin-extra-summary-main,
.v0c-booking .v0c-admin-extra-summary-item {
    display: grid;
    align-content: center;
    min-height: 82px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.08);
}

.v0c-booking .v0c-admin-extra-summary-main {
    background: rgba(255, 255, 255, 0.12);
}

.v0c-booking .v0c-admin-extra-summary span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.v0c-booking .v0c-admin-extra-summary strong {
    display: block;
    margin-top: 6px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.v0c-booking .v0c-admin-extra-summary-main strong {
    font-size: 20px;
    letter-spacing: -0.025em;
}

.v0c-booking .v0c-admin-extra-summary small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 650;
}

.v0c-detail .v0c-admin-detail-extras {
    display: grid;
    gap: 14px;
    margin: 18px 0 22px;
    border: 1px solid rgba(7, 29, 49, 0.14);
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 18rem),
        linear-gradient(135deg, #061c32, #083b61);
    box-shadow: 0 22px 46px rgba(7, 29, 49, 0.15);
    padding: 20px;
    color: #ffffff;
}

.v0c-detail .v0c-admin-detail-extras-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr);
    gap: 16px;
    align-items: end;
}

.v0c-detail .v0c-admin-detail-extras-head span,
.v0c-detail .v0c-admin-detail-extras-grid span,
.v0c-detail .v0c-admin-detail-cabin-extras > span {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v0c-detail .v0c-admin-detail-extras-head strong {
    display: block;
    margin-top: 6px;
    color: #ffffff;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 950;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.v0c-detail .v0c-admin-detail-extras-head small,
.v0c-detail .v0c-admin-detail-extras-grid small,
.v0c-detail .v0c-admin-detail-cabin-extras small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.42;
}

.v0c-detail .v0c-admin-detail-extras-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.v0c-detail .v0c-admin-detail-extras-grid > div {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
}

.v0c-detail .v0c-admin-detail-extras-grid strong {
    display: block;
    margin: 7px 0 5px;
    color: #ffffff;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 950;
    letter-spacing: -0.045em;
    line-height: 1;
}

.v0c-detail .v0c-admin-detail-boleto-preview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    gap: 14px;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 14rem),
        rgba(255, 255, 255, 0.1);
    padding: 16px;
}

.v0c-detail .v0c-admin-detail-boleto-title span,
.v0c-detail .v0c-admin-detail-boleto-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v0c-detail .v0c-admin-detail-boleto-title strong {
    display: block;
    margin-top: 7px;
    color: #ffffff;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 950;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.v0c-detail .v0c-admin-detail-boleto-title small,
.v0c-detail .v0c-admin-detail-boleto-grid small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.42;
}

.v0c-detail .v0c-admin-detail-boleto-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.v0c-detail .v0c-admin-detail-boleto-grid > div {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.09);
    padding: 13px;
}

.v0c-detail .v0c-admin-detail-boleto-grid strong {
    display: block;
    margin-top: 7px;
    color: #ffffff;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 950;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.v0c-detail .v0c-admin-detail-cabin-extras {
    display: grid;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 12px;
}

.v0c-detail .v0c-admin-detail-cabin-extras > div {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 12px;
}

.v0c-detail .v0c-admin-detail-cabin-extras strong {
    min-width: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 920;
    line-height: 1.25;
}

.v0c-detail .v0c-admin-detail-cabin-extras small {
    text-align: right;
}

.v0c-checkout-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
    border-radius: 34px;
    background: linear-gradient(135deg, #073b63 0%, #0b69b7 64%, #6fb0e6 100%);
    color: #ffffff;
    box-shadow: var(--v0c-redesign-shadow);
}

.v0c-checkout-hero::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.v0c-checkout-hero::after {
    content: "";
    position: absolute;
    left: 40%;
    bottom: -150px;
    width: 560px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    transform: rotate(-8deg);
}

.v0c-checkout-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    align-items: end;
    padding: 34px;
}

.v0c-checkout-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.v0c-checkout-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #81e6bb;
}

.v0c-booking .v0c-booking-title {
    max-width: 900px;
    margin: 0 !important;
    color: #ffffff !important;
    font-size: clamp(38px, 5vw, 68px) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.045em !important;
    font-weight: 950 !important;
    white-space: normal !important;
}

.v0c-booking .v0c-booking-title span {
    display: block;
    color: inherit !important;
}

.v0c-booking .v0c-booking-title .v0c-hero-title-break {
    display: block;
}

.v0c-booking .v0c-booking-subtitle {
    max-width: 760px;
    margin: 14px 0 0 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
    font-weight: 650 !important;
    white-space: normal !important;
}

.v0c-booking .v0c-booking-subtitle span {
    display: block;
}

.v0c-hero-total {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
}

.v0c-hero-total small,
.v0c-hero-total span {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 900;
}

.v0c-hero-total small {
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.v0c-hero-total strong {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.v0c-hero-total span {
    margin-top: 8px;
    line-height: 1.4;
    font-weight: 650;
}

.v0c-booking .v0c-booking-form {
    display: block !important;
}

.v0c-booking .v0c-booking-steps {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    overflow: hidden;
    margin: 0 0 22px !important;
    padding: 0 !important;
    border: 1px solid var(--v0c-redesign-line) !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.84) !important;
    box-shadow: 0 16px 38px rgba(7, 29, 49, 0.07) !important;
}

.v0c-booking .v0c-booking-step {
    position: relative;
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
    min-height: 78px !important;
    width: auto !important;
    padding: 14px 16px !important;
    border: 0 !important;
    border-right: 1px solid var(--v0c-redesign-line-soft) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--v0c-redesign-text) !important;
    text-align: left !important;
    box-shadow: none !important;
}

.v0c-booking .v0c-booking-step:last-child {
    border-right: 0 !important;
}

.v0c-booking .v0c-booking-step > span {
    display: grid !important;
    place-items: center;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #d5e8f6 !important;
    border-radius: 50% !important;
    background: #eef7ff !important;
    color: var(--v0c-redesign-blue-dark) !important;
    font-size: 15px !important;
    font-weight: 950 !important;
}

.v0c-booking .v0c-booking-step strong {
    grid-column: 2;
    display: block;
    color: var(--v0c-redesign-ink) !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
    font-weight: 920 !important;
}

.v0c-booking .v0c-booking-step em {
    grid-column: 2;
    display: block;
    margin-top: 3px;
    color: var(--v0c-redesign-muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 650;
}

.v0c-booking .v0c-booking-step.is-active {
    background: linear-gradient(180deg, #ffffff, #edf8ff) !important;
}

.v0c-booking .v0c-booking-step.is-active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: var(--v0c-redesign-blue);
}

.v0c-booking .v0c-booking-step.is-active > span {
    border-color: var(--v0c-redesign-blue) !important;
    background: var(--v0c-redesign-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(11, 105, 183, 0.24);
}

.v0c-booking .v0c-booking-step.is-complete {
    background: linear-gradient(180deg, #edfbf6, #ffffff) !important;
}

.v0c-booking .v0c-booking-step.is-complete > span {
    border-color: var(--v0c-redesign-green) !important;
    background: var(--v0c-redesign-green) !important;
    color: #ffffff !important;
}

.v0c-mobile-summary-toggle {
    display: none;
}

.v0c-booking .v0c-booking-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 380px !important;
    gap: 24px !important;
    align-items: start !important;
    margin: 0 !important;
}

.v0c-booking-main {
    min-width: 0;
}

.v0c-booking .v0c-form-section {
    display: block;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--v0c-redesign-line) !important;
    border-radius: 34px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: var(--v0c-redesign-shadow) !important;
}

.v0c-booking .v0c-form-step[hidden] {
    display: none !important;
}

.v0c-booking .v0c-step-head {
    position: relative;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 18px !important;
    align-items: start !important;
    padding: 32px 32px 22px !important;
    border: 0 !important;
}

.v0c-booking .v0c-step-head::after {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--v0c-redesign-blue), #073b63);
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
    box-shadow: 0 16px 28px rgba(11, 105, 183, 0.2);
}

.v0c-booking [data-step-panel="1"] .v0c-step-head::after { content: "1"; }
.v0c-booking [data-step-panel="2"] .v0c-step-head::after { content: "2"; }
.v0c-booking [data-step-panel="3"] .v0c-step-head::after { content: "3"; }
.v0c-booking [data-step-panel="4"] .v0c-step-head::after { content: "4"; }

.v0c-booking .v0c-step-head h2 {
    color: var(--v0c-redesign-ink) !important;
    font-size: clamp(30px, 3vw, 44px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
    font-weight: 950 !important;
    white-space: normal !important;
}

.v0c-booking .v0c-step-head p {
    max-width: 780px;
    margin-top: 10px !important;
    color: var(--v0c-redesign-muted) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    font-weight: 520 !important;
    white-space: normal !important;
}

.v0c-booking .v0c-booking-options,
.v0c-booking .v0c-booking-stage-grid,
.v0c-booking .v0c-payment-options,
.v0c-booking .v0c-payment-panel-set,
.v0c-booking .v0c-stage-card-compact,
.v0c-booking .v0c-extras-options,
.v0c-booking .v0c-extra-total-box,
.v0c-booking .v0c-price-preview,
.v0c-booking .v0c-step-actions,
.v0c-booking .v0c-form-note,
.v0c-booking .v0c-booking-feedback {
    margin-left: 32px !important;
    margin-right: 32px !important;
}

.v0c-booking .v0c-booking-options {
    display: grid !important;
    grid-template-columns: minmax(260px, 0.84fr) minmax(280px, 1.16fr) !important;
    gap: 18px !important;
}

.v0c-booking .v0c-field-card {
    overflow: hidden;
    margin: 0 !important;
    padding: 20px !important;
    border: 1px solid var(--v0c-redesign-line) !important;
    border-radius: 26px !important;
    background: rgba(255, 255, 255, 0.78) !important;
    box-shadow: none !important;
}

.v0c-booking .v0c-field-card-cabins {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.v0c-booking .v0c-field-card label,
.v0c-booking .v0c-stage-card label,
.v0c-booking .v0c-hospede-card label {
    color: #38576f !important;
    font-size: 12.5px !important;
    font-weight: 850 !important;
}

.v0c-booking .v0c-input,
.v0c-booking .v0c-select,
.v0c-booking .v0c-textarea {
    min-height: 54px !important;
    margin-top: 7px !important;
    padding: 0 15px !important;
    border: 1px solid #c7d9e7 !important;
    border-radius: 16px !important;
    background: #fbfdff !important;
    color: var(--v0c-redesign-ink) !important;
    font-size: 15.5px !important;
    font-weight: 720 !important;
    box-shadow: none !important;
    outline: none !important;
}

.v0c-booking .v0c-textarea {
    min-height: 104px !important;
    padding: 15px !important;
}

.v0c-booking .v0c-input:focus,
.v0c-booking .v0c-select:focus,
.v0c-booking .v0c-textarea:focus {
    border-color: var(--v0c-redesign-blue) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(11, 105, 183, 0.12) !important;
}

.v0c-booking .v0c-field-note {
    color: var(--v0c-redesign-muted) !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    font-weight: 650 !important;
}

.v0c-booking .v0c-cabin-picker {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 14px !important;
}

.v0c-booking .v0c-cabin-choice {
    position: relative;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    min-height: 82px !important;
    width: 100% !important;
    padding: 18px !important;
    overflow: hidden;
    border: 1px solid var(--v0c-redesign-line) !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    color: inherit !important;
    text-align: left !important;
    box-shadow: none !important;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease !important;
}

.v0c-booking .v0c-cabin-choice::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: transparent;
}

.v0c-booking .v0c-cabin-choice:hover,
.v0c-booking .v0c-cabin-choice:focus-visible {
    border-color: rgba(11, 105, 183, 0.5) !important;
    box-shadow: 0 14px 30px rgba(7, 29, 49, 0.08) !important;
    transform: translateY(-1px) !important;
}

.v0c-booking .v0c-cabin-choice.is-active {
    border-color: var(--v0c-redesign-blue) !important;
    background: linear-gradient(135deg, var(--v0c-redesign-blue-soft), #ffffff 68%) !important;
    box-shadow: 0 18px 38px rgba(11, 105, 183, 0.14) !important;
    transform: none !important;
}

.v0c-booking .v0c-cabin-choice.is-active::before {
    background: var(--v0c-redesign-blue);
}

.v0c-booking .v0c-cabin-choice.is-active::after {
    content: "Selecionada" !important;
    position: static !important;
    width: max-content !important;
    margin-top: 10px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    background: var(--v0c-redesign-blue) !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    letter-spacing: 0.055em !important;
    text-transform: uppercase !important;
}

.v0c-booking .v0c-cabin-choice-title-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 16px !important;
    align-items: center !important;
}

.v0c-booking .v0c-cabin-choice-body strong {
    color: var(--v0c-redesign-ink) !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
    font-weight: 930 !important;
    letter-spacing: -0.03em !important;
}

.v0c-booking .v0c-cabin-choice-price {
    display: grid !important;
    justify-items: end !important;
    min-width: 142px !important;
    color: var(--v0c-redesign-blue-dark) !important;
    font-size: 27px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.045em !important;
    text-align: right !important;
    white-space: nowrap !important;
}

.v0c-booking .v0c-cabin-choice-price small {
    margin-top: 5px !important;
    color: var(--v0c-redesign-muted) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

.v0c-booking .v0c-price-preview {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-top: 18px !important;
    padding: 18px 20px !important;
    border: 1px solid rgba(11, 105, 183, 0.22) !important;
    border-radius: 26px !important;
    background: linear-gradient(135deg, #f2f9ff, #ffffff) !important;
}

.v0c-booking .v0c-preview-card {
    min-height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.v0c-booking .v0c-preview-card span,
.v0c-booking .v0c-preview-card small {
    color: var(--v0c-redesign-muted) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

.v0c-booking .v0c-preview-card strong {
    color: var(--v0c-redesign-ink) !important;
    font-size: 17px !important;
    line-height: 1.25 !important;
    font-weight: 930 !important;
}

.v0c-booking .v0c-preview-card-accent strong {
    color: var(--v0c-redesign-blue-dark) !important;
    font-size: 28px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.045em !important;
}

.v0c-booking .v0c-booking-stage-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 18px !important;
}

.v0c-booking .v0c-stage-card,
.v0c-booking .v0c-hospede-card,
.v0c-booking .v0c-payment-panel-set,
.v0c-booking .v0c-stage-card-compact {
    border: 1px solid var(--v0c-redesign-line) !important;
    border-radius: 26px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    box-shadow: none !important;
}

.v0c-booking .v0c-stage-card {
    padding: 20px !important;
}

.v0c-booking .v0c-stage-card h3,
.v0c-booking .v0c-stage-card-head h3,
.v0c-booking .v0c-hospede-card-head strong {
    color: var(--v0c-redesign-ink) !important;
    font-size: 20px !important;
    line-height: 1.15 !important;
    font-weight: 930 !important;
    letter-spacing: -0.035em !important;
}

.v0c-booking .v0c-stage-card-head p,
.v0c-booking .v0c-stage-card-head small,
.v0c-booking .v0c-hospede-card-head small {
    color: var(--v0c-redesign-muted) !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    font-weight: 650 !important;
}

.v0c-booking .v0c-booking-fields,
.v0c-booking .v0c-hospede-fields {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.v0c-booking .v0c-field-full {
    grid-column: 1 / -1 !important;
}

.v0c-booking .v0c-inline-check {
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: start !important;
    margin-top: 16px !important;
    padding: 15px !important;
    border: 1px solid rgba(18, 135, 100, 0.25) !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, var(--v0c-redesign-green-soft), #ffffff) !important;
}

.v0c-booking .v0c-inline-check input {
    width: 20px !important;
    height: 20px !important;
    accent-color: var(--v0c-redesign-green);
}

.v0c-booking .v0c-extras-options {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

.v0c-booking .v0c-extra-option {
    position: relative;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 18px !important;
    align-content: space-between !important;
    min-height: 184px !important;
    padding: 20px !important;
    overflow: hidden;
    border: 1px solid var(--v0c-redesign-line) !important;
    border-radius: 28px !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.v0c-booking .v0c-extra-option::before {
    content: "";
    position: absolute;
    right: -54px;
    top: -54px;
    width: 134px;
    height: 134px;
    border-radius: 50%;
    background: var(--v0c-redesign-blue-soft);
}

.v0c-booking .v0c-extra-option:hover {
    border-color: rgba(11, 105, 183, 0.5) !important;
    box-shadow: 0 16px 34px rgba(7, 29, 49, 0.08) !important;
    transform: translateY(-2px) !important;
}

.v0c-booking .v0c-extra-option.is-active {
    border-color: var(--v0c-redesign-green) !important;
    background: linear-gradient(135deg, var(--v0c-redesign-green-soft), #ffffff 68%) !important;
    box-shadow: 0 18px 38px rgba(18, 135, 100, 0.12) !important;
}

.v0c-booking .v0c-extra-option-body,
.v0c-booking .v0c-extra-option > strong {
    position: relative;
    z-index: 1;
}

.v0c-booking .v0c-payment-title {
    color: var(--v0c-redesign-ink) !important;
    font-size: 21px !important;
    line-height: 1.08 !important;
    font-weight: 940 !important;
    letter-spacing: -0.04em !important;
}

.v0c-booking .v0c-extra-option-body small {
    margin-top: 9px !important;
    color: var(--v0c-redesign-muted) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-weight: 650 !important;
}

.v0c-booking .v0c-extra-option > strong {
    align-self: end;
    color: var(--v0c-redesign-blue-dark) !important;
    font-size: 31px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.055em !important;
}

.v0c-booking .v0c-extra-total-box {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 16px !important;
    align-items: center !important;
    margin-top: 18px !important;
    padding: 22px !important;
    border: 0 !important;
    border-radius: 28px !important;
    background: linear-gradient(135deg, var(--v0c-redesign-ink), #073b63) !important;
    color: #ffffff !important;
    box-shadow: 0 22px 45px rgba(7, 29, 49, 0.16) !important;
}

.v0c-booking .v0c-extra-total-box span {
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
}

.v0c-booking .v0c-extra-total-box strong {
    color: #ffffff !important;
    font-size: 40px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.055em !important;
}

.v0c-booking .v0c-payment-options-rich {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.v0c-booking .v0c-payment-option-rich {
    position: relative;
    overflow: hidden;
    min-height: 118px;
    padding: 17px !important;
    border: 1px solid var(--v0c-redesign-line) !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.v0c-booking .v0c-payment-option-rich::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: transparent;
}

.v0c-booking .v0c-payment-option-rich:hover {
    border-color: rgba(11, 105, 183, 0.5) !important;
    box-shadow: 0 14px 30px rgba(7, 29, 49, 0.08) !important;
    transform: translateY(-1px) !important;
}

.v0c-booking .v0c-payment-option-rich.is-active {
    border-color: var(--v0c-redesign-blue) !important;
    background: linear-gradient(135deg, var(--v0c-redesign-blue-soft), #ffffff 72%) !important;
}

.v0c-booking .v0c-payment-option-rich.is-active::before {
    background: var(--v0c-redesign-blue);
}

.v0c-booking .v0c-payment-panel-set {
    overflow: hidden;
    margin-top: 18px !important;
    padding: 0 !important;
    box-shadow: 0 16px 38px rgba(7, 29, 49, 0.08) !important;
}

.v0c-booking .v0c-payment-panel {
    padding: 24px !important;
}

.v0c-booking .v0c-payment-breakdown {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    overflow: hidden;
    border: 1px solid var(--v0c-redesign-line-soft);
    border-radius: 22px;
}

.v0c-booking .v0c-payment-breakdown > div {
    padding: 18px !important;
    border-right: 1px solid var(--v0c-redesign-line-soft);
}

.v0c-booking .v0c-payment-breakdown > div:last-child {
    border-right: 0;
}

.v0c-booking .v0c-payment-breakdown span,
.v0c-booking .v0c-payment-breakdown small {
    color: var(--v0c-redesign-muted) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.v0c-booking .v0c-payment-breakdown strong {
    color: var(--v0c-redesign-blue-dark) !important;
    font-size: 27px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.045em !important;
}

.v0c-booking .v0c-step-actions {
    display: flex !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin-top: 22px !important;
    margin-bottom: 32px !important;
}

.v0c-booking .v0c-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 56px !important;
    padding: 0 22px !important;
    border-radius: 16px !important;
    font-size: 14px !important;
    font-weight: 940 !important;
    white-space: nowrap !important;
}

.v0c-booking .v0c-btn-primary {
    min-width: 260px !important;
    border: 1px solid transparent !important;
    background: linear-gradient(180deg, #1280d9, #0a60a9) !important;
    color: #ffffff !important;
    box-shadow: 0 18px 34px rgba(11, 105, 183, 0.22) !important;
}

.v0c-booking .v0c-btn-outline {
    border: 1px solid #c7d9e7 !important;
    background: #ffffff !important;
    color: var(--v0c-redesign-blue-dark) !important;
}

.v0c-booking .v0c-booking-summary {
    position: sticky;
    top: 18px;
    min-width: 0;
}

.v0c-booking .v0c-summary-card {
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--v0c-redesign-line) !important;
    border-radius: 32px !important;
    background: #ffffff !important;
    box-shadow: var(--v0c-redesign-shadow) !important;
}

.v0c-summary-ticket-head {
    padding: 22px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 46%),
        linear-gradient(135deg, var(--v0c-redesign-ink), #073b63);
}

.v0c-summary-ticket-head small {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.v0c-summary-ticket-head strong {
    display: block;
    margin-top: 8px;
    color: #ffffff !important;
    font-size: 25px;
    line-height: 1.06;
    font-weight: 940;
    letter-spacing: -0.04em;
}

.v0c-summary-ticket-head span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 650;
}

.v0c-summary-total-card {
    margin: 20px 20px 4px;
    padding: 18px;
    border: 1px solid rgba(11, 105, 183, 0.18);
    border-radius: 24px;
    background: linear-gradient(135deg, var(--v0c-redesign-blue-soft), #ffffff);
}

.v0c-summary-total-card span {
    display: block;
    color: var(--v0c-redesign-muted);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.v0c-summary-total-card strong {
    display: block;
    margin-top: 6px;
    color: var(--v0c-redesign-blue-dark) !important;
    font-size: 38px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.v0c-summary-total-card p {
    margin-top: 7px;
    color: var(--v0c-redesign-muted);
    font-size: 12.5px;
    line-height: 1.4;
    font-weight: 650;
}

.v0c-booking .v0c-summary-list {
    display: grid !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 20px 16px !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.v0c-booking .v0c-summary-group-title {
    display: block !important;
    padding: 14px 0 9px !important;
    border-top: 1px dashed #cbdce8 !important;
    color: var(--v0c-redesign-muted) !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.09em !important;
}

.v0c-booking .v0c-summary-group-title:first-child {
    border-top: 0 !important;
}

.v0c-booking .v0c-summary-list > div:not(.v0c-summary-group-title) {
    display: grid !important;
    grid-template-columns: 0.78fr 1.22fr !important;
    gap: 14px !important;
    align-items: baseline !important;
    padding: 5px 0 !important;
    border: 0 !important;
}

.v0c-booking .v0c-summary-list span {
    color: var(--v0c-redesign-muted) !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 620 !important;
}

.v0c-booking .v0c-summary-list strong {
    color: var(--v0c-redesign-ink) !important;
    font-size: 13.5px !important;
    line-height: 1.32 !important;
    font-weight: 900 !important;
    text-align: right !important;
}

.v0c-booking .v0c-summary-dates {
    margin: 0 20px 20px !important;
    padding: 20px !important;
    border: 1px solid rgba(11, 105, 183, 0.18) !important;
    border-radius: 28px !important;
    background: linear-gradient(180deg, #eef8ff, #ffffff) !important;
    color: var(--v0c-redesign-muted) !important;
}

.v0c-booking .v0c-summary-dates h4 {
    color: var(--v0c-redesign-ink) !important;
    font-size: 18px !important;
    font-weight: 930 !important;
    letter-spacing: -0.03em !important;
}

.v0c-mobile-checkout-bar {
    display: none;
}

@media (max-width: 1100px) {
    .v0c-checkout-hero-content {
        grid-template-columns: 1fr;
    }

    .v0c-hero-total {
        max-width: 430px;
    }

    .v0c-booking .v0c-booking-layout {
        grid-template-columns: minmax(0, 1fr) 340px !important;
    }

    .v0c-booking .v0c-booking-options,
    .v0c-booking .v0c-booking-stage-grid {
        grid-template-columns: 1fr !important;
    }

    .v0c-booking .v0c-field-card-cabins {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

@media (max-width: 900px) {
    .v0c-booking {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 12px 10px 104px !important;
    }

    .v0c-checkout-trust,
    .v0c-hero-total {
        display: none !important;
    }

    .v0c-checkout-top {
        margin-bottom: 12px;
    }

    .v0c-booking .v0c-admin-extra-summary {
        grid-template-columns: 1fr 1fr !important;
        gap: 1px !important;
        margin-bottom: 14px !important;
        border-radius: 20px !important;
    }

    .admin-bar .v0c-booking .v0c-admin-extra-summary {
        top: 54px;
    }

    .v0c-booking .v0c-admin-extra-summary-main {
        grid-column: 1 / -1;
    }

    .v0c-booking .v0c-admin-extra-summary-main,
    .v0c-booking .v0c-admin-extra-summary-item {
        min-height: 74px;
        padding: 14px !important;
    }

    .v0c-booking .v0c-admin-extra-summary strong {
        font-size: 20px !important;
    }

    .v0c-booking .v0c-admin-extra-summary-main strong {
        font-size: 18px !important;
    }

    .v0c-checkout-hero {
        margin-bottom: 14px;
        border-radius: 26px;
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
    }

    .v0c-checkout-hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px;
    }

    .v0c-booking .v0c-booking-title {
        max-width: 100% !important;
        font-size: clamp(26px, 6.9vw, 30px) !important;
        line-height: 1.02 !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }

    .v0c-booking .v0c-booking-title span {
        overflow-wrap: anywhere !important;
    }

    .v0c-booking .v0c-booking-subtitle {
        overflow-wrap: anywhere !important;
    }

    .v0c-booking .v0c-booking-subtitle {
        font-size: 14px !important;
    }

    .v0c-booking .v0c-booking-steps {
        margin-bottom: 14px !important;
        border-radius: 20px !important;
    }

    .v0c-booking .v0c-booking-step {
        grid-template-columns: 1fr !important;
        place-items: center !important;
        min-height: 58px !important;
        padding: 9px 4px !important;
    }

    .v0c-booking .v0c-booking-step > span {
        width: 36px !important;
        height: 36px !important;
    }

    .v0c-booking .v0c-booking-step strong,
    .v0c-booking .v0c-booking-step em {
        display: none !important;
    }

    .v0c-mobile-summary-toggle {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        align-items: center;
        width: 100%;
        margin: 0 0 14px;
        padding: 14px;
        border: 1px solid var(--v0c-redesign-line);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 16px 38px rgba(7, 29, 49, 0.07);
        color: var(--v0c-redesign-text);
        text-align: left;
    }

    .v0c-mobile-summary-toggle span {
        color: var(--v0c-redesign-muted);
        font-size: 11px;
        font-weight: 950;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .v0c-mobile-summary-toggle strong {
        display: block;
        margin-top: 5px;
        color: var(--v0c-redesign-blue-dark);
        font-size: 25px;
        line-height: 1;
        font-weight: 950;
        letter-spacing: -0.055em;
    }

    .v0c-mobile-summary-toggle em {
        min-height: 28px;
        padding: 7px 10px;
        border: 1px solid rgba(11, 105, 183, 0.15);
        border-radius: 999px;
        background: var(--v0c-redesign-blue-soft);
        color: var(--v0c-redesign-blue-dark);
        font-size: 11px;
        font-style: normal;
        font-weight: 950;
        text-transform: uppercase;
        letter-spacing: 0.055em;
    }

    .v0c-booking .v0c-booking-layout {
        grid-template-columns: 1fr !important;
    }

    .v0c-booking .v0c-booking-summary {
        position: static !important;
        display: none;
        order: 0;
    }

    .v0c-booking .v0c-booking-summary.is-open {
        display: block;
    }

    .v0c-booking .v0c-summary-card {
        border-radius: 26px !important;
    }

    .v0c-booking .v0c-form-section {
        border-radius: 26px !important;
    }

    .v0c-booking .v0c-step-head {
        grid-template-columns: 1fr !important;
        padding: 20px 16px 18px !important;
    }

    .v0c-booking .v0c-step-head::after {
        width: 44px;
        height: 44px;
        border-radius: 15px;
        font-size: 17px;
        order: -1;
    }

    .v0c-booking .v0c-step-head h2 {
        font-size: clamp(24px, 6.2vw, 30px) !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    .v0c-booking .v0c-step-head p {
        font-size: 14.5px !important;
    }

    .v0c-booking .v0c-booking-options,
    .v0c-booking .v0c-booking-stage-grid,
    .v0c-booking .v0c-payment-options,
    .v0c-booking .v0c-payment-panel-set,
    .v0c-booking .v0c-stage-card-compact,
    .v0c-booking .v0c-extras-options,
    .v0c-booking .v0c-extra-total-box,
    .v0c-booking .v0c-price-preview,
    .v0c-booking .v0c-step-actions,
    .v0c-booking .v0c-form-note,
    .v0c-booking .v0c-booking-feedback {
        margin-left: 14px !important;
        margin-right: 14px !important;
    }

    .v0c-booking .v0c-field-card,
    .v0c-booking .v0c-stage-card,
    .v0c-booking .v0c-hospede-card,
    .v0c-booking .v0c-extra-option,
    .v0c-booking .v0c-payment-option-rich {
        border-radius: 22px !important;
        padding: 16px !important;
    }

    .v0c-booking .v0c-booking-fields,
    .v0c-booking .v0c-hospede-fields,
    .v0c-booking .v0c-extras-options,
    .v0c-booking .v0c-payment-options-rich,
    .v0c-booking .v0c-price-preview,
    .v0c-booking .v0c-payment-breakdown {
        grid-template-columns: 1fr !important;
    }

    .v0c-booking .v0c-cabin-choice-title-row {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .v0c-booking .v0c-cabin-choice-price {
        min-width: 0 !important;
        justify-items: start !important;
        text-align: left !important;
    }

    .v0c-booking .v0c-extra-option {
        grid-template-columns: 1fr !important;
        min-height: 160px !important;
    }

    .v0c-booking .v0c-extra-total-box {
        grid-template-columns: 1fr !important;
        border-radius: 22px !important;
        padding: 16px !important;
    }

    .v0c-booking .v0c-payment-breakdown > div {
        border-right: 0 !important;
        border-bottom: 1px solid var(--v0c-redesign-line-soft);
    }

    .v0c-booking .v0c-payment-breakdown > div:last-child {
        border-bottom: 0;
    }

    .v0c-booking .v0c-step-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        margin-bottom: 16px !important;
    }

    .v0c-booking .v0c-btn,
    .v0c-booking .v0c-btn-primary {
        width: 100% !important;
        min-width: 0 !important;
    }

    .v0c-mobile-checkout-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: start;
        width: 100vw;
        max-width: 100vw;
        min-height: 100px;
        overflow: hidden;
        padding: 10px 12px calc(58px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--v0c-redesign-line);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 -18px 34px rgba(7, 29, 49, 0.12);
        backdrop-filter: blur(16px);
    }

    .v0c-mobile-checkout-bar > div {
        padding-right: 0;
    }

    .v0c-mobile-checkout-bar span {
        display: block;
        color: var(--v0c-redesign-muted);
        font-size: 11px;
        font-weight: 950;
        text-transform: uppercase;
    }

    .v0c-mobile-checkout-bar strong {
        display: block;
        margin-top: 3px;
        color: var(--v0c-redesign-blue-dark);
        font-size: 20px;
        line-height: 1;
        font-weight: 950;
        letter-spacing: -0.045em;
    }

    .v0c-mobile-checkout-bar .v0c-btn {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        bottom: calc(10px + env(safe-area-inset-bottom)) !important;
        width: calc(100vw - 24px) !important;
        min-width: 0 !important;
        max-width: none !important;
        min-height: 48px !important;
        padding: 0 16px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 430px) {
    .v0c-booking {
        padding-inline: 8px !important;
    }

    .v0c-checkout-hero-content {
        padding: 18px;
    }

    .v0c-booking .v0c-summary-list > div:not(.v0c-summary-group-title) {
        grid-template-columns: 1fr !important;
        gap: 3px !important;
        padding: 8px 0 !important;
    }

    .v0c-booking .v0c-summary-list strong {
        text-align: left !important;
    }
}

.v0c-booking .v0c-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.v0c-booking .v0c-sailing-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin: -20px -20px 18px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--v0c-redesign-line-soft);
    background: linear-gradient(180deg, #f9fcff, #ffffff);
}

.v0c-booking .v0c-sailing-section-head h3 {
    color: var(--v0c-redesign-ink) !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
    font-weight: 930 !important;
    letter-spacing: -0.035em !important;
}

.v0c-booking .v0c-sailing-section-head span {
    display: block;
    margin-top: 4px;
    color: var(--v0c-redesign-muted) !important;
    font-size: 12.5px !important;
    line-height: 1.35 !important;
    font-weight: 650 !important;
}

.v0c-booking .v0c-sailing-section-head strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 7px 12px;
    border: 1px solid rgba(11, 105, 183, 0.18);
    border-radius: 999px;
    background: var(--v0c-redesign-blue-soft);
    color: var(--v0c-redesign-blue-dark) !important;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
}

.v0c-booking .v0c-sailing-route {
    position: relative;
    display: grid;
    gap: 26px;
    margin-top: 16px;
    padding: 20px;
    border: 1px solid var(--v0c-redesign-line);
    border-radius: 24px;
    background: #ffffff;
}

.v0c-booking .v0c-sailing-route[hidden] {
    display: none !important;
}

.v0c-booking .v0c-sailing-route-item {
    position: relative;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 14px;
}

.v0c-booking .v0c-sailing-route-item + .v0c-sailing-route-item::before {
    content: "";
    position: absolute;
    left: 8px;
    top: -27px;
    width: 2px;
    height: 26px;
    background: var(--v0c-redesign-line);
}

.v0c-booking .v0c-sailing-dot {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 5px solid var(--v0c-redesign-blue);
    border-radius: 50%;
    background: #ffffff;
}

.v0c-booking .v0c-sailing-dot-end {
    border-color: var(--v0c-redesign-green);
}

.v0c-booking .v0c-sailing-route-item span:not(.v0c-sailing-dot) {
    color: var(--v0c-redesign-muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v0c-booking .v0c-sailing-route-item strong {
    display: block;
    margin-top: 4px;
    color: var(--v0c-redesign-ink) !important;
    font-size: 19px;
    line-height: 1.18;
    font-weight: 930;
    letter-spacing: -0.025em;
}

.v0c-booking .v0c-stage-card-guests {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.v0c-booking .v0c-stage-card-guests .v0c-hospede-card {
    min-height: 540px;
    padding: 24px !important;
    border-color: rgba(11, 105, 183, 0.18) !important;
    background: linear-gradient(180deg, rgba(232, 244, 255, 0.78), rgba(255, 255, 255, 0.94)) !important;
}

.v0c-booking .v0c-hospede-card-head {
    display: grid !important;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) !important;
    gap: 14px !important;
    align-items: start !important;
    margin-bottom: 16px !important;
}

.v0c-booking .v0c-hospede-card-head strong {
    font-size: 21px !important;
    line-height: 1.06 !important;
}

.v0c-booking .v0c-hospede-card-head small {
    text-align: right;
}

.v0c-booking .v0c-extra-action {
    position: relative;
    z-index: 1;
    grid-column: 2;
    justify-self: end;
    align-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--v0c-redesign-blue);
    color: #ffffff;
    font-size: 12px;
    font-weight: 940;
    white-space: nowrap;
}

.v0c-booking .v0c-extra-option .v0c-payment-tag {
    opacity: 0;
    transform: translateY(-2px);
}

.v0c-booking .v0c-extra-option.is-active {
    border-color: rgba(255, 255, 255, 0.18) !important;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 46%),
        linear-gradient(135deg, var(--v0c-redesign-ink), #073b63) !important;
    box-shadow: 0 24px 52px rgba(7, 29, 49, 0.2) !important;
}

.v0c-booking .v0c-extra-option.is-active::before {
    background: rgba(255, 255, 255, 0.09);
}

.v0c-booking .v0c-extra-option.is-active .v0c-payment-title,
.v0c-booking .v0c-extra-option.is-active .v0c-extra-option-body small,
.v0c-booking .v0c-extra-option.is-active > strong {
    color: #ffffff !important;
}

.v0c-booking .v0c-extra-option.is-active .v0c-payment-tag {
    opacity: 1;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.v0c-booking .v0c-extra-option.is-active .v0c-extra-action {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.v0c-booking .v0c-payment-options-rich {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.v0c-booking .v0c-payment-option-rich.is-active {
    border-color: rgba(255, 255, 255, 0.18) !important;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 48%),
        linear-gradient(135deg, var(--v0c-redesign-ink), #073b63) !important;
    box-shadow: 0 22px 46px rgba(7, 29, 49, 0.18) !important;
}

.v0c-booking .v0c-payment-option-rich.is-active::before {
    background: #ffffff;
}

.v0c-booking .v0c-payment-option-rich.is-active .v0c-payment-title,
.v0c-booking .v0c-payment-option-rich.is-active small {
    color: #ffffff !important;
}

.v0c-booking .v0c-payment-option-rich.is-active .v0c-payment-tag {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
}

.v0c-booking [data-payment-panel="boleto_parcelado"] .v0c-payment-breakdown {
    gap: 12px !important;
    border: 0 !important;
    background: transparent !important;
}

.v0c-booking [data-payment-panel="boleto_parcelado"] .v0c-payment-breakdown > div {
    border-radius: 20px !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 46%),
        linear-gradient(135deg, var(--v0c-redesign-ink), #073b63) !important;
}

.v0c-booking [data-payment-panel="boleto_parcelado"] .v0c-payment-breakdown span,
.v0c-booking [data-payment-panel="boleto_parcelado"] .v0c-payment-breakdown small,
.v0c-booking [data-payment-panel="boleto_parcelado"] .v0c-payment-breakdown strong {
    color: #ffffff !important;
}

.v0c-booking [data-payment-panel="boleto_parcelado"] .v0c-payment-note {
    color: var(--v0c-redesign-muted) !important;
}

.v0c-booking .v0c-cabin-choice .v0c-cabin-choice-action {
    justify-self: end;
    width: max-content;
    min-height: 40px;
    margin-top: 14px;
    padding: 10px 16px;
    border: 1px solid rgba(11, 105, 183, 0.18);
    border-radius: 999px;
    background: var(--v0c-redesign-blue);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 22px rgba(11, 105, 183, 0.18);
}

.v0c-booking .v0c-cabin-choice.is-active,
.v0c-booking .v0c-cabin-choice.is-active:hover,
.v0c-booking .v0c-cabin-choice.is-active:focus-visible {
    border-color: rgba(255, 255, 255, 0.16) !important;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 46%),
        linear-gradient(135deg, var(--v0c-redesign-ink), #073b63) !important;
    color: #ffffff !important;
    box-shadow: 0 22px 45px rgba(7, 29, 49, 0.18) !important;
}

.v0c-booking .v0c-cabin-choice.is-active::before {
    background: rgba(255, 255, 255, 0.42) !important;
}

.v0c-booking .v0c-cabin-choice.is-active::after {
    content: none !important;
    display: none !important;
}

.v0c-booking .v0c-cabin-choice.is-active .v0c-cabin-choice-body strong,
.v0c-booking .v0c-cabin-choice.is-active .v0c-cabin-choice-price,
.v0c-booking .v0c-cabin-choice.is-active .v0c-cabin-choice-price small {
    color: #ffffff !important;
}

.v0c-booking .v0c-cabin-choice.is-active .v0c-cabin-choice-action {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff !important;
    box-shadow: none;
}

@media (max-width: 900px) {
    .v0c-booking .v0c-sailing-section-head {
        margin: -16px -16px 16px;
        padding: 16px;
    }

    .v0c-booking .v0c-hospede-card-head {
        grid-template-columns: 0.72fr 1.28fr !important;
    }

    .v0c-booking .v0c-payment-options-rich {
        grid-template-columns: 1fr !important;
    }

    .v0c-booking .v0c-extra-action {
        grid-column: 1;
        justify-self: start;
    }

    .v0c-booking .v0c-cabin-choice .v0c-cabin-choice-action {
        justify-self: start;
    }
}

/* Catalog mobile filters: hidden by default after JS enhancement, opened as a focused bottom sheet. */
.v0c-mobile-filter-trigger,
.v0c-mobile-filter-backdrop,
.v0c-mobile-filter-close {
    display: none;
}

@media (max-width: 760px) {
    body.v0c-catalog-filter-locked {
        overflow: hidden;
    }

    .v0c-catalog-shell {
        padding-bottom: calc(104px + env(safe-area-inset-bottom)) !important;
    }

    .v0c-catalog-shell .v0c-mobile-filter-trigger {
        position: fixed;
        left: 50%;
        bottom: calc(18px + env(safe-area-inset-bottom));
        z-index: 9998;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-width: 172px;
        min-height: 56px;
        padding: 0 18px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 999px;
        background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 46%),
            linear-gradient(135deg, #071d31, #073b63);
        color: #ffffff !important;
        font-size: 14px;
        font-weight: 950;
        line-height: 1;
        letter-spacing: 0;
        box-shadow: 0 18px 42px rgba(7, 29, 49, 0.28);
        transform: translateX(-50%);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .v0c-catalog-shell .v0c-mobile-filter-trigger-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        color: currentColor;
    }

    .v0c-catalog-shell .v0c-mobile-filter-trigger-icon svg {
        width: 22px;
        height: 22px;
    }

    .v0c-catalog-shell .v0c-mobile-filter-trigger small {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 22px;
        height: 22px;
        padding: 0 6px;
        border-radius: 999px;
        background: #ffffff;
        color: #073b63;
        font-size: 12px;
        font-weight: 950;
        line-height: 1;
    }

    .v0c-catalog-shell.is-filter-open .v0c-mobile-filter-trigger {
        opacity: 0;
        pointer-events: none;
    }

    .v0c-catalog-shell .v0c-mobile-filter-backdrop {
        position: fixed;
        inset: 0;
        z-index: 9997;
        display: block;
        background: rgba(7, 29, 49, 0.52);
        backdrop-filter: blur(10px);
    }

    .v0c-catalog-shell .v0c-mobile-filter-backdrop[hidden] {
        display: none !important;
    }

    .v0c-catalog-shell.is-filter-ready .v0c-search-bar {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        z-index: 9999;
        max-height: calc(100dvh - 28px - env(safe-area-inset-bottom));
        margin: 0 !important;
        padding: 12px;
        overflow: auto;
        border: 1px solid rgba(216, 225, 232, 0.9);
        border-radius: 28px;
        background: #f8fbff;
        box-shadow: 0 28px 70px rgba(7, 29, 49, 0.32);
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + 28px));
        transition: opacity 0.22s ease, transform 0.22s ease;
        -webkit-overflow-scrolling: touch;
    }

    .v0c-catalog-shell.is-filter-open .v0c-search-bar {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .v0c-catalog-shell.is-filter-ready .v0c-search-heading {
        position: sticky;
        top: 0;
        z-index: 2;
        margin-bottom: 12px;
        padding: 14px 14px 14px 16px;
        border-radius: 22px;
    }

    .v0c-catalog-shell .v0c-mobile-filter-close {
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(216, 225, 232, 0.9);
        border-radius: 16px;
        background: #ffffff;
        color: #073b63;
        box-shadow: 0 8px 18px rgba(15, 32, 51, 0.06);
        cursor: pointer;
    }

    .v0c-catalog-shell .v0c-mobile-filter-close svg {
        width: 20px;
        height: 20px;
    }

    .v0c-catalog-shell.is-filter-ready .v0c-search-form {
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .v0c-catalog-shell.is-filter-ready .v0c-search-fields-modern {
        gap: 10px !important;
    }

    .v0c-catalog-shell.is-filter-ready .v0c-search-field {
        min-height: 68px;
        border-radius: 20px;
    }

    .v0c-catalog-shell.is-filter-ready .v0c-search-submit,
    .v0c-catalog-shell.is-filter-ready .v0c-search-reset {
        min-height: 54px;
        border-radius: 18px;
    }
}

@media (max-width: 430px) {
    .v0c-catalog-shell.is-filter-ready .v0c-search-bar {
        left: 8px;
        right: 8px;
        border-radius: 24px;
    }

    .v0c-catalog-shell .v0c-mobile-filter-trigger {
        min-width: 156px;
        min-height: 54px;
        padding: 0 16px;
    }
}

/* Checkout hardening: payment guidance, mobile fields and centered validation feedback. */
.v0c-booking input,
.v0c-booking select,
.v0c-booking textarea,
.v0c-booking .v0c-input,
.v0c-booking .v0c-select,
.v0c-booking .v0c-textarea {
    max-width: 100% !important;
    min-width: 0 !important;
    font-size: 16px !important;
}

.v0c-booking .v0c-payment-select-action {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 40px;
    margin-top: 10px;
    padding: 9px 15px;
    border: 1px solid rgba(11, 105, 183, 0.22);
    border-radius: 999px;
    background: #ffffff;
    color: var(--v0c-redesign-blue-dark);
    font-size: 12px;
    font-weight: 940;
    line-height: 1;
    pointer-events: none;
    box-shadow: 0 8px 18px rgba(7, 29, 49, 0.06);
}

.v0c-booking .v0c-payment-option-rich.is-active .v0c-payment-select-action {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    box-shadow: none;
}

.v0c-booking .v0c-payment-options-rich {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: start;
}

.v0c-booking .v0c-payment-method {
    display: grid;
    gap: 12px;
    align-content: start;
    min-width: 0;
}

.v0c-booking .v0c-payment-method-card {
    grid-column: 1;
    grid-row: 1;
}

.v0c-booking .v0c-payment-method-boleto {
    grid-column: 2;
    grid-row: 1;
}

.v0c-booking .v0c-payment-method-avista {
    grid-column: 1;
    grid-row: 2;
}

.v0c-booking .v0c-payment-method .v0c-payment-panel {
    margin-top: 0 !important;
    box-shadow: 0 16px 38px rgba(7, 29, 49, 0.08) !important;
}

.v0c-booking .v0c-payment-method [data-payment-panel="boleto_parcelado"] .v0c-payment-breakdown {
    grid-template-columns: 1fr !important;
}

.v0c-booking .v0c-payment-method [data-payment-panel="boleto_parcelado"] .v0c-payment-breakdown > div {
    border-right: 0 !important;
}

.v0c-booking .v0c-validation-modal[hidden] {
    display: none !important;
}

.v0c-booking .v0c-validation-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: grid;
    place-items: center;
    padding: 18px;
}

.v0c-booking .v0c-validation-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 29, 49, 0.58);
    backdrop-filter: blur(12px);
}

.v0c-booking .v0c-validation-modal-card {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    padding: 26px 24px 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 46%),
        linear-gradient(135deg, var(--v0c-redesign-ink), #073b63);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 28px 80px rgba(7, 29, 49, 0.34);
}

.v0c-booking .v0c-validation-modal-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 24px;
    font-weight: 950;
    line-height: 1;
}

.v0c-booking .v0c-validation-modal-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.v0c-booking .v0c-validation-modal-card p {
    margin: 10px 0 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.5;
}

.v0c-booking .v0c-validation-modal-card .v0c-btn {
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
}

body.v0c-validation-modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .v0c-booking {
        max-width: 100%;
        overflow-x: clip;
    }

    .v0c-booking .v0c-booking-layout,
    .v0c-booking .v0c-booking-main,
    .v0c-booking .v0c-form-section,
    .v0c-booking .v0c-form-step,
    .v0c-booking .v0c-booking-stage-grid,
    .v0c-booking .v0c-stage-card,
    .v0c-booking .v0c-hospede-card,
    .v0c-booking .v0c-address-grid,
    .v0c-booking .v0c-payment-options-rich,
    .v0c-booking .v0c-payment-panel-set,
    .v0c-booking .v0c-payment-panel {
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .v0c-booking .v0c-payment-select-action {
        justify-self: start;
    }

    .v0c-booking .v0c-payment-options-rich {
        grid-template-columns: 1fr !important;
    }

    .v0c-booking .v0c-payment-method-card,
    .v0c-booking .v0c-payment-method-boleto,
    .v0c-booking .v0c-payment-method-avista {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

.v0c-reveillon {
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(18px, 3vw, 34px) clamp(12px, 3vw, 28px) 72px;
    color: #0b1f34;
}

.v0c-reveillon * {
    box-sizing: border-box;
}

.v0c-reveillon-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: end;
    overflow: hidden;
    position: relative;
    margin-bottom: 18px;
    border: 1px solid rgba(216, 230, 241, 0.9);
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.18), transparent 18rem),
        linear-gradient(135deg, #061c32 0%, #083b61 56%, #0b68a8 100%);
    box-shadow: 0 24px 58px rgba(6, 28, 50, 0.16);
    padding: clamp(24px, 4vw, 42px);
    color: #ffffff;
}

.v0c-reveillon-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: max-content;
    margin: 0 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 13px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.v0c-reveillon-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7be0bb;
    box-shadow: 0 0 0 5px rgba(123, 224, 187, 0.15);
}

.v0c-reveillon-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 950;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.v0c-reveillon-hero-copy > p:last-child {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.55;
}

.v0c-reveillon-hero-panel {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.13);
    padding: 20px;
    backdrop-filter: blur(14px);
}

.v0c-reveillon-hero-panel span,
.v0c-reveillon-hero-panel small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.v0c-reveillon-hero-panel strong {
    display: block;
    margin: 8px 0 4px;
    color: #ffffff;
    font-size: 48px;
    font-weight: 950;
    line-height: 1;
}

.v0c-reveillon-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px;
}

.v0c-reveillon-filters a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid #cfe0ee;
    border-radius: 999px;
    background: #ffffff;
    padding: 0 17px;
    color: #0a4775;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(7, 29, 49, 0.06);
}

.v0c-reveillon-filters a.is-active {
    border-color: #083b61;
    background: #083b61;
    color: #ffffff;
}

.v0c-reveillon-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.v0c-reveillon-stats > div {
    border: 1px solid #d7e5ef;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    padding: 17px 18px;
    box-shadow: 0 14px 32px rgba(7, 29, 49, 0.06);
}

.v0c-reveillon-stats span,
.v0c-reveillon-main-info span,
.v0c-reveillon-night span,
.v0c-reveillon-route-box > span,
.v0c-reveillon-price span {
    display: block;
    color: #668199;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v0c-reveillon-stats strong {
    display: block;
    margin-top: 7px;
    color: #071d31;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.1;
}

.v0c-reveillon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.v0c-reveillon-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr auto;
    border: 1px solid #d6e5ef;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(7, 29, 49, 0.09);
}

.v0c-reveillon-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 8.2;
    background: #e8f4ff;
}

.v0c-reveillon-media img,
.v0c-reveillon-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v0c-reveillon-image-placeholder {
    background: linear-gradient(135deg, #e8f4ff, #ffffff);
}

.v0c-reveillon-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 28, 50, 0.02), rgba(6, 28, 50, 0.42));
}

.v0c-reveillon-media-badge {
    position: absolute;
    z-index: 1;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    border-radius: 999px;
    background: rgba(6, 28, 50, 0.88);
    padding: 0 12px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 950;
}

.v0c-reveillon-card-body {
    padding: 22px;
}

.v0c-reveillon-card-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.v0c-reveillon-card-kicker span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    border-radius: 999px;
    background: #e8f4ff;
    padding: 0 10px;
    color: #0a4775;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.v0c-reveillon-card h2 {
    margin: 0;
    color: #071d31;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 950;
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.v0c-reveillon-main-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.v0c-reveillon-main-info > div {
    border: 1px solid #d9e7f1;
    border-radius: 18px;
    background: #fbfdff;
    padding: 13px;
}

.v0c-reveillon-main-info strong {
    display: block;
    margin-top: 6px;
    color: #071d31;
    font-size: 14px;
    font-weight: 930;
    line-height: 1.25;
}

.v0c-reveillon-night {
    border: 1px solid rgba(8, 59, 97, 0.22);
    border-radius: 22px;
    background: linear-gradient(135deg, #061c32, #083b61);
    padding: 17px;
    color: #ffffff;
}

.v0c-reveillon-night span,
.v0c-reveillon-night small {
    color: rgba(255, 255, 255, 0.72);
}

.v0c-reveillon-night strong {
    display: block;
    margin-top: 7px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
    line-height: 1.18;
}

.v0c-reveillon-night small {
    display: block;
    margin-top: 7px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.v0c-reveillon-route-box {
    margin-top: 16px;
}

.v0c-reveillon-route {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.v0c-reveillon-route li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    min-width: 0;
    border: 1px solid #e1ecf4;
    border-radius: 14px;
    background: #ffffff;
    padding: 9px 10px;
}

.v0c-reveillon-route li span,
.v0c-reveillon-route li small {
    color: #6d8497;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.v0c-reveillon-route li strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #071d31;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
}

.v0c-reveillon-card-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    border-top: 1px solid #edf3f8;
    background: #f8fcff;
    padding: 18px 22px;
}

.v0c-reveillon-price strong {
    display: block;
    margin-top: 5px;
    color: #0a4775;
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -0.055em;
    line-height: 1;
}

.v0c-reveillon-price small {
    display: block;
    margin-top: 5px;
    color: #6d8497;
    font-size: 12px;
    font-weight: 800;
}

.v0c-reveillon-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.v0c-reveillon-actions .v0c-btn {
    min-height: 46px;
    border-radius: 15px;
    padding: 0 16px;
    font-size: 13px;
}

@media (max-width: 1020px) {
    .v0c-reveillon-hero,
    .v0c-reveillon-card-footer {
        grid-template-columns: 1fr;
    }

    .v0c-reveillon-hero-panel {
        max-width: 300px;
    }

    .v0c-reveillon-grid {
        grid-template-columns: 1fr;
    }

    .v0c-reveillon-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .v0c-reveillon {
        padding: 12px 8px 56px;
    }

    .v0c-reveillon-hero {
        border-radius: 24px;
        padding: 20px;
    }

    .v0c-reveillon-hero h1 {
        font-size: clamp(31px, 10vw, 42px);
    }

    .v0c-reveillon-hero-copy > p:last-child {
        font-size: 14px;
    }

    .v0c-reveillon-hero-panel {
        max-width: none;
    }

    .v0c-reveillon-filters {
        display: grid;
        grid-template-columns: 1fr;
    }

    .v0c-reveillon-stats,
    .v0c-reveillon-main-info,
    .v0c-reveillon-route {
        grid-template-columns: 1fr;
    }

    .v0c-reveillon-card {
        border-radius: 24px;
    }

    .v0c-reveillon-media {
        aspect-ratio: 16 / 10.5;
    }

    .v0c-reveillon-card-body,
    .v0c-reveillon-card-footer {
        padding: 16px;
    }

    .v0c-reveillon-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .v0c-reveillon-actions .v0c-btn {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .v0c-detail .v0c-admin-detail-extras {
        margin: 14px 0 16px;
        border-radius: 22px;
        padding: 16px;
    }

    .v0c-detail .v0c-admin-detail-extras-head,
    .v0c-detail .v0c-admin-detail-extras-grid,
    .v0c-detail .v0c-admin-detail-boleto-preview,
    .v0c-detail .v0c-admin-detail-boleto-grid,
    .v0c-detail .v0c-admin-detail-cabin-extras > div {
        grid-template-columns: 1fr;
    }

    .v0c-detail .v0c-admin-detail-cabin-extras small {
        text-align: left;
    }
}
