/* ============================================================
   ARTHUR FEEDBACK 03 (2026-05-25) — DESKTOP FULL BLEED
   "Igual ao mobile — foto cobre tudo, texto sobre"
   REGRA 8 aplicada ao máximo.
   ============================================================ */

@media (min-width: 821px) {

  /* ---------- HERO full bleed (foto cobre TUDO) ---------- */
  .hero {
    height: 80vh !important;
    min-height: 600px;
    max-height: 820px;
    padding: 0 !important;
    position: relative !important;
    overflow: hidden;
    background: transparent !important;
    display: flex !important;
    align-items: flex-end !important;
  }

  /* Foto ocupa 100% do hero (sem clip-path triangular) */
  .hero-carousel,
  .hero-video,
  .hero::after {
    width: 100% !important;
    height: 100% !important;
    clip-path: none !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
  }
  .hero-carousel img.active {
    opacity: 0.96 !important;  /* foto quase 100% */
  }

  /* Overlay gradiente vertical: escurece em cima (nav) e embaixo (CTAs/texto)
     deixa o meio totalmente limpo pra foto encantar */
  .hero::after {
    content: '' !important;
    background: linear-gradient(
      180deg,
      rgba(33, 56, 24, 0.45) 0%,
      rgba(33, 56, 24, 0.10) 25%,
      rgba(33, 56, 24, 0.00) 50%,
      rgba(33, 56, 24, 0.55) 95%,
      rgba(33, 56, 24, 0.70) 100%
    ) !important;
    z-index: 1 !important;
    pointer-events: none;
  }

  /* Content wrap centralizado embaixo */
  .hero-content-wrap {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 48px 56px !important;
    display: block !important;
  }
  .hero-inner {
    max-width: 720px !important;
    margin: 0 !important;
    color: var(--branco);
  }

  /* Tag em areia com sombra */
  .hero-tag {
    color: var(--areia) !important;
    opacity: 1 !important;
    letter-spacing: 3px !important;
    font-size: 11px !important;
    margin-bottom: 18px !important;
    text-shadow:
      0 1px 2px rgba(0,0,0,0.85),
      0 2px 14px rgba(0,0,0,0.7) !important;
  }

  /* H1 grande com sombra forte */
  .hero h1 {
    font-size: 64px !important;
    line-height: 1.05 !important;
    margin-bottom: 22px !important;
    color: var(--branco) !important;
    text-shadow:
      0 2px 4px rgba(0,0,0,0.85),
      0 4px 24px rgba(0,0,0,0.7),
      0 1px 2px rgba(0,0,0,0.8),
      0 0 8px rgba(0,0,0,0.4) !important;
  }
  .hero h1 em {
    color: var(--areia) !important;
    text-shadow: inherit !important;
  }

  /* Subtexto leve, com sombra */
  .hero-subtext {
    color: rgba(255,255,255,0.88) !important;
    font-size: 15px !important;
    max-width: 520px !important;
    margin-bottom: 32px !important;
    text-shadow:
      0 2px 4px rgba(0,0,0,0.85),
      0 2px 12px rgba(0,0,0,0.6) !important;
  }

  /* CTAs lado a lado, sutis (mesma estética do mobile) */
  .hero-btns {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    align-items: center !important;
    margin: 0 !important;
  }
  .hero-btns .btn {
    min-height: 46px !important;
    padding: 12px 28px !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    border-radius: 2px !important;
    transition: all .25s ease;
  }
  .hero-btns .btn-primary {
    background: rgba(110, 113, 61, 0.92) !important;
    border: 1px solid rgba(110, 113, 61, 0.95) !important;
    color: var(--branco) !important;
    backdrop-filter: blur(8px);
  }
  .hero-btns .btn-primary:hover {
    background: var(--verde-1) !important;
  }
  .hero-btns .btn-ghost-dark,
  .hero-btns .btn-ghost {
    background: rgba(33, 56, 24, 0.28) !important;
    border: 1px solid rgba(226, 195, 154, 0.55) !important;
    color: var(--areia) !important;
    backdrop-filter: blur(8px);
  }
  .hero-btns .btn-ghost-dark:hover,
  .hero-btns .btn-ghost:hover {
    background: rgba(226, 195, 154, 0.18) !important;
    border-color: var(--areia) !important;
  }

  /* Setas do carrossel sutis */
  .hero-nav {
    background: rgba(255,255,255,0.10) !important;
    border-color: rgba(255,255,255,0.25) !important;
    color: rgba(255,255,255,0.7) !important;
    width: 42px !important;
    height: 42px !important;
    backdrop-filter: blur(4px);
    z-index: 3;
  }
  .hero-nav:hover {
    background: rgba(226,195,154,0.25) !important;
    border-color: var(--areia) !important;
    color: var(--areia) !important;
  }

  /* Nav transparente para não competir com a foto */
  .nav {
    background: linear-gradient(180deg, rgba(33,56,24,0.85), rgba(33,56,24,0.0)) !important;
    backdrop-filter: none !important;
  }
  /* Quando rolar a página, o nav fica sólido (via JS opcional) */
  body.scrolled .nav {
    background: rgba(33, 56, 24, 0.95) !important;
    backdrop-filter: blur(8px) !important;
  }
}

/* Telas muito grandes */
@media (min-width: 1440px) {
  .hero h1 { font-size: 76px !important; }
  .hero { height: 88vh !important; }
}
