@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg-alt: #f6f1e8;
  --surface: #ffffff;
  --surface-hover: #fbf6ee;
  --text: #1c1410;
  --text-muted: #6c6156;
  --accent: #b8651f;
  --accent-strong: #93501a;
  --accent-soft: rgba(184, 101, 31, 0.1);
  --border: rgba(28, 20, 16, 0.1);
  --shadow: 0 4px 20px rgba(28, 20, 16, 0.06);
  --shadow-hover: 0 12px 28px rgba(28, 20, 16, 0.1);
  --dark-bg: #17110c;
  --dark-surface: #241a12;
  --radius: 14px;
  --max-width: 1160px;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.brand img {
  width: 42px;
  height: 42px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 101, 31, 0.1), transparent 45%),
    radial-gradient(circle at 88% 15%, rgba(184, 101, 31, 0.06), transparent 40%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid rgba(184, 101, 31, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

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

.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.hero-card p {
  color: var(--text-muted);
  margin: 0 0 20px;
  font-size: 15px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.hero-stats strong {
  display: block;
  font-size: 26px;
  color: var(--accent);
}

.hero-stats span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- Sections ---------- */
section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.4px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
}

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 101, 31, 0.3);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon svg,
.contact-row .icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ---------- Values band ---------- */
.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.value-card h4 {
  color: var(--accent);
  font-size: 16px;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.value-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- Testimonials ---------- */
.testimonial-carousel {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 8px;
  text-align: center;
}

.testimonial-quote {
  font-size: 19px;
  font-style: italic;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.55;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testimonial-prev,
.testimonial-next {
  background: var(--surface);
  border: 1px solid var(--border);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--accent);
  box-shadow: var(--shadow);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  border-color: var(--accent);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--accent);
}

/* ---------- Cookie banner (LGPD) ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--dark-bg);
  color: #fff;
  padding: 18px 24px;
}

.cookie-banner.dismissed {
  display: none;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-inner p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  min-width: 240px;
}

.cookie-banner .btn {
  padding: 10px 22px;
  font-size: 14px;
  white-space: nowrap;
}

/* ---------- About page ---------- */
.about-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 16.5px;
}

.about-text p {
  margin: 0 0 20px;
}

.about-text strong {
  color: var(--text);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--dark-surface), var(--dark-bg));
  border: 1px solid rgba(184, 101, 31, 0.35);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  margin: 0 24px;
  color: #fff;
}

.cta-band h2 {
  font-size: 28px;
  margin: 0 0 12px;
  font-weight: 800;
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 28px;
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  margin: 0 0 20px;
  font-size: 20px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.contact-row:first-of-type {
  border-top: none;
}

.contact-row .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-row span {
  font-size: 15px;
  color: var(--text-muted);
}

.contact-row strong {
  display: block;
  color: var(--text);
  font-size: 15px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-row input,
.form-row textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-row textarea {
  resize: vertical;
  min-height: 130px;
}

.form-status {
  font-size: 14px;
  min-height: 20px;
}

.form-status.success {
  color: var(--accent-strong);
}

.form-status.error {
  color: #c0392b;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--bg-alt);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 320px;
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

/* ---------- Mobile nav toggle ---------- */
.nav-toggle {
  display: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .site-header .container {
    height: auto;
    flex-wrap: wrap;
    padding: 14px 20px;
    gap: 12px;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .grid-3,
  .grid-4,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 36px 24px;
    margin: 0 16px;
  }

  .footer-inner {
    flex-direction: column;
  }
}


/* Estilos adicionais criados no editor */
