:root {
  --green-900: #1e3028;
  --green-800: #263d32;
  --green-700: #355746;
  --green-100: #e8efe9;
  --gold: #b88945;
  --gold-100: #f2e4ce;
  --ink: #18211d;
  --muted: #68756f;
  --paper: #fbfaf7;
  --line: rgba(24, 33, 29, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.text-gold {
  color: #f3d18a;
  text-shadow: 0 2px 18px rgba(243, 209, 138, .24);
}

.navbar {
  background: rgba(30, 48, 40, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0;
}

.navbar-brand img {
  display: block;
  width: auto;
  height: 38px;
}

.nav-link {
  color: rgba(255, 255, 255, .88);
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, .28);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .18);
}

.navbar-toggler-icon {
  filter: invert(1) grayscale(1) brightness(2);
}

.nav-link i,
.btn i,
.eyebrow i,
.form-head i,
.tag i,
footer i {
  margin-right: 6px;
}

.btn {
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0;
}

.btn-primary {
  --bs-btn-bg: var(--green-800);
  --bs-btn-border-color: var(--green-800);
  --bs-btn-hover-bg: var(--green-700);
  --bs-btn-hover-border-color: var(--green-700);
  --bs-btn-active-bg: var(--green-900);
  --bs-btn-active-border-color: var(--green-900);
}

.btn-outline-primary {
  --bs-btn-color: var(--green-800);
  --bs-btn-border-color: var(--green-800);
  --bs-btn-hover-bg: var(--green-800);
  --bs-btn-hover-border-color: var(--green-800);
}

.js-whatsapp,
.whatsapp-glow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff !important;
  background: linear-gradient(135deg, #075e54 0%, #128c7e 28%, #25d366 62%, #34e89e 100%) !important;
  border-color: rgba(37, 211, 102, .72) !important;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .26), 0 0 0 1px rgba(255, 255, 255, .16) inset;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.js-whatsapp::before,
.whatsapp-glow::before {
  content: "";
  position: absolute;
  inset: -40% -70%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, .48) 46%, rgba(255, 255, 255, .14) 56%, transparent 72%);
  transform: translateX(-70%) rotate(8deg);
  animation: whatsapp-shine 3.4s ease-in-out infinite;
}

.js-whatsapp:hover,
.whatsapp-glow:hover {
  color: #fff !important;
  filter: saturate(1.08) brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, .34), 0 0 22px rgba(52, 232, 158, .28);
}

.js-whatsapp:focus-visible,
.whatsapp-glow:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .34);
  outline-offset: 3px;
}

@keyframes whatsapp-shine {
  0%, 42% {
    transform: translateX(-75%) rotate(8deg);
  }

  70%, 100% {
    transform: translateX(78%) rotate(8deg);
  }
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 132px 0 56px;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 28, 24, .86) 0%, rgba(20, 28, 24, .62) 45%, rgba(20, 28, 24, .2) 100%),
    linear-gradient(0deg, rgba(20, 28, 24, .82) 0%, rgba(20, 28, 24, 0) 46%);
}

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

.hero h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(2.35rem, 6vw, 5.3rem);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 850;
}

.hero .lead {
  max-width: 650px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.2rem;
}

.hero-offers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 22px;
}

