:root {
    --beige: #f7f5f0;
    --beige-mid: #edeae3;
    --green-dark: #0f6b4a;
    --green-mid: #1a9e6e;
    --green-btn: #22c88a;
    --green-light: #5deba0;
    --accent: #f0a07a;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --hero-overlay: rgba(15, 107, 74, 0.45);
    --bg: #f7f5f0;
    --bg-color: #ffffff;
    --border: rgba(0,0,0,0.06);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  :focus-visible {
    outline: 3px solid rgba(34, 200, 138, 0.72);
    outline-offset: 4px;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--beige);
    overflow-x: hidden;
  }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--beige);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    height: auto;
    gap: 16px;
  }

  .nav-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 1.5px solid var(--green-mid);
    line-height: 1;
  }

  .logo em, .logo span {
    font-style: normal;
    color: var(--green-mid);
  }

  .nav-links-small {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
    color: rgba(30, 61, 47, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .nav-links-small a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links-small a:hover { color: var(--green-mid); }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green-btn);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 18px rgba(34, 200, 138, 0.35);
    flex-shrink: 0;
  }
  .nav-cta:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(34, 200, 138, 0.45);
  }

  /* ===== HERO ===== */
  .hero {
    background: var(--green-dark);
    padding-top: 100px;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-left: 80px;
    padding-right: 48px;
    gap: 48px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 50%, rgba(43,181,115,0.1) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
  }

  .hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
  }
  .trust-avatars {
    display: flex;
  }
  .trust-avatars img {
    width: 28px; height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-dark);
    margin-left: -8px;
  }
  .trust-avatars img:first-child { margin-left: 0; }
  .trust-text {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
  }
  .trust-stars { font-weight: 700; color: #ffc107; letter-spacing: 0.5px; font-size: 10px; }
  .trust-score { color: #fff; margin-left: 4px; }
  .trust-label strong { color: #fff; }

  .hero-text { position: relative; z-index: 1; }

  .hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(70px, 9vw, 124px);
    font-weight: 900;
    color: var(--white);
    line-height: 0.92;
    margin-bottom: 8px;
  }

  .hero-title-flag {
    display: inline-block;
    font-size: 0.42em;
    margin-left: 0.08em;
    transform: translateY(-0.03em);
    vertical-align: middle;
  }

  .hero-text h1 .highlight {
    color: var(--green-btn);
    font-style: italic;
  }

  .hero-subtitle-kicker {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 22px;
  }

  .hero-text p {
    color: rgba(255,255,255,0.68);
    font-size: 16px;
    margin-bottom: 36px;
    max-width: 420px;
    line-height: 1.65;
  }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--green-btn);
    border: none;
    color: var(--white);
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(34, 200, 138, 0.4);
  }

  .btn-outline:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(34, 200, 138, 0.5);
    color: var(--white);
  }

  /* Premium Minimalist Hero Carousel */
  .hero-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    z-index: 1;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    scrollbar-width: none;
    cursor: grab;
  }
  .hero-carousel::-webkit-scrollbar { display: none; }

  .hero-carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
  }

  .hero-carousel .img-box {
    width: 320px;
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--green-mid);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .hero-carousel .img-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.4s, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
  }

  .hero-carousel .img-box:hover img { 
    opacity: 1; 
    transform: scale(1.06); 
  }

  @keyframes scroll-carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 8px)); }
  }

  /* ===== DESTINOS ===== */
  .destinos {
    background: var(--beige);
    padding: 100px 80px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
  }

  .section-title em {
    font-style: italic;
    color: var(--green-mid);
  }

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

  .card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 350px;
    background: var(--green-mid);
    cursor: pointer;
    transition: transform 0.3s;
  }

  .card:hover { transform: translateY(-5px); }

  .card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s;
    display: block;
  }

  .card:hover img { transform: scale(1.07); }

  .scarcity-tag { position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, #ff4d4d, #d11a2a); color: white; font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 6px; box-shadow: 0 4px 10px rgba(255, 77, 77, 0.4); z-index: 2; letter-spacing: 0.5px; text-transform: uppercase; }
  .scarcity-tag.waitlist { background: linear-gradient(135deg, #f39c12, #e67e22); box-shadow: 0 4px 10px rgba(243, 156, 18, 0.4); }
  .scarcity-tag.new-date { background: linear-gradient(135deg, #2bb573, #22c88a); box-shadow: 0 4px 10px rgba(43, 181, 115, 0.4); }

  .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,28,18,0.95) 0%, rgba(8,28,18,0.25) 55%, transparent 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
  }

  .card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(43,181,115,0.2);
    border: 1px solid rgba(43,181,115,0.4);
    color: #5deba0;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    width: fit-content;
    letter-spacing: 0.3px;
  }

  .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
  }

  .card-desc {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    line-height: 1.55;
  }

  .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 4px;
    transition: gap 0.2s;
  }

  .card:hover .card-link { gap: 10px; }

  /* ===== PERSONALIZADO ===== */
  .personalizado {
    background: var(--beige);
    padding: 0 80px 80px;
  }

  .custom-banner {
    background: linear-gradient(rgba(10, 50, 45, 0.75), rgba(10, 50, 45, 0.85)), url('../Fotos%20Viagem/mar%20turquesa.webp');
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    padding: 64px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  }

  .custom-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .custom-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    max-width: 550px;
  }

  .custom-sub {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    max-width: 300px;
    text-align: right;
  }

  .custom-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    margin-bottom: 40px;
    border: none;
  }

  .features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.05);
    border-right-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
  }
  .feature-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
  }

  .feature-item .fi-icon {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--green-btn);
  }

  .feature-item h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
  }

  .feature-item p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.55;
  }

  .custom-footer {
    display: flex;
    justify-content: flex-end;
  }

  .btn-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-btn);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s, background 0.2s;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }

  .btn-green:hover { transform: scale(1.04); background: #23a065; }

  /* ===== SOBRE MIM ===== */
  .sobre-mim {
    background: #e4edea;
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .jonas-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .jonas-circle {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--green-mid);
    border: 5px solid var(--green-dark);
    flex-shrink: 0;
  }

  .jonas-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .jonas-circle-img-zoom {
    transform: scale(1.26);
    object-position: 50% 62%;
  }

  .ring-text {
    position: absolute;
    width: 420px;
    height: 420px;
    animation: spin 18s linear infinite;
    pointer-events: none;
  }

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

  .sobre-mim-text small {
    color: var(--green-mid);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
  }

  .sobre-mim-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.15;
  }

  .sobre-mim-text p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 14px;
  }

  .sobre-mim-text strong { color: var(--text-dark); }

  .jonas-note {
    margin-top: 20px;
    padding: 18px 20px;
    background: rgba(34,200,138,0.06);
    border-left: 3px solid var(--green-mid);
    border-radius: 8px;
  }
  .jonas-note p {
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
  }
  .btn-row {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* ===== FAQ & VIP ===== */
  .faq-section { background: var(--beige); padding: 100px 80px; color: var(--text-dark); }
  .faq-container { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px 60px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
  .faq-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
  }
  .faq-heading-title {
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
  }
  .faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
  .faq-item:first-of-type { border-top: 1px solid rgba(0,0,0,0.1); }
  .faq-question { width: 100%; background: none; border: none; color: var(--text-dark); font-size: 16px; font-weight: 700; padding: 24px 0; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
  .faq-question:hover { color: var(--green-mid); }
  .faq-icon { width: 20px; height: 20px; border-radius: 50%; background: #f0a07a; transition: background 0.3s; display: inline-block; flex-shrink: 0; }
  .faq-item.active .faq-icon { background: var(--green-mid); }
  .faq-item.active .faq-question { color: var(--text-dark); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
  .faq-answer p { padding-bottom: 24px; color: var(--text-muted); line-height: 1.6; margin: 0; font-size: 15px; }

  .faq-flow-list {
    display: grid;
    gap: 12px;
    list-style: none;
    padding: 6px 0 24px;
  }

  .faq-flow-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 4px 10px;
    align-items: start;
  }

  .faq-flow-list span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(34, 200, 138, 0.12);
    color: var(--green-dark);
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
  }

  .faq-flow-list strong,
  .faq-flow-list em {
    display: block;
  }

  .faq-flow-list strong {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.25;
  }

  .faq-flow-list em {
    color: rgba(26,26,26,0.58);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.45;
  }

  .vip-section { background: linear-gradient(135deg, #1a9e6e, #0f6b4a); padding: 80px 40px; display: flex; justify-content: center; }
  .vip-container { max-width: 1000px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px; background: rgba(255,255,255,0.1); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.2); border-bottom-color: rgba(255,255,255,0.05); border-right-color: rgba(255,255,255,0.05); padding: 50px 60px; border-radius: 32px; box-shadow: 0 24px 48px rgba(0,0,0,0.15); }
  .vip-content { flex: 1; color: var(--white); }
  .vip-content h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; margin-bottom: 12px; }
  .vip-content p { font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.5; }
  .vip-form { flex: 1; display: flex; gap: 12px; width: 100%; }
  .vip-form input { flex: 1; padding: 16px 24px; border-radius: 999px; border: 1px solid transparent; outline: none; font-size: 16px; font-family: 'DM Sans', sans-serif; transition: border 0.3s; }
  .vip-form input:focus { border: 1px solid var(--green-light); box-shadow: 0 0 0 4px rgba(34, 200, 138, 0.15); }
  .vip-form .btn-green { background: #111; box-shadow: 0 8px 24px rgba(0,0,0,0.2); white-space: nowrap; }
  .vip-form .btn-green:hover { background: #222; transform: translateY(-2px); }

  /* ===== FOOTER ===== */
  footer {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    color: #333333;
    padding: 6rem 80px 3rem 80px;
    border-top: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.02);
    position: relative;
    z-index: 10;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.5fr 1.5fr 1.5fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
  }

  .footer-logo-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footer-logo-col .logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .footer-logo-col .logo em, .footer-logo-col .logo span {
    font-style: normal;
    color: var(--green-mid);
  }

  .footer-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
  }

  .footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--green-btn);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    width: fit-content;
  }

  .footer-btn:hover {
    background: var(--green-dark);
    transform: scale(1.03);
  }

  .footer-menu-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-menu-col a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.15s;
  }

  .footer-menu-col a:hover {
    color: var(--green-mid);
  }

  .footer-social-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.15s, background 0.15s;
  }

  .social-icon:hover {
    transform: translateY(-2px);
    background: var(--green-btn);
  }

  .social-icon-disabled,
  .social-icon-disabled:hover {
    opacity: 0.45;
    cursor: default;
    transform: none;
    background: var(--green-dark);
  }

  .footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
  }

  .footer-text {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
  }

  .cadastur-box {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .cadastur-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 8px 12px;
    border-radius: 8px;
    background: #fafafa;
    line-height: 1.2;
  }

  .cadastur-text-top {
    font-size: 0.55rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .cadastur-brand {
    font-size: 1.1rem;
    font-weight: 900;
    color: #0f6b4a;
    font-style: italic;
  }

  .cadastur-brand span {
    color: #e2b13c;
  }

  .cadastur-text-bottom {
    font-size: 0.5rem;
    color: #888;
  }

  .cadastur-info {
    font-size: 0.75rem;
    color: #555;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.4;
  }

  .footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .footer-contact-item svg {
    color: var(--green-btn);
    flex-shrink: 0;
  }

  .footer-destinations {
    margin-top: 20px;
    font-size: 0.78rem;
    color: #777;
    line-height: 1.5;
  }

  .footer-bottom {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #888;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-bottom a {
    color: #666;
    text-decoration: none;
    font-weight: 600;
  }

  .footer-bottom a:hover {
    color: var(--green-mid);
  }

  .footer-legal-links {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 960px) {
    .hero { display: flex; flex-direction: column; padding: 135px 20px 60px; gap: 30px; text-align: center; align-items: center; }
    .hero-content { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .hero-text { display: flex; flex-direction: column; align-items: center; }
    .hero-text h1 { text-align: center; }
    .hero-text p { text-align: center; margin: 0 auto 24px auto; }
    .hero-card { padding: 28px 20px; }
    .intro { padding: 60px 20px; }
    .intro-content { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .intro-text-side { align-items: center; text-align: center; }
    .intro-carousel-side { width: 100vw; margin-left: calc(-50vw + 50%); }
    #obs { padding: 60px 20px; }
    .obs-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 2rem; }
    .obs-card { padding: 24px; }

    .contact-card-section { padding: 40px 20px; }
    .contact-card {
      flex-direction: column;
      text-align: center;
      padding: 40px 24px;
      gap: 24px;
    }
    .contact-card-btn {
      align-self: center;
      width: 100%;
      justify-content: center;
    }

    #depoimentos { padding: 60px 20px; }
    .dep-grid { margin: 0 -20px; padding: 20px 20px 40px; gap: 20px; }
    .dep-card { flex: 0 0 100%; max-width: 100%; }

    .intro { padding: 60px 20px; }
    .viajantes-section { padding: 60px 0; }
    .viajantes-carousel .img-box { width: 150px; height: 225px; }
    .viajantes-carousel-track { animation: scroll-carousel-reverse 22s linear infinite; }
    .servicos-layout { grid-template-columns: 1fr; gap: 24px; }
    .servicos-card { padding: 32px 24px; }

    html, body { overflow-x: hidden; max-width: 100%; }
    
    nav { padding: 12px 20px; }
    .nav-cta { font-size: 12px; padding: 9px 16px; }
    .nav-links-small { display: none; }
    
    .hero { display: flex; flex-direction: column; padding: 155px 24px 30px; gap: 0; text-align: center; align-items: center; }
    .hero-text { display: contents; }
    .hero-text h1 { order: 1; margin-bottom: 8px; text-align: center; }
    .hero-subtitle-kicker { order: 2; text-align: center; margin-bottom: 18px; }
    .hero-text p { order: 3; margin: 0 auto 32px auto; text-align: center; }
    .hero-carousel { order: 3; margin-bottom: 40px; width: 100vw; margin-left: calc(-50vw + 50%); }
    .btn-outline { order: 4; align-self: center; }
    .hero-carousel .img-box { width: 200px; height: 300px; }
    
    .sobre { display: flex; flex-direction: column; padding: 40px 24px 60px; gap: 0; text-align: center; align-items: center; }
    .sobre-text { display: contents; }
    .sobre-text h2 { order: 1; margin-bottom: 16px; text-align: center; }
    .sobre-text p:nth-of-type(1) { order: 2; margin: 0 auto 32px auto; text-align: center; }
    .sobre-text p:nth-of-type(2) { order: 3; margin: 0 auto 32px auto; text-align: center; }
    .sobre-img { order: 4; margin: 0 auto 32px auto; border-radius: 20px; overflow: hidden; height: auto; aspect-ratio: 1 / 1; width: 100%; gap: 1px; background: rgba(255, 255, 255, 0.2); }
    .stats-grid { order: 5; margin-top: 0; }
    .stat-card { text-align: center; }

    .sobre-mim { grid-template-columns: 1fr; padding: 60px 24px; }
    
    .destinos, .personalizado, .depoimentos, .contato-wrapper, footer, .faq-section, .vip-section { padding: 60px 24px; }
    .contato { padding: 40px 24px; flex-direction: column; text-align: center; border-radius: 24px; }
    .faq-container { padding: 30px 20px; border-radius: 16px; }
    .vip-container { flex-direction: column; padding: 30px 24px; text-align: center; border-radius: 24px; }
    .vip-form { flex-direction: column; }
    .cards-grid { grid-template-columns: 1fr; }
    .dep-grid { margin: 0 -24px; padding: 20px 24px 40px; gap: 20px; }
    .dep-card { flex: 0 0 85%; min-width: 280px; scroll-snap-align: center; }
    .dep-card { border-bottom: none; }
    
    .custom-banner { grid-template-columns: 1fr; padding: 40px; text-align: center; }
    .custom-header { flex-direction: column; align-items: center; text-align: center; }
    .custom-sub { text-align: center; margin: 0 auto; }
    .features-row { grid-template-columns: 1fr 1fr; gap: 10px; }
    .feature-item { align-items: center; text-align: center; padding: 16px 12px; border-radius: 14px; }
    .feature-item h4 { font-size: 13px; }
    .feature-item p { font-size: 12px; }
    .custom-banner { padding: 28px 20px; }
    .custom-header h3 { font-size: clamp(16px, 3.5vw, 22px); }
    #personalizado .custom-banner { display: flex; flex-direction: column; gap: 16px; }
    .custom-footer { justify-content: center; }
    
    .contato { flex-direction: column; align-items: center; text-align: center; }
    .contato div { text-align: center; }
    .contato p { margin: 8px auto 0; text-align: center; }
    
    footer { padding: 3rem 24px 1.5rem 24px; }
    .footer-container { grid-template-columns: 1fr; gap: 35px; }
    .footer-social-col { align-items: flex-start; flex-direction: row; }
    .footer-bottom { margin-top: 2rem; flex-direction: column; align-items: flex-start; gap: 15px; }
    
    .viajantes-section { padding: 60px 0; }
    .viajantes-carousel .img-box { width: 150px; height: 225px; }
    .viajantes-carousel-track { animation: scroll-carousel-reverse 22s linear infinite; }
    .hero-carousel-track { animation: scroll-carousel 22s linear infinite; }
  }
  /* ===== UX IMPROVEMENTS ===== */
  .btn-outline:active, .btn-green:active, .nav-cta:active, .footer-btn:active {
    transform: scale(0.95) !important;
    box-shadow: 0 4px 12px rgba(34, 200, 138, 0.3) !important;
  }
  .dep-stars {
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 2px;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  }

  /* ===== CTA INTERMEDIARIO MOBILE ===== */
  @media (max-width: 960px) {
    .cta-mid-wrap {
      padding: 0 24px 48px !important;
    }
    .cta-mid-inner {
      flex-direction: column !important;
      padding: 28px 24px !important;
      text-align: center !important;
      border-radius: 20px !important;
    }
    .cta-mid-inner a {
      align-self: center;
    }
  }
  .floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: float-up 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  }
  .floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
  }
  .floating-whatsapp:active {
    transform: scale(0.92);
  }
  @media (max-width: 680px) {
    .floating-whatsapp {
      right: 14px;
      bottom: 14px;
      width: 48px;
      height: 48px;
      box-shadow: 0 12px 30px rgba(37,211,102,0.26);
    }

    .floating-whatsapp svg {
      width: 22px;
      height: 22px;
    }
  }
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.curacao-expedition-page .roteiro-card.animate-on-scroll,
.curacao-expedition-page .servicos-card.animate-on-scroll,
.curacao-expedition-page .cabin-carousel-wrapper.animate-on-scroll,
.curacao-expedition-page .cabin-details.animate-on-scroll,
.curacao-expedition-page .obs-card.animate-on-scroll,
.curacao-expedition-page .prep-card.animate-on-scroll,
.curacao-expedition-page .faq-container.animate-on-scroll,
.curacao-expedition-page .sobre-mim.animate-on-scroll {
  opacity: 1;
  transform: none;
}
  @keyframes float-up {
    0% { opacity: 0; transform: translateY(40px) scale(0.8); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* ===== SUBNAV PREMIUM ===== */
  .subnav-premium {
    position: sticky;
    top: 62px;
    z-index: 90;
    background: rgba(247, 245, 240, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: center;
    overflow-x: auto;
    gap: 0;
  }
  .subnav-premium::-webkit-scrollbar { display: none; }
  .subnav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    border-right: 1px solid rgba(0,0,0,0.06);
    transition: background 0.15s, color 0.15s;
  }
  .subnav-link:last-child { border-right: none; }
  .subnav-link:hover, .subnav-link.active {
    background: rgba(34, 200, 138, 0.07);
    color: var(--green-dark);
  }

  /* ===== SECTION BASE STYLES (San Andrés specific) ===== */
  .section-wrap {
    padding: 80px 80px;
  }
  .section-muted {
    background: var(--beige);
  }
  .text-center {
    text-align: center;
  }
  .section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 14px;
    display: block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }
  .section-title-spaced {
    margin-bottom: 4rem;
  }
  .section-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    font-weight: 300;
    margin-bottom: 2rem;
  }
  .section-sub-centered {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2rem;
  }

  /* ===== DATAS ===== */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .photo-grid .ph { border-radius: 16px; background-size: cover; background-position: center; background-color: #b0dde4; }
  .photo-grid .ph:first-child { grid-column: 1/-1; height: 280px; }
  .photo-grid .ph:not(:first-child) { height: 180px; }
  .dates-list { display: flex; flex-direction: column; gap: 8px; margin: 2rem 0; }
  .date-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 18px; border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.07); gap: 8px; flex-wrap: wrap;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    cursor: default;
    background: var(--white);
  }
  .date-item:hover { border-color: rgba(34,200,138,0.4); background: rgba(34,200,138,0.03); transform: translateY(-1px); }
  .date-name { font-size: 14px; font-weight: 500; color: var(--text-dark); }
  .date-badge { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; padding: 4px 12px; border-radius: 999px; white-space: nowrap; }
  .badge-ok { background: rgba(34,200,138,0.12); color: var(--green-dark); border: 1px solid rgba(34,200,138,0.25); }
  .badge-last { background: rgba(240,160,122,0.12); color: #b05a20; border: 1px solid rgba(240,160,122,0.25); }
  .vagas-note { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

  /* ===== ROTEIRO ===== */
  #roteiro { background: var(--beige); border-bottom: 1px solid rgba(0,0,0,0.06); }
  .acc-list { display: flex; flex-direction: column; margin-top: 2rem; }
  .acc-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
  .acc-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
  .acc-toggle { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
  .acc-label { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; cursor: pointer; gap: 16px; user-select: none; transition: opacity 0.2s; }
  .acc-label:hover { opacity: 0.7; }
  .acc-day-text { font-size: 14px; font-weight: 500; color: var(--text-dark); flex: 1; }
  .acc-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); flex-shrink: 0; transition: background 0.2s, transform 0.2s; }
  .acc-toggle:checked + .acc-label .acc-dot { background: var(--green-btn); transform: rotate(45deg); }
  .acc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .acc-toggle:checked ~ .acc-body { max-height: 220px; }
  .acc-body-inner { padding: 0 0 16px; font-size: 14px; color: var(--text-muted); line-height: 1.8; font-weight: 300; }
  .roteiro-visual { position: sticky; top: 130px; }
  .roteiro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 2rem; }
  .roteiro-grid .ph { border-radius: 16px; background-size: cover; background-position: center; background-color: #b0dde4; height: 180px; }
  .roteiro-grid .ph:first-child { grid-column: 1/-1; height: 300px; }

  /* ===== INVESTIMENTO ===== */
  #investimento { position: relative; overflow: hidden; color: #fff; background: var(--text-dark); }
  .inv-bg-div { position: absolute; inset: 0; z-index: 0; opacity: 0.1; overflow: hidden; }
  .inv-bg-div img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .inv-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .inv-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; display: block; }
  .inv-title { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 12px; }
  .inv-title span { font-family: 'DM Sans', sans-serif; font-size: 0.42em; font-weight: 400; letter-spacing: 0; color: rgba(255,255,255,0.66); white-space: nowrap; }
  .inv-sub { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; font-weight: 300; margin-bottom: 2rem; }
  .price-table {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
    backdrop-filter: blur(12px);
  }
  .price-table-head { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .price-table-head span { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
  .price-row2 { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.2s; }
  .price-row2:hover { background: rgba(255,255,255,0.03); }
  .price-row2:last-child { border-bottom: none; }
  .price-label { font-size: 14px; color: rgba(255,255,255,0.75); }
  .price-val2 { font-size: 15px; font-weight: 600; color: #fff; }
  .split-price { padding-bottom: 8px; }
  .price-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 12px; }
  .price-option-card { border: 1px solid rgba(255,255,255,0.10); border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.05); }
  .price-option-card.featured { border-color: rgba(34,200,138,0.42); background: rgba(34,200,138,0.08); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); }
  .price-option-head { padding: 18px 18px 14px; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
  .price-option-head span { display: block; color: rgba(255,255,255,0.60); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
  .price-option-head strong { color: #fff; font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.6vw, 38px); line-height: 1; }
  .price-badge { display: inline-flex !important; width: fit-content; margin: 0 !important; padding: 5px 9px; border-radius: 999px; background: rgba(34,200,138,0.16); color: #5deba0 !important; letter-spacing: 0.06em !important; font-size: 9px !important; }
  .price-badge.muted { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.56) !important; }
  @media (max-width: 680px) { .price-options { grid-template-columns: 1fr; padding-bottom: 76px; } .price-option-card.featured { box-shadow: 0 0 0 1px rgba(34,200,138,0.12), 0 18px 45px rgba(0,0,0,0.18); } }

  .cond-table { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; margin-bottom: 2rem; }
  .cond-row { display: flex; align-items: flex-start; gap: 12px; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .cond-row:last-child { border-bottom: none; }
  .cond-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-btn); flex-shrink: 0; margin-top: 7px; }
  .cond-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; font-weight: 300; }
  .btn-inv { display: inline-flex; align-items: center; gap: 8px; background: var(--green-btn); color: #fff; padding: 14px 32px; border-radius: 999px; font-size: 15px; font-weight: 700; text-decoration: none; transition: background 0.2s, transform 0.2s; box-shadow: 0 8px 24px rgba(34,200,138,0.35); }
  .btn-inv:hover { background: var(--green-mid); transform: translateY(-2px); }
  .inv-gallery {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .inv-gallery::-webkit-scrollbar { display: none; }
  .inv-gallery .ph {
    flex: 0 0 88%;
    min-width: 0;
    height: 440px;
    border-radius: 16px;
    background-color: #1a9e6e;
    scroll-snap-align: start;
    overflow: hidden;
  }
  .inv-gallery .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .inv-gallery .ph img.inv-img-aquario {
    object-position: center 18%;
  }

  /* ===== SERVICOS ===== */
  #servicos { background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.06); }
  .servicos-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
  .servico-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; letter-spacing: -0.01em; }
  .servico-title.red { color: #c04040; }
  .servico-list { list-style: none; display: flex; flex-direction: column; }
  .servico-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 14px; color: var(--text-muted); line-height: 1.5; font-weight: 300; transition: background 0.15s; }
  .servico-list li:last-child { border-bottom: none; }
  .s-icon { font-size: 12px; margin-top: 3px; flex-shrink: 0; width: 18px; text-align: center; }
  .s-ok { color: var(--green-mid); } .s-no { color: #c04040; }
  .servicos-cta {
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--green-dark);
    color: #fff;
    border-radius: 20px;
  }
  .servicos-cta h3 {
    margin: 0 0 6px;
    font-family: 'Playfair Display', serif;
    font-size: 25px;
  }
  .servicos-cta p { margin: 0; color: rgba(255,255,255,0.68); font-size: 14px; line-height: 1.6; }

  /* ===== FAQ (Premium Card Style) ===== */
  #faq {
    background: var(--bg);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 90px 40px;
  }
  .faq-inner { max-width: 780px; margin: 0 auto; }
  .faq-list { display: flex; flex-direction: column; margin-top: 2.5rem; gap: 12px; }
  .faq-item {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 0 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .faq-item:hover {
    border-color: rgba(34, 200, 138, 0.25);
    box-shadow: 0 16px 36px rgba(0,0,0,0.05);
    transform: translateY(-1px);
  }
  .faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.05); }
  .faq-toggle { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
  .faq-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s;
  }
  .faq-label:hover { color: var(--green-mid); }
  .faq-plus {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-dark);
    transition: transform 0.25s, background 0.25s, color 0.25s;
    flex-shrink: 0;
  }
  .faq-toggle:checked + .faq-label .faq-plus {
    transform: rotate(45deg);
    background: var(--green-btn);
    color: #fff;
  }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .faq-toggle:checked ~ .faq-answer { max-height: 300px; }
  .faq-answer-inner {
    padding: 0 0 24px;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
  }
  .faq-cta { text-align: center; margin-top: 3.5rem; }
  .btn-outline-dark { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--green-mid); color: var(--green-dark); padding: 12px 28px; border-radius: 999px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s, color 0.2s; }
  .btn-outline-dark:hover { background: var(--green-mid); color: #fff; }

  /* ===== OBS ===== */
  #obs { background: var(--beige); }
  .obs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 860px; margin-top: 2rem; }
  .obs-item { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }
  .obs-item strong { color: var(--text-dark); font-weight: 600; display: block; margin-bottom: 4px; font-size: 14px; }
  .obs-contact { margin-top: 2.5rem; padding: 20px 24px; background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: 20px; display: inline-flex; flex-direction: column; gap: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
  .obs-contact span { font-size: 12px; color: var(--text-muted); }
  .obs-contact a { color: var(--text-dark); font-weight: 600; text-decoration: none; font-size: 15px; transition: color 0.2s; }
  .obs-contact a:hover { color: var(--green-mid); }

  /* scroll animations handled by JS */

  /* ===== MOBILE ===== */
  @media (max-width: 960px) {
    .section-wrap { padding: 50px 24px; }
    .two-col, .inv-layout, .servicos-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .photo-grid { display: none; }
    .roteiro-visual { position: static; }
    .roteiro-grid .ph:first-child { height: 220px; }
    .dep-grid-sa { grid-template-columns: 1fr; gap: 24px; }
    .obs-grid { grid-template-columns: 1fr; }
    .inv-gallery .ph { flex-basis: 86%; height: 280px; }
    .servicos-cta { padding: 24px; flex-direction: column; align-items: flex-start; }
    .subnav-premium { top: 56px; justify-content: flex-start; }
    .subnav-link { padding: 10px 14px; font-size: 10px; }
  }


  /* ===== SERVICOS (Apple Style) ===== */
  #servicos {
    background: var(--bg);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 90px 40px;
  }
  .servicos-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .servicos-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .servicos-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.05);
  }
  .servicos-card.red-theme {
    background: rgba(255, 255, 255, 0.65);
  }
  .servico-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .servico-title.red {
    color: #b05a20;
  }
  .servico-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }
  .servico-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
  }
  .s-icon-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
  }


  /* ===== HERO (Full bleed + Price Card) ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 80px 80px;
    background: #111;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: center;
  }
  .hero-text {
    color: #ffffff;
  }
  .hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  .hero-text p {
    font-size: clamp(15px, 1.5vw, 17px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    margin-bottom: 32px;
    font-weight: 300;
    max-width: 520px;
  }
  .hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }
  .trust-avatars {
    display: flex;
  }
  .trust-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #1a2721;
    margin-left: -10px;
    object-fit: cover;
  }
  .trust-avatars img:first-child { margin-left: 0; }
  .trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .trust-stars { font-size: 12px; }
  .trust-label { font-size: 12px; color: rgba(255,255,255,0.7); }

  /* Glassmorphic Price Card */
  .hero-card {
    background: rgba(14, 45, 36, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 36px;
    color: #fff;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  }
  .hero-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
  }
  .hero-price-from {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
  }
  .hero-price-val {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 3.8vw, 52px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
  }
  .hero-price-subtitle {
    font-size: clamp(12px, 1.4vw, 15px);
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 0;
    font-weight: 300;
  }
  .hero-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 20px;
  }
  .hero-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding: 0;
  }
  .hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
  }
  .hero-check-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .hero-pay-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .hero-pay-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
  }
  .pay-pix-mark {
    color: #22c88a;
    margin-right: 4px;
  }
  .pay-visa {
    font-style: italic;
  }
  .pay-mastercard-mark {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-right: 4px;
  }
  .pay-mastercard-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
  }
  .pay-mastercard-dot.red {
    background: #EB001B;
  }
  .pay-mastercard-dot.orange {
    background: #F79E1B;
    margin-left: -3px;
  }
  .pay-elo {
    color: #FFD000;
    font-weight: 900;
  }
  .pay-amex {
    color: #2E77BC;
    font-weight: 700;
  }
  .hero-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-btn);
    color: #ffffff;
    padding: 15px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 8px 24px rgba(34, 200, 138, 0.3);
  }
  .hero-cta-btn:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
  }

  /* ===== OBS (Apple Style) ===== */
  #obs {
    background: var(--white);
    padding: 100px 80px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .obs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 3rem auto 0 auto;
  }
  .obs-card {
    background: var(--bg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .obs-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.04);
  }
  .obs-icon-svg {
    width: 24px;
    height: 24px;
    color: var(--green-mid);
    flex-shrink: 0;
  }
  .obs-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .obs-card strong {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 700;
  }
  .obs-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
  }


  /* ===== AUTOMATIC PHOTO CAROUSEL ===== */
  .marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    border-radius: 20px;
    height: 420px;
    position: relative;
  }
  /* Optional: Gradient fades on edges */
  .marquee-wrapper::before, .marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0; width: 40px; height: 100%; z-index: 2;
  }
  .marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%); }
  .marquee-wrapper::after { right: 0; background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%); }
  
  .marquee-track {
    display: inline-flex;
    animation: marquee-scroll 25s linear infinite;
    gap: 16px;
    height: 100%;
  }
  .marquee-track:hover {
    animation-play-state: paused;
  }
  .marquee-track .ph {
    width: 320px;
    height: 100%;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
  }
  @keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* Also ensure mobile resets from earlier fixes are kept */
  @media (max-width: 960px) {
    .marquee-wrapper { height: 280px; border-radius: 12px; }
    .marquee-track .ph { width: 220px; border-radius: 12px; }
    .hero { padding: 100px 24px 60px !important; }
    .intro { padding: 60px 24px !important; }
    .hero-content { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .hero-text { text-align: center !important; align-items: center !important; display: flex; flex-direction: column; }
    .hero-text h1 { text-align: center !important; }
    .intro-content { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
    .intro-text-side { align-items: flex-start !important; text-align: left !important; }
    
    .hero::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(to bottom, rgba(14,45,36,0.3) 0%, rgba(14,45,36,0.9) 100%); z-index: 1;
    }
    .hero-inner { position: relative; z-index: 2; }
  }
/* ===== ROTEIRO CAROUSEL ===== */
  .roteiro-carousel-wrapper {
    position: relative;
    margin: 0 -20px;
    overflow: hidden;
    padding-bottom: 20px;
  }
  .roteiro-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 20px 80px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
  }
  .roteiro-carousel:focus-visible {
    outline: 3px solid rgba(34, 200, 138, 0.72);
    outline-offset: -2px;
  }
  .roteiro-carousel:active { cursor: grabbing; }
  .roteiro-carousel::-webkit-scrollbar { display: none; }
  .roteiro-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
    position: relative;
    height: 470px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: grab;
  }
  .roteiro-card:active { cursor: grabbing; }
  .roteiro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }
  .roteiro-card-img {
    height: 50%;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }
  .roteiro-card-img > img:not(.roteiro-card-secondary) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
  }
  .roteiro-img-aquario {
    object-position: center 18%;
  }
  .roteiro-card:hover .roteiro-card-img > img:not(.roteiro-card-secondary) { transform: scale(1.07); }
  .roteiro-card-secondary {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 34%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.94);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.22);
    z-index: 2;
    background: #fff;
  }
  .roteiro-card-secondary-top {
    top: 18px;
    bottom: auto;
  }
  .roteiro-card-day {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(26, 158, 110, 0.92);
    color: #fff;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    letter-spacing: 0.3px;
  }
  .roteiro-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
  }
  .roteiro-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
  }
  .roteiro-card-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
  }
  .roteiro-section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .roteiro-section-header .section-sub {
    max-width: 500px;
    margin: 0 auto;
  }
  @media (max-width: 960px) {
    .roteiro-carousel { padding: 20px 24px; gap: 16px; }
    .roteiro-card { flex: 0 0 85%; }
    .roteiro-section-header { padding: 0 24px; }
    .roteiro-card-secondary {
      right: 12px;
      bottom: 12px;
      width: 36%;
      border-radius: 14px;
    }
    .roteiro-card-secondary-top {
      top: 18px;
      bottom: auto;
    }
  }

  /* ===== INSTAGRAM ===== */
  .instagram-section {
    background: #fff;
    padding: 88px 80px;
    text-align: center;
  }

  .instagram-section .section-title {
    margin-bottom: 12px;
  }

  .instagram-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 auto 34px;
    max-width: 680px;
  }

  .instagram-embed-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 22px;
    margin: 0 -80px 18px;
    padding: 8px 80px 14px;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .instagram-embed-grid::-webkit-scrollbar {
    display: none;
  }

  .instagram-embed-card {
    flex: 0 0 min(360px, 84vw);
    min-width: 0;
    overflow: hidden;
    scroll-snap-align: center;
    border-radius: 24px;
    background: #fbfaf7;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 16px 38px rgba(0,0,0,0.08);
    touch-action: pan-x pan-y;
  }

  .instagram-embed-card .instagram-media,
  .instagram-embed-card .instagram-media * {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    touch-action: pan-x pan-y;
  }

  .instagram-fallback {
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 28px;
    color: rgba(23,23,23,0.62);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(145deg, rgba(246,245,241,0.92), rgba(255,255,255,0.78));
  }

  .instagram-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #151515;
    color: #fff;
    padding: 15px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(0,0,0,0.14);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .instagram-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.18);
  }

  @media (max-width: 960px) {
    .hero-carousel,
    .viajantes-carousel,
    .roteiro-carousel,
    .dep-grid {
      touch-action: pan-x pan-y;
      overscroll-behavior-x: contain;
      overscroll-behavior-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .roteiro-card:hover {
      transform: none;
      box-shadow: 0 12px 36px rgba(0,0,0,0.08);
    }

    .instagram-section {
      padding: 72px 24px;
    }

    .instagram-embed-grid {
      margin: 0 -24px 14px;
      padding: 8px 24px 12px;
    }

    .dep-grid {
      margin: 0 -24px;
      padding: 8px 24px 34px;
    }

    .dep-card {
      flex-basis: 84vw;
      padding: 24px;
    }

    .servicos-layout,
    .obs-grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 16px;
    }

    .servicos-card,
    .obs-card {
      min-width: 0;
      width: 100%;
    }
  }

  /* ===== PREMIUM POLISH ===== */
  :root {
    --beige: #f5f5f3;
    --bg: #f5f5f3;
    --text-dark: #171717;
    --text-muted: #6e6e73;
    --border: rgba(0, 0, 0, 0.08);
  }

  body {
    background: #f5f5f3;
    color: var(--text-dark);
  }

  nav {
    background: rgba(250, 250, 248, 0.86);
    border-bottom-color: rgba(0, 0, 0, 0.07);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
  }

  .subnav-premium {
    background: rgba(255, 255, 255, 0.82);
    border-bottom-color: rgba(0, 0, 0, 0.07);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
  }

  .hero {
    min-height: 92vh;
    padding-bottom: 72px;
    background: #18231f;
  }

  .hero-bg img {
    object-position: center center;
  }

  .hero-bg::after {
    background: linear-gradient(90deg, rgba(9, 20, 17, 0.74) 0%, rgba(9, 20, 17, 0.48) 50%, rgba(9, 20, 17, 0.34) 100%);
  }

  .hero-text h1 {
    max-width: 680px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: 0;
  }

  .hero-text p {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
  }

  .hero-trust {
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(18, 31, 27, 0.36);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .hero-card {
    background: rgba(20, 39, 33, 0.68);
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.26);
  }

  .hero-cta-btn,
  .btn-inv {
    border-radius: 8px;
    box-shadow: none;
  }

  .section-wrap,
  #obs,
  #servicos,
  #faq,
  .viajantes-section,
  .sobre-mim,
  .instagram-section {
    border-color: rgba(0, 0, 0, 0.07);
  }

  .roteiro-card,
  .servicos-card,
  .obs-card,
  .faq-item,
  .instagram-embed-card {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  }

  .roteiro-card:hover,
  .servicos-card:hover,
  .obs-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.09);
  }

  .roteiro-card-img,
  .viajantes-photo,
  .inv-gallery .ph {
    border-radius: 8px;
  }

  .price-table,
  .cond-table,
  .servicos-cta {
    border-radius: 8px;
  }

  .servicos-cta {
    background: #172c25;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
  }

  .faq-question {
    font-weight: 600;
  }

  .instagram-section {
    background: #f5f5f3;
  }

  footer {
    background: #151d1a;
    color: rgba(255, 255, 255, 0.82);
    border-top-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .footer-logo-col .logo,
  .footer-tagline,
  .footer-title {
    color: #ffffff;
  }

  .footer-menu-col a,
  .footer-contact-item {
    color: rgba(255, 255, 255, 0.82);
  }

  .footer-menu-col a:hover,
  .footer-contact-item:hover {
    color: var(--green-light);
  }

  .footer-text,
  .footer-destinations,
  .cadastur-info {
    color: rgba(255, 255, 255, 0.62);
  }

  .footer-bottom {
    color: rgba(255, 255, 255, 0.58);
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .social-icon:hover {
    background: var(--green-mid);
  }

  .social-icon-disabled,
  .social-icon-disabled:hover {
    opacity: 0.45;
    cursor: default;
    transform: none;
    background: rgba(255, 255, 255, 0.1);
  }

  .cadastur-logo {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
  }

  @media (max-width: 960px) {
    .hero {
      min-height: 100svh;
      padding: 138px 24px 42px !important;
    }

    .hero-bg img {
      object-position: center center;
    }

    .hero-bg::after,
    .hero::after {
      background: linear-gradient(180deg, rgba(8, 18, 15, 0.3) 0%, rgba(8, 18, 15, 0.76) 64%, rgba(8, 18, 15, 0.92) 100%);
    }

    .hero-text h1 {
      max-width: 420px;
      font-size: clamp(38px, 11vw, 52px);
      line-height: 1.02;
    }

    .hero-text p {
      max-width: 420px;
      font-size: 15.5px;
    }

    .hero-card {
      padding: 24px 20px;
    }

    .roteiro-card:hover,
    .servicos-card:hover,
    .obs-card:hover {
      transform: none;
    }
  }


  .logo {
    display: inline-flex !important;
    align-items: center;
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
    line-height: 0 !important;
    letter-spacing: 0 !important;
  }
  .logo img {
    display: block;
    width: clamp(150px, 18vw, 230px);
    height: auto;
    max-height: 68px;
    object-fit: contain;
  }
  footer .logo img, .footer-logo-col .logo img {
    width: clamp(150px, 16vw, 220px);
  }
  @media (max-width: 680px) {
    .logo img { width: clamp(138px, 46vw, 190px); max-height: 54px; }
  }

/* ===== PACKAGE HEADER REFINEMENT ===== */
  body {
    background: #f5f5f3 !important;
  }

  body > nav {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    min-height: 74px !important;
    padding: 16px 24px 10px !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,245,240,0.88)) !important;
    border-bottom: 0 !important;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 18px 46px rgba(20,20,20,0.05) !important;
    backdrop-filter: blur(22px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
  }

  body > nav .nav-left {
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0 !important;
  }

  body > nav .logo {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body > nav .nav-links-small {
    display: none !important;
  }

  body > nav .logo {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }

  body > nav .logo img {
    width: clamp(142px, 13vw, 176px) !important;
    max-height: 39px !important;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.08)) !important;
  }

  .subnav-premium {
    position: relative !important;
    top: 0 !important;
    width: min(calc(100% - 32px), 720px) !important;
    margin: 0 auto -24px !important;
    padding: 5px !important;
    justify-content: center !important;
    gap: 3px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    border: 1px solid rgba(20, 20, 20, 0.08) !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 32px rgba(20,20,20,0.08) !important;
    backdrop-filter: blur(24px) saturate(170%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(170%) !important;
    overflow-x: auto !important;
    z-index: 20 !important;
  }

  .subnav-link {
    flex: 0 0 auto !important;
    border-right: 0 !important;
    border-radius: 999px !important;
    padding: 9px 13px !important;
    color: rgba(23, 23, 23, 0.70) !important;
    font-size: 10.5px !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    background: transparent !important;
  }

  .subnav-link:hover,
  .subnav-link.active {
    color: #111111 !important;
    background: rgba(15, 107, 74, 0.10) !important;
  }

  .hero {
    padding-top: clamp(78px, 8vw, 112px) !important;
  }

  @media (max-width: 960px) {
    body > nav {
      min-height: 62px !important;
      padding: 12px 18px 8px !important;
    }

    body > nav .logo img {
      width: clamp(130px, 40vw, 160px) !important;
      max-height: 36px !important;
    }

    .subnav-premium {
      top: 0 !important;
      width: calc(100% - 20px) !important;
      margin-bottom: -18px !important;
      justify-content: flex-start !important;
      padding: 5px !important;
    }

    .hero {
      padding-top: 58px !important;
    }
  }
  /* ===== END PACKAGE HEADER REFINEMENT ===== */

  /* ===== TRUST RIBBON ===== */
  .trust-ribbon {
    position: relative;
    z-index: 8;
    padding: 0 clamp(20px, 5vw, 80px) 26px;
    margin-top: -28px;
  }

  .trust-ribbon-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 24px;
    background: rgba(19,25,25,0.72);
    box-shadow: 0 22px 60px rgba(0,0,0,0.22);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
  }

  .trust-ribbon-item {
    min-height: 70px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .trust-ribbon-item strong,
  .trust-ribbon-item span {
    display: block;
  }

  .trust-ribbon-item strong {
    margin-bottom: 4px;
    color: rgba(255,255,255,0.94);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .trust-ribbon-item span {
    color: rgba(255,255,255,0.64);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
  }

  @media (max-width: 780px) {
    .trust-ribbon {
      margin-top: -18px;
      padding: 0 18px 22px;
    }

    .trust-ribbon-inner {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border-radius: 20px;
      padding: 8px;
    }

    .trust-ribbon-item {
      min-height: 64px;
      padding: 12px;
      border-radius: 15px;
    }
  }
  /* ===== END TRUST RIBBON ===== */

  /* ===== BOOKING STEPS ===== */
  .booking-steps {
    padding: 34px clamp(20px, 5vw, 80px) 30px;
    background: var(--beige);
  }

  .booking-steps-inner {
    max-width: 1120px;
    margin: 0 auto;
  }

  .booking-steps-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
  }

  .booking-steps-eyebrow {
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .booking-steps-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    color: var(--text-dark);
  }

  .booking-steps-sub {
    max-width: 390px;
    color: rgba(26,26,26,0.58);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
  }

  .booking-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .booking-step {
    min-height: 150px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,0,0,0.065);
    box-shadow: 0 12px 34px rgba(20,24,30,0.06);
  }

  .booking-step-number {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(15,107,74,0.10);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
  }

  .booking-step strong,
  .booking-step span {
    display: block;
  }

  .booking-step strong {
    margin-bottom: 7px;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.25;
  }

  .booking-step span {
    color: rgba(26,26,26,0.58);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
  }

  @media (max-width: 920px) {
    .booking-steps-head {
      align-items: flex-start;
      flex-direction: column;
    }

    .booking-steps-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 620px) {
    .booking-steps {
      padding: 24px 18px 22px;
    }

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

    .booking-step {
      min-height: 0;
      border-radius: 18px;
      padding: 16px;
    }
  }
  /* ===== END BOOKING STEPS ===== */

