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

  :root {
    --green: #1a4d2e;
    --green-mid: #2d7a4f;
    --green-light: #4caf76;
    --gold: #c9a84c;
    --gold-light: #e8d08a;
    --cream: #faf7f0;
    --text: #1c1c1c;
    --text-soft: #555;
    --white: #ffffff;
    --card-bg: #ffffff;
    --border: #e2ddd4;
  }

  body { background-color: var(--cream); font-family: 'Poppins', sans-serif; color: var(--text); min-height: 100vh; overflow-x: hidden; }

  /* HERO */
  .hero { background: var(--green); color: var(--white); text-align: center; padding: 70px 24px 80px; position: relative; overflow: hidden; }
  .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 10% 100%, rgba(77,175,118,.18) 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 90% 0%, rgba(201,168,76,.12) 0%, transparent 70%); pointer-events: none; }
  .flag-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 28px; opacity: 0; animation: fadeUp .7s ease forwards; }
  .flag { font-size: 2rem; line-height: 1; }
  .arrow { font-size: 1.2rem; color: var(--gold-light); }
  .hero-eyebrow { font-family: 'Poppins', sans-serif; font-size: .75rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; opacity: 0; animation: fadeUp .7s .1s ease forwards; }
  .hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; opacity: 0; animation: fadeUp .7s .2s ease forwards; }
  .hero h1 em { color: var(--gold-light); font-style: normal; font-weight: 800; }
  .hero p { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto; line-height: 1.7; opacity: 0; animation: fadeUp .7s .3s ease forwards; }
  .divider { display: flex; align-items: center; gap: 16px; max-width: 200px; margin: 0 auto 14px; }
  .divider-line { flex: 1; height: 1px; background: var(--gold); }
  .divider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

  /* SECTION */
  .section { max-width: 1100px; margin: 0 auto; padding: 72px 24px; }
  .section-label { font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--green-mid); text-align: center; margin-bottom: 10px; }
  .section-title { font-family: 'Montserrat', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; text-align: center; color: var(--green); margin-bottom: 8px; }
  .section-sub { text-align: center; color: var(--text-soft); font-size: .95rem; margin-bottom: 52px; line-height: 1.6; }

  /* AVULSOS */
  .avulso-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 80px; }
  .avulso-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow .25s, transform .25s; }
  .avulso-card:hover { box-shadow: 0 12px 40px rgba(26,77,46,.1); transform: translateY(-4px); }
  .avulso-icon { font-size: 1.8rem; line-height: 1; margin-bottom: 4px; }
  .avulso-name { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--green); }
  .avulso-desc { font-size: .85rem; color: var(--text-soft); line-height: 1.55; flex: 1; }
  .avulso-price { font-size: 1.35rem; font-weight: 600; color: var(--green-mid); margin-top: 6px; }
  .avulso-price span { font-size: .8rem; font-weight: 400; color: var(--text-soft); }

  /* PACKAGES */
  .pkg-separator { border: none; border-top: 1px solid var(--border); margin: 0 0 72px; }
  .pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 28px; align-items: start; }
  .pkg-card { border-radius: 20px; padding: 36px 30px; border: 1px solid var(--border); background: var(--card-bg); position: relative; transition: box-shadow .25s, transform .25s; }
  .pkg-card:hover { box-shadow: 0 16px 48px rgba(26,77,46,.12); transform: translateY(-5px); }
  .pkg-card.featured { background: var(--green); border-color: transparent; color: var(--white); }
  .pkg-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: .65rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
  .pkg-name { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
  .pkg-card.featured .pkg-name { color: var(--gold-light); }
  .pkg-tagline { font-size: .82rem; color: var(--text-soft); margin-bottom: 24px; }
  .pkg-card.featured .pkg-tagline { color: rgba(255,255,255,.6); }
  .pkg-price-block { display: flex; align-items: baseline; gap: 6px; margin-bottom: 28px; }
  .pkg-currency { font-size: 1.1rem; color: var(--green-mid); font-weight: 500; }
  .pkg-card.featured .pkg-currency { color: var(--gold-light); }
  .pkg-amount { font-size: 2.8rem; font-weight: 700; color: var(--green); line-height: 1; }
  .pkg-card.featured .pkg-amount { color: var(--white); }
  .pkg-period { font-size: .8rem; color: var(--text-soft); }
  .pkg-card.featured .pkg-period { color: rgba(255,255,255,.55); }
  .pkg-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .pkg-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; line-height: 1.5; color: var(--text); }
  .pkg-card.featured .pkg-features li { color: rgba(255,255,255,.85); }
  .check { width: 18px; height: 18px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
  .pkg-card.featured .check { background: rgba(255,255,255,.2); }
  .check svg { width: 10px; height: 10px; stroke: white; stroke-width: 2.5; fill: none; }
  .pkg-btn { display: block; text-align: center; padding: 13px 24px; border-radius: 50px; font-size: .88rem; font-weight: 500; font-family: 'Poppins', sans-serif; text-decoration: none; cursor: pointer; border: none; transition: background .2s, transform .15s; width: 100%; }
  .pkg-btn-outline { background: transparent; border: 1.5px solid var(--green); color: var(--green); }
  .pkg-btn-outline:hover { background: var(--green); color: white; }
  .pkg-btn-solid { background: var(--gold); color: white; }
  .pkg-btn-solid:hover { background: #b8933d; transform: scale(1.02); }

  /* NOTE */
  .note-box { max-width: 780px; margin: 56px auto 0; background: white; border: 1px solid var(--border); border-left: 4px solid var(--green-mid); border-radius: 12px; padding: 24px 28px; }
  .note-box p { font-size: .88rem; color: var(--text-soft); line-height: 1.7; }
  .note-box strong { color: var(--green); }

  /* ABOUT */
  .about-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .about-inner { max-width: 1000px; margin: 0 auto; padding: 80px 24px; display: flex; align-items: center; gap: 64px; }
  .about-photo-wrap { position: relative; flex-shrink: 0; }
  .about-photo-ring { width: 240px; height: 240px; border-radius: 50%; padding: 5px; background: linear-gradient(135deg, var(--gold), var(--green-light)); box-shadow: 0 16px 48px rgba(26,77,46,.2); }
  .about-photo { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center top; display: block; }
  .about-flag-badge { position: absolute; bottom: 8px; right: 8px; width: 44px; height: 44px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 4px 12px rgba(0,0,0,.15); border: 2px solid var(--border); }
  .about-eyebrow { font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 8px; }
  .about-title { font-family: 'Montserrat', sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--green); margin-bottom: 20px; line-height: 1.2; }
  .about-title span { color: var(--gold); }
  .about-desc { font-size: .92rem; color: var(--text-soft); line-height: 1.8; margin-bottom: 14px; }
  .countries-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
  }
  .country-chip {
    font-size: .75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--green);
    letter-spacing: .02em;
  }
  .about-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
  .about-link { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--green); text-decoration: none; padding: 9px 18px; border: 1.5px solid var(--green); border-radius: 50px; transition: all .2s; }
  .about-link svg { width: 15px; height: 15px; flex-shrink: 0; }
  .about-link:hover { background: var(--green); color: white; }

  /* NOTE GRID */
  .note-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
  .note-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 12px;
    background: var(--cream);
    border: 1px solid var(--border);
  }
  .note-item-green { background: #f0faf4; border-color: var(--green-light); }
  .note-item-gold  { background: #fdf8ee; border-color: var(--gold); }
  .note-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
  .note-item p { font-size: .83rem; color: var(--text-soft); line-height: 1.65; }
  .note-item p strong { color: var(--green); }
  .avulso-card-highlight { border-color: var(--green-mid); background: linear-gradient(135deg, #f0faf4, #fff); }
  .avulso-price-free { color: var(--green) !important; font-size: 1.1rem !important; }
  .avulso-price-free span { font-size: .8rem; color: var(--text-soft); font-weight: 400; }


  /* FLOATING WHATSAPP */
  .wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    z-index: 999;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
  .wa-float svg { width: 28px; height: 28px; }

  /* FOOTER */
  footer { background: var(--green); color: rgba(255,255,255,.6); text-align: center; padding: 32px 24px; font-size: .8rem; letter-spacing: .03em; }
  footer strong { color: var(--gold-light); }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  @media (max-width: 680px) {
    .about-inner { flex-direction: column; text-align: center; gap: 36px; padding: 56px 24px; }
    .countries-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
  }
  .country-chip {
    font-size: .75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--green);
    letter-spacing: .02em;
  }
  .about-links { justify-content: center; }
    .about-photo-ring { width: 180px; height: 180px; }
  }