.hero-offers span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-offers i {
  color: var(--gold-100);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-100);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.eyebrow.dark {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.lead-form {
  background: rgba(251, 250, 247, .97);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.form-head {
  margin-bottom: 18px;
}

.form-head span {
  display: block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.form-head strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.form-control,
.form-select {
  border-radius: 8px;
  border-color: var(--line);
  min-height: 48px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(184, 137, 69, .18);
}

.privacy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .84rem;
}

.proof-strip {
  background: var(--green-900);
  color: #fff;
  padding: 20px 0;
}

.proof-strip .col-6 {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.metric-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--gold-100);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  font-size: 1.1rem;
}

.proof-strip strong {
  display: block;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
}

.section-whatsapp {
  margin-top: 24px;
}

.section {
  padding: 88px 0;
}

.muted {
  background: #f1f1ec;
}

.section h2 {
  margin-bottom: 18px;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  font-weight: 820;
  letter-spacing: 0;
}

.section-heading-icon {
  color: var(--gold);
  font-size: .78em;
  margin-right: 10px;
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-title {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.benefit-grid article,
.finance-box,
.checklist {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  height: 100%;
}

.benefit-grid i {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--green-900);
  background: var(--gold-100);
  border-radius: 8px;
  font-size: 1.25rem;
}

.benefit-grid h3,
.home-card h3,
.checklist h3 {
  color: var(--green-900);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
}

.card-title-icon {
  color: var(--gold);
  margin-right: 8px;
}

.home-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.home-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-card-body {
  padding: 26px;
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.home-card ul,
.checklist ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.home-card li,
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.home-card i,
.checklist i {
  color: var(--gold);
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.condition-grid div {
  min-height: 136px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.condition-grid i {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--green-900);
  background: var(--gold-100);
  border-radius: 8px;
}

.condition-grid strong {
  display: block;
  color: var(--green-900);
  line-height: 1.2;
}

.condition-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .92rem;
}

.condition-note {
  margin: 18px 0 0;
  font-size: .9rem !important;
}

.broker-section {
  background: var(--paper);
}

.broker-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.broker-card .row {
  --bs-gutter-x: 0;
}

.broker-card .col-lg-7 {
  padding: clamp(28px, 5vw, 56px);
}

.broker-card picture {
  display: block;
  height: 100%;
}

.broker-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.broker-card h2 {
  margin-bottom: 10px;
}

.broker-card h3 {
  max-width: 680px;
  margin-bottom: 16px;
  color: var(--green-900);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.broker-card p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 26px;
}

.rounded-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.amenities span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--green-900);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.amenities i {
  color: var(--gold);
}

.location {
  color: #fff;
  background: var(--green-900);
}

.location h2,
.location p {
  color: #fff;
}

.location p {
  color: rgba(255, 255, 255, .78);
}

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

.time-grid div {
  min-height: 126px;
  padding: 22px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
}

.time-grid i {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--gold-100);
  background: rgba(255, 255, 255, .09);
  border-radius: 8px;
}

.time-grid strong {
  display: block;
  font-size: 1.7rem;
}

.time-grid span,
.small-note {
  color: rgba(255, 255, 255, .72);
}

.small-note {
  margin-top: 14px;
  font-size: .88rem;
}

.finance-box {
  background: var(--green-100);
}

.finance-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.accordion-button {
  padding: 22px 0;
  background: transparent;
  color: var(--green-900);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.accordion-button i {
  margin-right: 10px;
  color: var(--gold);
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--green-900);
  box-shadow: none;
}

.accordion-body {
  padding: 0 0 22px;
  color: var(--muted);
}

.final-cta {
  padding: 64px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--green-900), #3f604f);
}

.final-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  font-weight: 840;
  letter-spacing: 0;
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
}

footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, .76);
  background: #121b17;
}

footer p {
  margin: 6px 0 0;
  max-width: 780px;
  font-size: .9rem;
}

footer a {
  color: #fff;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
  font-size: 1.7rem;
  text-decoration: none;
}

.floating-whatsapp:hover {
  color: #fff;
  background: linear-gradient(135deg, #075e54 0%, #128c7e 28%, #25d366 62%, #34e89e 100%) !important;
}

.whatsapp-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(30, 48, 40, .94), rgba(38, 61, 50, .88)),
    url("https://fgrcondominios.com.br/wp-content/uploads/2026/04/austria_hero-da42srn2fobdba48btrsbe-scaled.webp") center / cover fixed;
}

.whatsapp-redirect {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.whatsapp-panel {
  width: min(100%, 560px);
  padding: clamp(28px, 5vw, 48px);
  color: #fff;
  text-align: center;
  background: rgba(18, 27, 23, .76);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.whatsapp-logo {
  width: 132px;
  height: auto;
  margin-bottom: 28px;
}

.whatsapp-icon-pulse {
  display: inline-flex;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #fff;
  background: linear-gradient(135deg, #075e54, #25d366);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .48);
  font-size: 2.4rem;
  animation: whatsapp-pulse 1.8s ease-out infinite;
}

.whatsapp-panel h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.04;
  font-weight: 840;
  letter-spacing: 0;
}

.whatsapp-panel p:not(.eyebrow) {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .48);
  }

  80%, 100% {
    box-shadow: 0 0 0 22px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 16px 0;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 36px;
  }

  .lead-form {
    margin-top: 10px;
  }

  .broker-photo {
    min-height: 420px;
    aspect-ratio: 4 / 3;
  }

  .benefit-grid,
  .time-grid,
  .condition-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .proof-strip .col-6 {
    min-height: 86px;
  }

  .broker-photo {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-whatsapp::before,
  .whatsapp-glow::before,
  .whatsapp-icon-pulse {
    animation: none;
  }

  .js-whatsapp::before,
  .whatsapp-glow::before {
    transform: translateX(0) rotate(8deg);
    opacity: .18;
  }
}