.guide-crosslink{padding:72px 24px;background:#f7f4ec;color:#181818}.guide-crosslink-inner{max-width:980px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:24px;align-items:center;background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:24px;padding:30px;box-shadow:0 22px 70px rgba(16,27,22,.08)}.guide-crosslink-kicker{display:block;color:#1d8f63;font-size:12px;font-weight:900;letter-spacing:.22em;text-transform:uppercase;margin-bottom:8px}.guide-crosslink h2{font-family:var(--font-serif, Georgia, serif);font-size:clamp(30px,4vw,48px);line-height:1.05;margin:0 0 10px;letter-spacing:0}.guide-crosslink p{margin:0;color:#686868;font-size:17px;line-height:1.55;max-width:680px}.guide-crosslink .btn-green{white-space:nowrap;min-width:190px;justify-content:center}@media(max-width:760px){.guide-crosslink{padding:54px 18px}.guide-crosslink-inner{grid-template-columns:1fr;padding:24px;border-radius:18px}.guide-crosslink .btn-green{width:100%;min-width:0}}

/* Mobile overflow guard */
@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body *,
  body *::before,
  body *::after {
    min-width: 0;
  }

  body > nav,
  .subnav-premium,
  .hero,
  .hero-content,
  .hero-text,
  .hero-card,
  .section-wrap,
  .two-col,
  .inv-layout,
  .servicos-layout,
  .obs-grid,
  footer {
    max-width: 100% !important;
  }

  .hero {
    width: 100%;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .hero-content,
  .hero-text,
  .hero-card {
    width: 100% !important;
  }

  .hero-text h1 {
    max-width: 100% !important;
    font-size: clamp(38px, 12vw, 48px) !important;
    line-height: 1.02 !important;
    overflow-wrap: break-word;
  }

  .hero-text p,
  .trust-label,
  .hero-feature-item {
    overflow-wrap: break-word;
  }

  .hero-trust {
    max-width: 100%;
  }

  .hero-price-row {
    flex-wrap: nowrap;
  }

  .hero-price-val {
    font-size: clamp(34px, 11vw, 44px) !important;
  }

  .hero-price-subtitle {
    white-space: nowrap;
  }

  .hero-cta-btn,
  .btn-inv {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .subnav-premium {
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
  }
}


/* Cabin details for cruise packages */
.cabin-section {
  background: #f7f6f2;
}

.cabin-layout {
  max-width: 1120px;
  margin: 2.4rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: stretch;
}

.cabin-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cabin-photo {
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background: #d8ded8;
  box-shadow: 0 18px 55px rgba(15, 25, 20, 0.08);
}

.cabin-photo.main,
.cabin-photo.wide {
  grid-column: 1 / -1;
  min-height: 340px;
}

.cabin-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cabin-photo.wide img {
  object-fit: contain;
  background: #fff;
}

.cabin-carousel-wrapper {
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
}

.cabin-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 78%);
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(30, 45, 38, 0.28) transparent;
}

