@layer reset, base, layout, components, responsive;

@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
}

@layer base {
  :root {
    --clr-primary: #061A35; /* Azul Escuro */
    --clr-secondary: #DFA83F; /* Laranja / Ouro */
    --clr-accent: #FCCF86; /* Amarelo Suave */
    --clr-bg: #061A35; /* Fundo principal */
    --clr-surface: #FFFFFF;
    --clr-surface-alt: #F2F4F5;
    --clr-text: #061A35;
    --clr-text-muted: #666666;
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
  }

  body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
}

@layer layout {
  .page-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 0;
    background-color: var(--clr-primary);
    overflow-x: hidden;
    width: 100%;
  }

  .site-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
  }
}

@layer components {
  /* ================= NAVBAR (MODERN LIGHT DOCK PILL) ================= */
  .mobile-bottom-nav {
    display: none;
  }

  .main-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1.4rem;
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #061A35;
    border-radius: 99px;
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 820px;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .main-header.scrolled {
    top: 1rem;
    padding: 0.55rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.14);
    border-color: rgba(255, 255, 255, 1);
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    gap: 0.6rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #061A35;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: transform 0.25s ease;
  }

  .logo:hover {
    transform: scale(1.04);
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 2rem;
    list-style: none;
    padding: 0;
  }

  .nav-links a {
    font-size: 0.88rem;
    font-weight: 600;
    color: #4B5563;
    width: auto;
    padding: 0.4rem 0.2rem;
    position: relative;
    transition: color 0.25s ease;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #061A35;
    border-radius: 99px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #061A35;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 80%;
  }

  .header-actions {
    display: flex;
    flex-direction: row;
    width: auto;
    margin-top: 0;
  }
  
  .btn-dark-pill {
    background-color: #061A35;
    color: #FFFFFF;
    padding: 0.55rem 1.4rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(6, 26, 53, 0.25);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.3s ease;
  }

  .btn-dark-pill:hover {
    transform: scale(1.05);
    background-color: #0B254C;
    box-shadow: 0 8px 25px rgba(6, 26, 53, 0.4);
    color: #FFFFFF;
  }

  .btn-dark-pill:active {
    transform: scale(0.98);
  }

  /* ================= HERO SECTION (HAVEN-STYLE CLEAN VIBE) ================= */
  .hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-image: url('assets/hero.png');
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 6rem 2rem;
    border-radius: 0 0 54px 54px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 26, 53, 0.5) 0%, rgba(6, 26, 53, 0.25) 35%, rgba(6, 26, 53, 0.88) 100%),
                radial-gradient(circle at 50% 45%, rgba(6, 26, 53, 0.1) 0%, rgba(6, 26, 53, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-radius: 99px;
    padding: 0.45rem 1.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #061A35;
    margin-bottom: 1.8rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 10;
    cursor: default;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  }

  .hero-badge:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }

  .hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 10;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.85), 0 2px 10px rgba(0, 0, 0, 0.6);
  }

  .hero-title-highlight {
    color: var(--clr-accent);
    display: inline-block;
  }

  .hero-subtitle {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.94);
    max-width: 660px;
    line-height: 1.6;
    margin-bottom: 2.4rem;
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
  }

  .hero-actions {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
  }

  .btn-hero-primary {
    background-color: #FFFFFF;
    color: #061A35;
    padding: 0.9rem 2.2rem;
    border-radius: 99px;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background-color 0.2s ease;
  }

  .btn-hero-primary:hover {
    background-color: var(--clr-accent);
    color: #061A35;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  }

  .btn-hero-primary:active {
    transform: translateY(0) scale(0.98);
  }

  .btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #FFFFFF;
    padding: 0.9rem 1.8rem;
    border-radius: 99px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
  }

  .hero-scroll-pill {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 99px;
    padding: 0.4rem 1.25rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 5;
    text-decoration: none;
    animation: scrollBounce 2.4s infinite ease-in-out;
    transition: background-color 0.25s ease, transform 0.25s ease;
  }

  .hero-scroll-pill:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
  }

  /* ================= OTHER BUTTONS ================= */
  .btn-yellow {
    background-color: var(--clr-accent);
    color: var(--clr-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .btn-yellow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(25deg);
    transition: left 0.75s ease;
  }
  
  .btn-yellow:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-primary);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 25px rgba(252, 207, 134, 0.45);
  }

  .btn-yellow:hover::after {
    left: 130%;
  }

  .btn-primary {
    background-color: var(--clr-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(25deg);
    transition: left 0.75s ease;
  }

  .btn-primary:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 25px rgba(6, 26, 53, 0.35);
  }

  .btn-primary:hover::after {
    left: 130%;
  }

  .inner-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* ================= PILLARS GRID ================= */
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    width: 100%;
  }

  .pillar-card {
    height: 350px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--clr-primary);
    position: relative;
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  }

  .pillar-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    transition: transform 0.3s ease;
  }

  .pillar-card:hover h3 {
    transform: scale(1.05);
  }

  .pillar-white {
    background-color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .pillar-white:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
  }

  .pillar-yellow {
    background-color: var(--clr-accent);
  }

  .highlight-pillar {
    height: 400px;
    margin-top: -30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .highlight-pillar:hover {
    transform: translateY(-42px) scale(1.03);
    box-shadow: 0 30px 60px rgba(252, 207, 134, 0.35);
  }

  /* ================= FEATURES BANNER ================= */
  .features-banner {
    background-color: #FFFFFF;
    width: 100%;
    border-radius: 40px;
    margin: 4rem 0;
    padding: 5rem 0;
    color: var(--clr-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }

  .features-intro {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    text-align: left;
  }

  .features-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  .features-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--clr-primary);
    opacity: 0.9;
  }

  .features-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    max-width: 1140px;
    margin: 0 auto;
  }

  .feature-box {
    background-color: var(--clr-primary);
    color: #FFFFFF;
    border-radius: 20px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
  }

  .feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--clr-accent);
    transition: height 0.35s ease;
  }

  .feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 26, 53, 0.3);
    border-color: rgba(252, 207, 134, 0.35);
  }

  .feature-box:hover::before {
    height: 100%;
  }

  .feature-box h4 {
    color: var(--clr-accent);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .feature-box:hover h4 {
    transform: translateX(4px);
    color: #FFFFFF;
  }

  .feature-box p {
    font-size: 0.92rem;
    line-height: 1.55;
    opacity: 0.88;
  }

  /* ================= TOP DESTINATIONS / WHATSAPP HABITS ================= */
  .destinations-section {
    border-radius: 24px;
    padding: 3rem 0;
  }

  .dest-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
  }

  .dest-header h2 {
    font-size: 2rem;
    font-weight: 800;
  }

  .dest-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.2rem 1.6rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
  }

  .dest-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--clr-accent) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  }

  .dest-price-tag {
    background: var(--clr-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: inline-block;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  }

  .dest-card:hover .dest-price-tag {
    transform: scale(1.06);
    background-color: var(--clr-accent) !important;
    color: var(--clr-primary) !important;
  }

  .dest-card-content {
    text-align: center;
  }

  .dest-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .dest-card-desc {
    font-size: 0.88rem;
    opacity: 0.9;
    line-height: 1.5;
  }

  /* ================= PRICING SECTION ================= */
  .pricing-wrapper {
    border: none;
    border-radius: 40px;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .pricing-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
  }
  
  .pricing-header p {
    font-size: 1.1rem;
    max-width: 500px;
  }

  .packages-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
  }

  .pkg-card-text {
    background-color: white;
    color: var(--clr-primary);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  }

  .pkg-card-text:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  }

  .pkg-card-text.highlight {
    background-color: var(--clr-surface);
    color: var(--clr-primary);
    border: 2px solid var(--clr-accent);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
  }

  .pkg-card-text.highlight:hover {
    transform: scale(1.08) translateY(-6px);
    box-shadow: 0 30px 60px rgba(252, 207, 134, 0.35);
  }

  .pkg-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background-color: var(--clr-secondary);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 99px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(223, 168, 63, 0.4);
  }

  .pkg-card-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
  }

  .pkg-desc {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.2rem;
  }

  .pkg-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(6, 26, 53, 0.08);
  }

  .pkg-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-primary);
  }

  .pkg-amount {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    color: var(--clr-primary);
    letter-spacing: -0.02em;
  }

  .pkg-period {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text-muted);
  }

  .pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #334155;
    flex-grow: 1;
  }

  .pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .pkg-features li::before {
    content: '✓';
    color: var(--clr-secondary);
    font-weight: 900;
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .btn-pkg {
    background-color: var(--clr-primary);
    color: #FFFFFF;
    padding: 0.9rem 1.6rem;
    border-radius: 99px;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 6px 18px rgba(6, 26, 53, 0.2);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.3s ease;
  }

  .btn-pkg:hover {
    transform: translateY(-2px) scale(1.02);
    background-color: #0B254C;
    box-shadow: 0 10px 25px rgba(6, 26, 53, 0.35);
    color: #FFFFFF;
  }

  .btn-pkg:active {
    transform: translateY(0) scale(0.98);
  }

  .btn-pkg-highlight {
    background-color: var(--clr-accent);
    color: var(--clr-primary);
    box-shadow: 0 8px 22px rgba(252, 207, 134, 0.45);
  }

  .btn-pkg-highlight:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-primary);
    box-shadow: 0 12px 28px rgba(223, 168, 63, 0.5);
  }
  
  /* ================= GIANT FOOTER TEXT ================= */
  .footer-giant-text {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.25;
    margin: 6rem auto 4rem auto;
    color: #FFFFFF;
    width: 100%;
    max-width: 1200px;
    padding: 0 1.5rem;
    letter-spacing: -0.01em;
  }
  
  .footer-giant-text span {
    background: linear-gradient(135deg, var(--clr-accent) 0%, #FFFFFF 50%, var(--clr-accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 6s linear infinite;
  }

  /* ================= BOOKING STEPS / COMO FUNCIONA ================= */
  .booking-section {
    padding-bottom: 2rem;
  }
  
  .booking-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .steps-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
  }
  
  .step-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: transform 0.3s ease;
  }

  .step-item:hover {
    transform: translateY(-4px);
  }
  
  .step-icon {
    width: 46px; 
    height: 46px;
    background-color: var(--clr-accent);
    color: var(--clr-primary);
    font-weight: 900;
    font-size: 1.1rem;
    border: none;
    border-radius: 14px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .step-item:hover .step-icon {
    transform: scale(1.18) rotate(6deg);
    background-color: var(--clr-secondary);
    box-shadow: 0 12px 25px rgba(252, 207, 134, 0.4);
  }
  
  .step-text {
    font-weight: 600;
  }
  
  .step-divider {
    flex: 1;
    height: 1px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  }

  /* ================= SCROLL REVEAL ANIMATIONS ================= */
  .reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  .reveal.reveal-scale {
    transform: translateY(25px) scale(0.94);
  }

  .reveal.reveal-left {
    transform: translateX(-40px);
  }

  .reveal.reveal-right {
    transform: translateX(40px);
  }

  .reveal.is-revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  /* Stagger delays */
  .delay-1 { transition-delay: 0.12s; }
  .delay-2 { transition-delay: 0.24s; }
  .delay-3 { transition-delay: 0.36s; }
  .delay-4 { transition-delay: 0.48s; }

  /* ================= KEYFRAMES ================= */
  @keyframes scrollBounce {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(8px);
    }
  }

  @keyframes shineText {
    0% {
      background-position: 0% center;
    }
    100% {
      background-position: 200% center;
    }
  }
}

