:root {
  --verde: #0f2a1f;
  --verde-2: #153d2d;
  --verde-3: #1e4b36;
  --dourado: #c9a15b;
  --dourado-2: #e7c77a;
  --off: #f4efe5;
  --off-2: #fffaf0;
  --texto: #1b1b1b;
  --muted: #6f6f6f;
  --branco: #fff;
  --sombra: 0 18px 48px rgba(15, 42, 31, .16);
  --radius: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--texto);
  background: var(--off);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
  background: #081a13;
  color: rgba(244,239,229,.9);
  font-size: 14px;
  padding: 10px 6%;
  text-align: center;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 42, 31, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,161,91,.24);
}
.nav {
  width: min(1180px, 90%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
  color: var(--off);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand img {
  width: 50px; height: 50px; object-fit: cover; border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(231,199,122,.35);
}
.brand span { display: block; line-height: 1.15; }
.brand small {
  display: block;
  color: var(--dourado-2);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
nav ul { display: flex; list-style: none; gap: 22px; font-size: 14px; }
nav a:hover { color: var(--dourado-2); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .25s ease;
  cursor: pointer;
  line-height: 1.1;
  white-space: nowrap;
}
.btn-primary { background: var(--dourado); color: var(--verde); }
.btn-primary:hover { background: var(--dourado-2); transform: translateY(-2px); }
.btn-outline { border-color: rgba(231,199,122,.65); color: var(--off); }
.btn-outline:hover { background: rgba(231,199,122,.12); }
.btn-dark { background: var(--verde); color: var(--off); }
.btn-dark:hover { background: var(--verde-3); transform: translateY(-2px); }

.hero {
  min-height: 84vh;
  background:
    linear-gradient(90deg, rgba(15,42,31,.96), rgba(15,42,31,.76), rgba(15,42,31,.98)),
    url('assets/img/capa.jpg') center/cover no-repeat;
  color: var(--off);
  display: flex;
  align-items: center;
  padding: 90px 0;
}
.hero-content {
  width: min(1180px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  color: var(--dourado-2);
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-size: 13px;
  margin-bottom: 18px;
  font-weight: 700;
}
h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  margin-bottom: 22px;
  max-width: 760px;
}
.hero p {
  font-size: 19px;
  color: rgba(244,239,229,.92);
  max-width: 660px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-card {
  background: rgba(244,239,229,.08);
  border: 1px solid rgba(231,199,122,.25);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--sombra);
}
.hero-card h2 { color: var(--dourado-2); font-size: 24px; margin-bottom: 18px; }
.hero-card ul { list-style: none; display: grid; gap: 12px; }
.hero-card li::before { content: "✓"; color: var(--dourado-2); font-weight: 700; margin-right: 10px; }

section { padding: 86px 0; }
.container { width: min(1180px, 90%); margin: 0 auto; }
.section-title { max-width: 830px; margin-bottom: 42px; }
.section-title h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.15; color: var(--verde); margin-bottom: 16px; }
.section-title p { color: var(--muted); font-size: 18px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15,42,31,.10);
  border: 1px solid rgba(15,42,31,.08);
  display: flex;
  flex-direction: column;
}
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card .content { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-card h3 { color: var(--verde); font-size: 22px; line-height: 1.2; }
.service-card p { color: var(--muted); }
.card-link { color: var(--verde); font-weight: 700; margin-top: auto; }
.card-link:hover { color: var(--dourado); }

.about { background: var(--verde); color: var(--off); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: center; }
.about-logo {
  background: linear-gradient(145deg, rgba(231,199,122,.16), rgba(255,255,255,.03));
  border: 1px solid rgba(231,199,122,.28);
  border-radius: 28px;
  padding: 44px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo img { max-width: 300px; border-radius: 28px; }
.about h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.15; margin-bottom: 18px; }
.about p { color: rgba(244,239,229,.86); margin-bottom: 16px; font-size: 17px; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.feature { border: 1px solid rgba(231,199,122,.25); border-radius: 16px; padding: 18px; color: var(--off); }
.feature strong { color: var(--dourado-2); display: block; margin-bottom: 4px; }

.detail { background: var(--off-2); }
.service-list { display: grid; gap: 18px; }
.service-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  background: var(--branco);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 5px solid var(--dourado);
  box-shadow: 0 12px 24px rgba(15,42,31,.07);
}
.service-row h3 { color: var(--verde); font-size: 22px; }
.service-row p { color: var(--muted); }

.areas {
  background:
    linear-gradient(120deg, rgba(15,42,31,.96), rgba(15,61,45,.92)),
    radial-gradient(circle at center, rgba(201,161,91,.2), transparent);
  color: var(--off);
}
.areas h2 { color: var(--off); }
.areas p { color: rgba(244,239,229,.86); }
.area-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.area-box { border-radius: 20px; padding: 26px; border: 1px solid rgba(231,199,122,.25); background: rgba(255,255,255,.06); }
.area-box h3 { color: var(--dourado-2); margin-bottom: 8px; }

.cta { text-align: center; }
.cta-box {
  background: var(--verde);
  color: var(--off);
  border-radius: 30px;
  padding: 54px 30px;
  box-shadow: var(--sombra);
  position: relative;
  overflow: hidden;
}
.cta-box h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; position: relative; }
.cta-box p { max-width: 740px; margin: 0 auto 26px; color: rgba(244,239,229,.86); position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }

.contact { background: var(--branco); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; }
.contact-info { background: var(--verde); color: var(--off); border-radius: var(--radius); padding: 34px; }
.contact-info h3 { color: var(--dourado-2); margin-bottom: 16px; font-size: 26px; }
.contact-info p { margin-bottom: 12px; color: rgba(244,239,229,.9); }
.form-box { background: var(--off); border-radius: var(--radius); padding: 34px; display: grid; gap: 16px; }
input, select, textarea {
  width: 100%; padding: 15px 16px; border: 1px solid rgba(15,42,31,.18);
  border-radius: 12px; font: inherit; background: var(--branco);
}
textarea { min-height: 130px; resize: vertical; }
button { cursor: pointer; border: 0; font: inherit; }

.agenda-hero { min-height: auto; padding: 80px 0; }
.agenda-panel {
  background: var(--branco);
  border-radius: 28px;
  box-shadow: var(--sombra);
  padding: 34px;
}
.agenda-form { display: grid; gap: 16px; }
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.notice { background: rgba(201,161,91,.12); border: 1px solid rgba(201,161,91,.28); border-radius: 18px; padding: 18px; color: var(--verde); }

footer { background: #081a13; color: rgba(244,239,229,.76); padding: 36px 0; text-align: center; font-size: 14px; }
footer strong { color: var(--dourado-2); }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25D366;
  color: white;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(0,0,0,.26);
  z-index: 60;
  transition: .25s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 34px; height: 34px; fill: currentColor; }

@media (max-width: 1020px) {
  nav ul { display: none; }
  .hero-content, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .grid-3, .features, .area-boxes { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .two-cols { grid-template-columns: 1fr; }
  .nav-actions .btn-outline { display: none; }
  section { padding: 62px 0; }
  .hero { min-height: auto; padding: 70px 0; }
  .service-card img { height: 240px; }
}
@media (max-width: 560px) {
  .topbar { font-size: 12px; }
  .brand span { font-size: 14px; }
  .brand img { width: 46px; height: 46px; }
  .btn { width: 100%; padding: 14px 18px; }
  .nav-actions .btn-primary { width: auto; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .service-card img { height: 210px; }
  .whatsapp-float { width: 58px; height: 58px; right: 16px; bottom: 16px; }
}