.cabin-carousel:focus-visible {
  outline: 3px solid rgba(34, 200, 138, 0.35);
  outline-offset: 4px;
}

.cabin-carousel:active {
  cursor: grabbing;
}

.cabin-slide {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #d8ded8;
  box-shadow: 0 18px 55px rgba(15, 25, 20, 0.08);
  scroll-snap-align: start;
}

.cabin-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cabin-details {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 55px rgba(15, 25, 20, 0.06);
}

.cabin-details h3 {
  margin: 0 0 14px;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.05;
}

.hotel-planned {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hotel-planned span {
  display: block;
  color: var(--green-mid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.hotel-planned strong {
  display: block;
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hotel-planned p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.cabin-details h3 + ul {
  margin-top: 0;
}

.cabin-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 11px;
}

.cabin-details li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.cabin-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-mid);
  font-weight: 800;
}

.cabin-note {
  margin: -2px 0 0;
  padding: 0;
  background: transparent;
  color: rgba(85, 85, 85, 0.78);
  font-size: 11.5px;
  line-height: 1.45;
}

.hotel-planned + .cabin-note {
  margin: -12px 0 24px;
}

@media (max-width: 960px) {
  .cabin-layout {
    grid-template-columns: 1fr;
  }

  .cabin-photo.main,
  .cabin-photo.wide {
    min-height: 280px;
  }

  .cabin-photo {
    min-height: 190px;
  }

  .cabin-slide {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .cabin-media-grid {
    grid-template-columns: 1fr;
  }

  .cabin-photo,
  .cabin-photo.main,
  .cabin-photo.wide {
    min-height: 240px;
    border-radius: 16px;
  }

  .cabin-carousel {
    grid-auto-columns: minmax(245px, 88%);
    gap: 12px;
  }

  .cabin-slide {
    min-height: 310px;
    border-radius: 18px;
  }

  .cabin-details {
    padding: 22px;
    border-radius: 18px;
  }

  .cabin-details h3 {
    font-size: 24px;
  }
}

.booking-section {
  background: #fff;
}

.booking-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.booking-card {
  min-height: 218px;
  padding: 24px 22px;
  border: 1px solid rgba(16, 28, 23, 0.08);
  border-radius: 22px;
  background: #f8f7f3;
  box-shadow: 0 18px 50px rgba(15, 25, 20, 0.055);
}

.booking-card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eaf6ef;
  color: var(--green-mid);
  font-size: 20px;
  font-weight: 900;
}

.booking-card h3 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.booking-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.booking-card a {
  color: var(--green-mid);
  font-weight: 800;
  text-decoration: none;
}

.booking-note {
  width: min(920px, calc(100% - 32px));
  margin: 1.35rem auto 0;
  padding: 15px 18px;
  border: 1px solid rgba(24, 93, 69, 0.14);
  border-radius: 18px;
  background: #eef8f2;
  color: #244539;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.authority-strip {
  width: min(1120px, calc(100% - 32px));
  margin: 1.3rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.authority-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(16, 28, 23, 0.09);
  border-radius: 999px;
  background: #fff;
  color: #315244;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(15, 25, 20, 0.045);
}

@media (max-width: 960px) {
  .booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .booking-card {
    min-height: 0;
    padding: 22px;
    border-radius: 18px;
  }

  .booking-note {
    text-align: left;
  }

  .authority-strip {
    justify-content: flex-start;
  }
}

/* Design polish: premium landing readability */
.subnav-premium {
  min-height: 48px;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(15, 25, 20, 0.08);
}

.subnav-link {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.hero-card {
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
}

.hero-price-from,
.hero-price-subtitle {
  font-size: 13px;
}

.hero-feature-item {
  font-size: 15px;
  line-height: 1.42;
}

.hero-pay-row {
  gap: 7px;
}

.hero-pay-chip {
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.hero-cta-btn,
.btn-green,
.btn-dark,
.btn-outline {
  border-radius: 999px;
}

.section-wrap {
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(64px, 7vw, 92px);
}

.section-title {
  letter-spacing: 0;
}

.faq-list {
  gap: 10px;
}

.faq-item {
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 25, 20, 0.045);
}

.faq-label {
  min-height: 66px;
  font-size: 15.5px;
}

.faq-answer-inner {
  font-size: 14.5px;
  line-height: 1.65;
}

.cabin-details {
  border-radius: 20px;
  box-shadow: 0 14px 42px rgba(15, 25, 20, 0.055);
}

.cabin-photo {
  border-radius: 18px;
  box-shadow: 0 14px 42px rgba(15, 25, 20, 0.065);
}

@media (max-width: 960px) {
  .subnav-premium {
    min-height: 42px;
  }

  .subnav-link {
    min-height: 38px;
    padding: 10px 14px;
    font-size: 11.5px;
  }

  .hero-card {
    padding: 28px 24px;
  }
}

@media (max-width: 680px) {
  .hero-card {
    border-radius: 18px;
    padding: 26px 20px;
  }

  .hero-price-subtitle {
    font-size: 12.5px;
  }

  .hero-feature-item {
    font-size: 14.5px !important;
  }

  .hero-pay-chip {
    font-size: 10.5px;
    padding: 5px 9px;
  }

  .hero-cta-btn {
    min-height: 52px;
  }

  .faq-label {
    min-height: 62px;
    font-size: 15px;
  }
}

/* Final precedence pass */
.subnav-premium {
  min-height: 48px !important;
  padding: 6px !important;
  box-shadow: 0 12px 34px rgba(15, 25, 20, 0.08) !important;
}

.subnav-link {
  min-height: 40px !important;
  padding: 11px 17px !important;
  font-size: 12px !important;
  letter-spacing: 0 !important;
}

.hero-pay-chip {
  min-height: 26px !important;
  font-size: 11px !important;
}

.hero-cta-btn {
  border-radius: 999px !important;
}

@media (max-width: 680px) {
  .subnav-premium {
    min-height: 42px !important;
    padding: 5px !important;
  }

  .subnav-link {
    min-height: 36px !important;
    padding: 10px 13px !important;
    font-size: 11.5px !important;
  }

  .hero-pay-chip {
    font-size: 10.5px !important;
  }
}

/* Expedition pages */
.expedition-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 20px 0 10px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff3c4;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.expedition-card .hero-card-divider {
  margin-bottom: 18px;
}

.spots-widget {
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.spots-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.spots-top strong {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0;
}

.spots-bar {
  width: 100%;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.spots-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c88a, #ffe08a);
}

.spots-widget p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.expedition-status {
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(34, 200, 138, 0.16), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

  .expedition-status-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

  .expedition-status-top strong {
    color: #fff3c4;
    font-size: 15px;
    letter-spacing: .02em;
    white-space: nowrap;
  }

.expedition-status p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.45;
}

.expedition-price .price-options {
  grid-template-columns: 1fr;
}

.expedition-intro {
  background: #fbfbf8;
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(52px, 6vw, 78px);
}

.expedition-intro-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.expedition-intro p {
  max-width: 860px;
  margin: 18px auto 0;
  color: #1f2a35;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0;
}

.expedition-intro .expedition-intro-lead {
  max-width: 900px;
  margin-top: 26px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.12;
  font-weight: 800;
}

.expedition-intro .expedition-intro-soft {
  max-width: 780px;
  color: rgba(31, 42, 53, 0.72);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
}

.expedition-intro strong {
  display: block;
  margin-top: 26px;
  color: #1a9e6e;
  font-size: clamp(20px, 1.9vw, 28px);
  text-align: center;
}

.expedition-authority {
  background: #f6f5f1;
}

.premium-proof-grid,
.prep-grid {
  max-width: 1120px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.premium-proof-card,
.prep-card {
  background: #fff;
  border: 1px solid rgba(20, 35, 28, 0.08);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 48px rgba(16, 27, 22, 0.06);
}

.premium-proof-card span {
  display: block;
  font-size: 28px;
  margin-bottom: 14px;
}

.premium-proof-card strong,
.prep-card strong {
  display: block;
  color: #151515;
  font-size: 18px;
  margin-bottom: 10px;
}

.premium-proof-card p,
.prep-card p {
  margin: 0;
  color: #6d6d6d;
  font-size: 15px;
  line-height: 1.65;
}

.service-group {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 35, 28, 0.08);
}

.service-group:first-of-type {
  margin-top: 24px;
}

.service-group > strong {
  display: block;
  color: #151515;
  font-size: 16px;
  margin-bottom: 12px;
}

.service-group .servico-list {
  margin-top: 0;
}

.preparation-section {
  background: #fbfbf8;
}

.expedition-card .hero-feature-item {
  align-items: flex-start;
  text-align: left;
}

.expedition-card .hero-check-svg {
  margin-top: 2px;
}

@media (max-width: 680px) {
  .expedition-label {
    margin-top: 16px;
    font-size: 10.5px;
    padding: 7px 11px;
  }

  .spots-widget {
    padding: 14px;
  }

  .expedition-status {
    padding: 14px;
  }

  .expedition-status-top {
    gap: 8px;
    font-size: 11px;
  }

  .expedition-status-top strong {
    font-size: 13px;
  }

  .expedition-card .hero-feature-item {
    gap: 10px;
    line-height: 1.35;
  }

  .expedition-intro {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .expedition-intro-inner {
    padding: 0 20px;
  }

  .expedition-intro p {
    margin-top: 14px;
    font-size: 16.5px;
    line-height: 1.55;
    text-align: center;
  }

  .expedition-intro .expedition-intro-lead {
    font-size: 25px;
    line-height: 1.22;
    text-align: center;
  }

  .expedition-intro strong {
    text-align: center;
  }

  .premium-proof-grid,
  .prep-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 12px;
  }

  .premium-proof-card,
  .prep-card {
    padding: 22px;
    border-radius: 16px;
  }

  .service-group {
    margin-top: 18px;
    padding-top: 18px;
  }

  .spots-top strong {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .hero {
    overflow: hidden;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-card {
    order: 4 !important;
    align-self: center !important;
    width: calc(100vw - 56px) !important;
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-trust,
  .expedition-label {
    max-width: calc(100vw - 48px);
  }

  .hero-text h1 {
    order: 1 !important;
    font-size: clamp(46px, 13vw, 56px) !important;
    margin-bottom: 6px !important;
  }

  .hero-subtitle-kicker {
    order: 2 !important;
    font-size: clamp(25px, 7.2vw, 32px);
    max-width: calc(100vw - 70px);
    overflow-wrap: break-word;
    margin-bottom: 18px !important;
  }

  .hero-text p {
    order: 3 !important;
    max-width: calc(100vw - 70px);
    font-size: 15.5px;
    overflow-wrap: break-word;
  }

  .hero-card {
    padding: 24px 20px !important;
  }

  .hero-price-row {
    align-items: baseline;
    gap: 6px;
  }

  .hero-price-val {
    font-size: clamp(36px, 11vw, 44px) !important;
  }

  .hero-price-subtitle {
    font-size: 12px;
  }

  .expedition-status-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .expedition-status-top strong {
    white-space: normal;
  }

  .hero-feature-item {
    display: grid !important;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start !important;
    overflow-wrap: anywhere;
  }

  .hero-pay-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 960px) {
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-card {
    order: 4 !important;
    justify-self: center !important;
    align-self: center !important;
    width: min(340px, calc(100vw - 56px)) !important;
    max-width: min(340px, calc(100vw - 56px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-column: 1 / -1 !important;
    transform: none !important;
  }

  .hero-text h1 {
    order: 1 !important;
  }

  .hero-subtitle-kicker {
    order: 2 !important;
  }

  .hero-text p {
    order: 3 !important;
  }
}

/* Expedição Curaçao: hero e investimento */
.expedition-hero .hero-text h1 {
  font-size: clamp(72px, 9.4vw, 126px);
  line-height: 0.88;
  margin-bottom: 6px;
}

.expedition-hero .hero-subtitle-kicker {
  font-size: clamp(26px, 3.1vw, 40px);
  line-height: 1.02;
  margin-bottom: 24px;
}

.expedition-hero .hero-title-flag {
  display: inline-block;
  font-size: 0.42em;
  margin-left: 0.08em;
  transform: translateY(-0.04em);
  vertical-align: middle;
}

.expedition-price .price-option-head strong {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

@media (max-width: 680px) {
  .expedition-hero {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .expedition-hero .hero-content {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .expedition-hero .hero-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .expedition-hero .expedition-label {
    max-width: 100% !important;
    padding: 8px 13px;
    font-size: 10px;
    white-space: normal;
  }

  .expedition-hero .hero-text h1 {
    font-size: clamp(58px, 18vw, 76px) !important;
    line-height: 0.9 !important;
    margin-bottom: 4px !important;
    max-width: 100% !important;
  }

  .expedition-hero .hero-title-flag {
    font-size: 0.38em;
    margin-left: 0.05em;
  }

  .expedition-hero .hero-subtitle-kicker {
    font-size: clamp(24px, 7.5vw, 32px) !important;
    max-width: 100% !important;
    margin-bottom: 18px !important;
  }

  .expedition-hero .hero-text p {
    max-width: 100% !important;
  }

  .expedition-hero .hero-card {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 340px !important;
    margin: 34px auto 0 !important;
    transform: none !important;
  }

  .inv-sub {
    margin-top: 0;
  }
}
