/* ============================
   HERO
   ============================ */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 4.5rem) 1.5rem 5rem;
  background:
    radial-gradient(circle at 18% 28%, rgba(184, 134, 11, 0.14) 0%, transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(184, 134, 11, 0.10) 0%, transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #faf8f4 48%, #f1e6cf 100%);
  border-bottom: 1px solid var(--color-border);
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(184, 134, 11, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 134, 11, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.hero-home-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 410px minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}

.hero-home-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-home-logo-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(260px, 28vw, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(184, 134, 11, 0.42);
  box-shadow:
    0 28px 70px rgba(105, 72, 10, 0.20),
    inset 0 0 0 12px rgba(184, 134, 11, 0.055);
  text-decoration: none;
}

.hero-home-logo-card::before,
.hero-home-logo-card::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-home-logo-card::before {
  inset: -18px;
  border: 1px solid rgba(184, 134, 11, 0.22);
}

.hero-home-logo-card::after {
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-home-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 238px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.22));
}

.hero-home-content {
  max-width: 640px;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.66);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-home-title {
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.hero-home-title span {
  display: block;
  font-size: clamp(2.2rem, 5.2vw, 3.4rem);
  line-height: 1.02;
}

.hero-home-title strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.65rem, 6.2vw, 4rem);
  line-height: 1;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.hero h1 .gold {
  color: var(--color-gold);
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 565px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.55rem;
  color: var(--color-text-faint);
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 560px;
}

.hero-info svg {
  flex: 0 0 auto;
  margin-top: 0.18rem;
}

.symbol-card-image {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.cta-map {
  width: 100%;
  max-width: 920px;
  margin: 32px auto 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.cta-map iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

/* ============================
   HOME MOBILE/TABLET RESPONSIVE
   ============================ */

@media (max-width: 1040px) {
  .hero-home {
    min-height: auto;
    padding: calc(var(--nav-height) + 3.5rem) 1.25rem 4rem;
  }

  .hero-home-inner {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 3rem;
  }

  .hero-home-logo-card {
    width: 300px;
  }

  .hero-home-title span {
    font-size: clamp(2.35rem, 5vw, 3.4rem);
  }

  .hero-home-title strong {
    font-size: clamp(2.8rem, 6vw, 4rem);
  }
}

@media (max-width: 900px) {
  .hero-home {
    min-height: auto;
    display: block;
    padding: calc(var(--nav-height) + 1.75rem) 1rem 3.25rem;
  }

  .hero-home::before {
    background-size: 54px 54px;
    opacity: 0.65;
    mask-image: radial-gradient(circle at center, black 0%, transparent 82%);
  }

  .hero-home-inner {
    width: 100%;
    max-width: 720px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .hero-home-logo-wrap {
    width: 100%;
    justify-content: center;
    order: 1;
  }

  .hero-home-logo-card {
    width: min(190px, 52vw);
    max-width: 190px;
    min-width: 138px;
    margin: 0 auto;
    box-shadow:
      0 18px 44px rgba(105, 72, 10, 0.16),
      inset 0 0 0 8px rgba(184, 134, 11, 0.05);
  }

  .hero-home-logo-card::before {
    inset: -10px;
  }

  .hero-home-logo-card::after {
    inset: 15px;
  }

  .hero-home-logo {
    width: 100%;
    max-width: 128px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
  }

  .hero-home-content {
    order: 2;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .hero-badge {
    margin-bottom: 0.85rem;
    padding: 0.25rem 0.8rem;
    font-size: 0.7rem;
  }

  .hero-home-title {
    margin: 0 0 0.95rem;
  }

  .hero-home-title span {
    font-size: clamp(1.75rem, 7vw, 2.45rem);
    line-height: 1.08;
  }

  .hero-home-title strong {
    font-size: clamp(2.2rem, 9vw, 3.1rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
  }

  .hero-desc {
    max-width: 560px;
    margin: 0 auto 1.35rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-cta {
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
  }

  .hero-cta .btn {
    width: min(100%, 320px);
  }

  .hero-info {
    width: min(100%, 360px);
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .split-section .text-left {
    text-align: center;
  }

  .actions-row {
    justify-content: center;
  }

  .symbol-card-image {
    max-width: 100%;
    border-radius: 20px;
    margin: 0 auto;
  }

  .cta-map {
    margin-top: 24px;
    border-radius: 18px;
  }

  .cta-map iframe {
    height: 320px;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding: calc(var(--nav-height) + 1.15rem) 1rem 2.85rem;
  }

  .hero-home-inner {
    gap: 1.15rem;
  }

  .hero-home-logo-card {
    width: min(152px, 45vw);
    min-width: 118px;
  }

  .hero-home-logo-card::before {
    inset: -8px;
  }

  .hero-home-logo-card::after {
    inset: 12px;
  }

  .hero-home-logo {
    max-width: 108px;
  }

  .hero-badge {
    font-size: 0.66rem;
    margin-bottom: 0.75rem;
  }

  .hero-home-title span {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .hero-home-title strong {
    font-size: clamp(2rem, 10.5vw, 2.75rem);
  }

  .hero-desc {
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 1.15rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 310px;
    min-height: 44px;
  }

  .hero-info {
    font-size: 0.78rem;
  }

  .symbol-card-image {
    border-radius: 18px;
  }

  .cta-map iframe {
    height: 300px;
    min-height: 300px;
  }
}

@media (max-width: 420px) {
  .hero-home {
    padding-top: calc(var(--nav-height) + 0.95rem);
  }

  .hero-home-logo-card {
    width: min(136px, 42vw);
  }

  .hero-home-logo {
    max-width: 96px;
  }

  .hero-home-title span {
    font-size: 1.48rem;
  }

  .hero-home-title strong {
    font-size: 1.92rem;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .hero-info {
    font-size: 0.76rem;
  }
}

@media (max-width: 360px) {
  .hero-home-logo-card {
    width: 124px;
  }

  .hero-home-logo {
    max-width: 88px;
  }

  .hero-home-title span {
    font-size: 1.38rem;
  }

  .hero-home-title strong {
    font-size: 1.78rem;
  }
}
/* Mapa da home sem iframe externo inicial: melhora LCP, TBT e terceiros no PageSpeed. */
.cta-map-placeholder {
  width: min(920px, 100%);
  margin: 32px auto 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  color: #fff;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.cta-map-placeholder strong {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.2;
}

.cta-map-placeholder span {
  opacity: 0.88;
}
