:root {
  --blue-dark: #171f36;
  --gold-light: #f3d78e;
  --gold-dark: #a3894c;
  --white: #ffffff;
  --gray-soft: #d6dbe6;
  --text-main: #eef2f9;
  --text-muted: #b8c1d1;
  --card-bg: rgba(23, 31, 54, 0.78);
  --card-border: rgba(243, 215, 142, 0.24);
  --shadow-soft: 0 18px 42px rgba(7, 10, 22, 0.36);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% -10%, rgba(243, 215, 142, 0.1), transparent 38%),
    radial-gradient(circle at 100% 0%, rgba(243, 215, 142, 0.08), transparent 35%),
    var(--blue-dark);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5.6rem 0;
}

.section-alt {
  background: linear-gradient(140deg, rgba(243, 215, 142, 0.07), rgba(23, 31, 54, 0.95));
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 4vw, 2.8rem);
  line-height: 1.14;
  margin-bottom: 0.6rem;
}

.section-head p {
  color: var(--text-muted);
  max-width: 64ch;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--blue-dark);
  border-bottom: 1px solid rgba(243, 215, 142, 0.14);
}

.header-inner {
  min-height: 5.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  width: min(26rem, 56vw);
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--text-muted);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-cta {
  border: 1px solid var(--gold-light);
  color: var(--gold-light) !important;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--card-border);
  background: transparent;
  color: var(--gold-light);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding-top: 7rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(0) scale(1.02);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 31, 54, 0.55), rgba(23, 31, 54, 0.88));
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5.8vw, 4.2rem);
  line-height: 1.08;
  max-width: 13ch;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--gray-soft);
  max-width: 62ch;
}

.hero-list {
  list-style: none;
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.2rem;
  max-width: 520px;
}

.hero-list li {
  position: relative;
  padding-left: 1.05rem;
}

.hero-list li::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--gold-light);
  position: absolute;
  left: 0;
  top: 0.52rem;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-side {
  justify-self: end;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  padding: 0.4rem;
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(243, 215, 142, 0.95), rgba(163, 137, 76, 0.95));
  box-shadow: 0 18px 36px rgba(7, 10, 22, 0.45);
  transform: rotate(0.4deg);
}

.hero-side img {
  width: 100%;
  height: 100%;
  border-radius: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  object-fit: cover;
  object-position: center;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--gold-dark);
  color: var(--blue-dark);
  box-shadow: 0 9px 22px rgba(163, 137, 76, 0.34);
}

.btn-primary::before {
  background: rgba(255, 255, 255, 0.22);
}

.btn-outline {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-outline::before {
  background: rgba(243, 215, 142, 0.18);
}

.btn-large {
  font-size: 1.04rem;
  padding: 0.9rem 1.7rem;
}

.situations-grid,
.services-grid,
.testimonials-grid {
  display: grid;
  gap: 1rem;
}

.situations-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icon-card,
.info-card,
.testimonial-card,
.step-card,
.vertical-item,
.map-card,
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.icon-card,
.info-card,
.step-card {
  padding: 1.1rem;
}

.icon-card {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.icon-card span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(243, 215, 142, 0.2);
  margin-bottom: 0.55rem;
}

.icon-card h3,
.info-card h3,
.step-card h3 {
  font-size: 1rem;
  line-height: 1.28;
}

.icon-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.section-cta {
  margin-top: 1.35rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.about-image,
.about-image img {
  border-radius: 1.4rem;
}

.about-image {
  position: relative;
  aspect-ratio: 2192 / 3000;
  width: min(100%, 560px);
  justify-self: start;
  border: 1px solid var(--card-border);
  overflow: hidden;
  background: rgba(10, 14, 29, 0.9);
  box-shadow: 0 20px 42px rgba(5, 9, 20, 0.35);
}

.about-image > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.about-content p {
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.check-list li {
  position: relative;
  padding-left: 1.2rem;
}

.check-list li::before {
  content: "✓";
  color: var(--gold-light);
  position: absolute;
  left: 0;
}

.vertical-list {
  display: grid;
  gap: 0.75rem;
}

.vertical-item {
  padding: 0.95rem 1rem;
  border-left: 3px solid var(--gold-light);
}

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

.step-card span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(243, 215, 142, 0.2);
  color: var(--gold-light);
  margin-bottom: 0.55rem;
  font-weight: 700;
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.map-card {
  display: grid;
  place-items: center;
  padding: 1.6rem 1.2rem;
  color: var(--gold-light);
  background: linear-gradient(155deg, rgba(243, 215, 142, 0.1), rgba(23, 31, 54, 0.95));
  border-color: rgba(243, 215, 142, 0.46);
}

.map-card svg,
.map-brasil-img {
  width: min(270px, 84%);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(243, 215, 142, 0.22));
}

.map-card strong {
  margin-top: 0.45rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(243, 215, 142, 0.2);
}

.testimonial-card {
  padding: 1.2rem;
}

.testimonial-card p {
  margin-bottom: 0.8rem;
  color: var(--gray-soft);
}

.testimonial-card span {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.88rem;
}

.cta-final {
  text-align: center;
  display: grid;
  gap: 1rem;
}

.cta-final h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4.3vw, 3rem);
  line-height: 1.1;
}