@layer responsive {
  /* Tablet / Laptops pequenos */
  @media (max-width: 992px) {
    .pillars-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    
    .dest-carousel {
      grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-2x2 {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
    }
    
    .packages-section {
      grid-template-columns: 1fr;
      max-width: 550px;
      margin: 0 auto;
    }

    .pkg-card-text.highlight {
      transform: none;
    }
  }

  /* Dispositivos Móveis e Tablets Verticais */
  @media (max-width: 768px) {
    .inner-content {
      padding: 0 1.25rem;
    }

    /* Navbar flutuante compacta */
    .main-header {
      top: 0.8rem;
      width: 94%;
      padding: 0.55rem 1rem;
      border-radius: 99px;
    }

    .main-header.scrolled {
      top: 0.5rem;
      padding: 0.45rem 0.9rem;
    }

    .nav-links {
      display: none;
    }

    .main-header .logo span {
      font-size: 1.1rem;
    }

    .main-header .btn-dark-pill {
      padding: 0.45rem 1rem;
      font-size: 0.8rem;
    }

    /* Hero */
    .hero-section {
      min-height: 90vh;
      padding-top: 7rem;
      padding-bottom: 5rem;
      border-radius: 0 0 32px 32px;
    }

    .hero-title {
      font-size: 2.2rem;
      line-height: 1.15;
      padding: 0 0.5rem;
    }

    .hero-subtitle {
      font-size: 0.95rem;
      line-height: 1.55;
      padding: 0 0.5rem;
      margin-bottom: 1.8rem;
    }

    .hero-actions {
      flex-direction: column;
      gap: 0.8rem;
      width: 100%;
      max-width: 280px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
      width: 100%;
      padding: 0.8rem 1.5rem;
    }

    .hero-scroll-pill {
      bottom: 1.2rem;
    }

    /* 3 Pilares */
    .pillars-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-top: 4rem;
    }

    .pillar-card {
      height: auto;
      min-height: 120px;
      padding: 1.5rem;
      border-radius: 16px;
    }

    .highlight-pillar {
      height: auto;
      min-height: 130px;
      margin-top: 0;
      box-shadow: none;
    }

    .highlight-pillar:hover {
      transform: translateY(-6px);
    }

    /* Features Banner (Bloco Branco) */
    .features-banner {
      margin: 3rem 0;
      padding: 3rem 1rem;
      border-radius: 24px;
    }

    .features-intro {
      margin-bottom: 2rem;
    }

    .features-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .features-desc {
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .features-grid-2x2 {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .feature-box {
      padding: 1.5rem;
      border-radius: 16px;
    }

    /* WhatsApp Carousel Cards */
    .destinations-section {
      padding: 2rem 0;
    }

    .dest-header h2 {
      font-size: 1.4rem;
    }

    .dest-carousel {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .dest-card {
      min-height: auto;
      padding: 1.5rem 1rem;
      border-radius: 16px;
    }

    /* Preços */
    .pricing-wrapper {
      padding: 2rem 0;
      border-radius: 20px;
    }

    .pricing-header h2 {
      font-size: 1.8rem;
    }

    .pricing-header p {
      font-size: 0.95rem;
    }

    /* Passos / Como Funciona */
    .booking-section {
      margin-top: 2rem;
    }

    .booking-section h3 {
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    .steps-row {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .step-item {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }

    .step-divider {
      display: none;
    }

    /* Rodapé gigante */
    .footer-giant-text {
      font-size: 1.4rem;
      line-height: 1.35;
      margin: 3rem auto;
      padding: 0 1rem;
    }

    /* Barra de Navegação Inferior Mobile (Bottom Dock Bar - Amarelo Pastel) */
    .mobile-bottom-nav {
      display: block;
      position: fixed;
      bottom: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: 92%;
      max-width: 440px;
      background: rgba(252, 207, 134, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.7);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
      border-radius: 99px;
      padding: 0.45rem 0.6rem;
      z-index: 9999;
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      align-items: center;
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
    }

    .mobile-nav-links li {
      flex: 1;
      text-align: center;
    }

    .mobile-nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.25rem;
      color: rgba(6, 26, 53, 0.7);
      font-size: 0.68rem;
      font-weight: 700;
      padding: 0.4rem 0.2rem;
      border-radius: 99px;
      text-decoration: none;
      transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .mobile-nav-item svg {
      stroke: rgba(6, 26, 53, 0.7);
      transition: transform 0.25s ease, stroke 0.25s ease;
    }

    .mobile-nav-item:hover,
    .mobile-nav-item.active {
      color: var(--clr-primary);
    }

    .mobile-nav-item.active {
      background: rgba(6, 26, 53, 0.12);
      color: var(--clr-primary);
      font-weight: 800;
    }

    .mobile-nav-item.active svg {
      stroke: var(--clr-primary);
      transform: scale(1.12);
    }

    body {
      padding-bottom: 5.5rem;
    }
  }

  /* Celulares Pequenos */
  @media (max-width: 480px) {
    .hero-title {
      font-size: 1.85rem;
    }

    .hero-subtitle {
      font-size: 0.88rem;
    }

    .footer-giant-text {
      font-size: 1.2rem;
    }
  }

  /* Acessibilidade para movimento reduzido */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    
    .hero-scroll-pill {
      animation: none !important;
    }
  }
}
