:root {
  --bg: #0e1116;
  --bg-2: #141a22;
  --surface: #1a212b;
  --surface-2: #212a36;
  --text: #eef2f7;
  --muted: #9aa6b6;
  --accent: #ffb400;
  --accent-2: #ffce4d;
  --whats: #25d366;
  --whats-dark: #1ebe5b;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --max: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 { font-family: "Oswald", "Inter", sans-serif; line-height: 1.12; letter-spacing: 0.3px; }

.hl { color: var(--accent); }

/* ---------- Botoes ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }

.btn-whats {
  background: var(--whats);
  color: #06210f;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}
.btn-whats:hover { background: var(--whats-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

.ic-whats { width: 22px; height: 22px; fill: currentColor; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--accent);
  color: #1b1300;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 14px;
  text-align: center;
}
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar .ic { width: 15px; height: 15px; fill: currentColor; }
.topbar-sep { opacity: 0.5; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 17, 22, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: #000;
  border: 1px solid var(--line);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: "Oswald", sans-serif; font-size: 1.18rem; letter-spacing: 0.5px; }
.brand-text small { color: var(--accent); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; }

.menu { display: flex; align-items: center; gap: 26px; }
.menu a { color: var(--muted); font-weight: 500; font-size: 0.96rem; transition: color 0.2s ease; }
.menu a:hover { color: #fff; }
.menu .menu-cta { color: #06210f; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span { width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: 0.25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 17, 22, 0.7) 0%, rgba(14, 17, 22, 0.55) 40%, rgba(14, 17, 22, 0.92) 100%),
    linear-gradient(90deg, rgba(14, 17, 22, 0.85) 0%, rgba(14, 17, 22, 0.2) 70%);
}
.hero-content { position: relative; z-index: 2; padding: 60px 20px; }
.hero-badge {
  display: inline-block;
  background: rgba(255, 180, 0, 0.16);
  color: var(--accent-2);
  border: 1px solid rgba(255, 180, 0, 0.4);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.2rem, 7vw, 4.2rem); font-weight: 700; }
.hero-sub { color: #cfd8e3; font-size: clamp(1rem, 2.5vw, 1.22rem); max-width: 620px; margin: 18px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  display: flex;
  gap: 30px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: "Oswald", sans-serif; font-size: 1.5rem; color: var(--accent); }
.hero-trust span { color: var(--muted); font-size: 0.85rem; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow-light { color: #1b1300; }
.section-head h2 { font-size: clamp(1.9rem, 5vw, 2.8rem); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(255, 180, 0, 0.5); box-shadow: var(--shadow); }
.card-ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-bottom: 18px;
}
.card-ic svg { width: 30px; height: 30px; fill: #1b1300; }
.card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-text h2 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); margin-bottom: 16px; }
.about-text p { color: #c3cdd9; margin-bottom: 22px; }
.checklist { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; }
.checklist li { position: relative; padding-left: 34px; color: #d7dee8; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--whats);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.g-item { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.g-item:hover img { transform: scale(1.07); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- CTA area ---------- */
.section-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #1b1300;
}
.area { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.area h2 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); margin: 6px 0 12px; }
.area p { max-width: 640px; color: #2a2100; font-weight: 500; }
.section-cta .btn-whats { box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.contact-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.contact-card svg { fill: var(--accent); margin-bottom: 10px; }
.ic-whats.ic-whats { width: 40px; height: 40px; }
.contact-card .ic-whats { fill: var(--whats); }
.ic-lg { width: 40px; height: 40px; }
.contact-card h3 { font-size: 1.15rem; }
.contact-card strong { font-size: 1.25rem; color: #fff; }
.contact-card span { color: var(--muted); font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0a0d11; border-top: 1px solid var(--line); padding-top: 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand img { width: 60px; height: 60px; border-radius: 12px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); max-width: 320px; }
.footer-col h4 { font-size: 1.05rem; margin-bottom: 16px; color: #fff; }
.footer-col a, .footer-col span { display: block; color: var(--muted); margin-bottom: 10px; font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; }
.footer-bottom span { color: var(--muted); font-size: 0.85rem; }

/* ---------- Float WhatsApp ---------- */
.float-whats {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whats);
  color: #06210f;
  font-weight: 700;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  animation: pulse 2.4s infinite;
}
.float-whats svg { width: 26px; height: 26px; fill: #06210f; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82%, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    background: var(--surface);
    padding: 90px 28px 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid var(--line);
  }
  .menu.open { transform: translateX(0); }
  .menu a { font-size: 1.1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .menu .menu-cta { margin-top: 14px; border-bottom: 0; width: 100%; }
  .about { grid-template-columns: 1fr; gap: 30px; }
  .about-media { order: 2; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .area { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .section { padding: 60px 0; }
  .hero { min-height: 90vh; }
  .hero-trust { gap: 22px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-wide, .g-tall { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .float-whats span { display: none; }
  .float-whats { padding: 15px; }
  .topbar { font-size: 0.72rem; gap: 8px; }
}