.contact-form {
  margin: 1.1rem auto 0;
  width: min(760px, 100%);
  padding: 1.2rem;
  display: grid;
  gap: 0.65rem;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--gray-soft);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.8rem;
  border: 1px solid rgba(243, 215, 142, 0.2);
  background: rgba(15, 20, 39, 0.9);
  color: var(--white);
  padding: 0.68rem 0.74rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(243, 215, 142, 0.35);
}

.form-feedback {
  min-height: 1.1rem;
  font-size: 0.82rem;
  color: var(--gold-light);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: 0.9rem;
  background: rgba(23, 31, 54, 0.7);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  font-weight: 700;
  padding: 0.9rem 1rem;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1rem;
  transition: max-height 0.32s ease, opacity 0.3s ease;
}

.faq-item.open .faq-answer {
  opacity: 1;
  padding-bottom: 0.9rem;
}

.site-footer {
  border-top: 1px solid rgba(243, 215, 142, 0.16);
  background: rgba(9, 12, 24, 0.92);
  padding: 2.6rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 0.6rem;
}

.footer-logo {
  width: auto;
  height: 2.8rem;
  margin-bottom: 0.8rem;
  border-radius: 0;
}

.site-footer p,
.site-footer a {
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

@media (max-width: 1180px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    gap: 1.3rem;
  }

  .hero-side {
    width: min(100%, 340px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media img {
    transform: none;
  }
}

@media (max-width: 980px) {
  .services-grid,
  .testimonials-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .situations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    width: min(100%, 500px);
    justify-self: center;
  }

}

@media (max-width: 760px) {
  .header-inner {
    min-height: 5.6rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .logo img {
    width: min(17rem, 72vw);
    max-height: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 4%;
    left: 4%;
    border-radius: 1rem;
    border: 1px solid var(--card-border);
    background: var(--blue-dark);
    padding: 0.7rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 8.2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 1rem;
    padding-bottom: 3rem;
    gap: 1rem;
  }

  .hero-copy {
    padding-top: 0.6rem;
  }

  .hero-kicker {
    display: none;
  }

  .hero-side {
    justify-self: center;
    width: min(82vw, 320px);
    transform: none;
  }

  .hero-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn,
  .section-cta .btn,
  .cta-final .btn,
  .contact-form .btn-outline {
    width: 100%;
  }

  .situations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .testimonials-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-card svg,
  .map-brasil-img {
    width: min(230px, 82%);
  }

  .map-card strong {
    font-size: 1.65rem;
  }
}

@media (max-width: 420px) {
  .section {
    padding: 4.6rem 0;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .situations-grid {
    gap: 0.7rem;
  }

  .icon-card,
  .info-card,
  .step-card,
  .testimonial-card {
    padding: 0.9rem;
  }

}
