:root {
  --color-primary: #db772c;
  --color-primary-dark: #b85f1f;
  --color-primary-soft: #f6c9a4;
  --color-ink: #2f2a26;
  --color-ink-soft: #5a534e;
  --color-ink-deep: #1f1b18;
  --color-surface: #fff4ea;
  --color-surface-alt: #f6e7d8;
  --color-white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(47, 42, 38, 0.1);
  --shadow-strong: 0 24px 64px rgba(47, 42, 38, 0.2);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 82% -12%, rgba(219, 119, 44, 0.32), transparent 38%),
    radial-gradient(circle at 18% 10%, rgba(47, 42, 38, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, #fff7f0 100%);
}

h1, h2, h3 {
  margin: 0 0 0.8rem;
  font-family: "Sora", sans-serif;
  line-height: 1.14;
}

p { margin: 0 0 1rem; line-height: 1.68; color: var(--color-ink-soft); }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section { padding: 5.8rem 0; }
.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background: rgba(219, 119, 44, 0.16);
  border: 1px solid rgba(184, 95, 31, 0.16);
  border-radius: 999px;
  padding: 0.35rem 0.82rem;
}

.site-header {
  position: relative;
  overflow: hidden;
  padding-bottom: 5.8rem;
  background:
    linear-gradient(140deg, rgba(255,255,255,0.96) 20%, rgba(246, 231, 216, 0.96) 100%);
  border-bottom: 1px solid rgba(47, 42, 38, 0.1);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.site-header::before {
  width: 480px;
  height: 480px;
  right: -160px;
  top: -180px;
  background: radial-gradient(circle, rgba(219,119,44,0.3) 0%, rgba(219,119,44,0.06) 62%, transparent 72%);
}

.site-header::after {
  width: 460px;
  height: 460px;
  left: -220px;
  top: 120px;
  background: radial-gradient(circle, rgba(47,42,38,0.18) 0%, rgba(47,42,38,0.03) 62%, transparent 72%);
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 245, 0.86);
  border-bottom: 1px solid rgba(47, 42, 38, 0.08);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-wrap.is-scrolled {
  background: rgba(255, 248, 241, 0.96);
  border-color: rgba(47, 42, 38, 0.14);
  box-shadow: 0 8px 24px rgba(24, 20, 17, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 1.2rem;
}

.brand img { width: 190px; height: auto; display: block; }
.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}
.menu a {
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  color: #463f39;
  transition: background 0.18s ease, color 0.18s ease;
}
.menu a:hover {
  background: rgba(219, 119, 44, 0.12);
  color: #2f2a26;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.62rem 0.95rem;
  font-weight: 700;
  color: #fffaf5;
  background: linear-gradient(140deg, #df843f, var(--color-primary-dark));
  box-shadow: 0 8px 20px rgba(184, 95, 31, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(184, 95, 31, 0.35);
}
.menu-toggle {
  display: none;
  border: 1px solid rgba(47, 42, 38, 0.2);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-ink);
  border-radius: 10px;
  width: 44px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #302b27;
}

.hero {
  position: relative;
  z-index: 1;
  padding-top: 4.2rem;
  max-width: 900px;
  animation: riseIn 0.85s ease;
}

.hero h1 {
  font-size: clamp(2.15rem, 5vw, 3.9rem);
  margin-bottom: 1.2rem;
}

.hero .lead {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  max-width: 72ch;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  margin: 1.4rem 0 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  color: var(--color-white);
  background: linear-gradient(140deg, #e6863b 0%, var(--color-primary-dark) 100%);
}

.btn-outline {
  border: 1px solid rgba(47, 42, 38, 0.22);
  background: rgba(255, 255, 255, 0.85);
}

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

.hero-highlights li {
  background: linear-gradient(170deg, rgba(255,255,255,0.95), rgba(246,231,216,0.7));
  border: 1px solid rgba(47, 42, 38, 0.12);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  font-weight: 600;
}

.grid-two {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.card {
  background: var(--color-white);
  border: 1px solid rgba(47, 42, 38, 0.1);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.about {
  background: linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(246,231,216,0.55) 100%);
}

.stat-card {
  background: linear-gradient(170deg, #2f2a26 0%, #4a433e 100%);
  border: none;
  box-shadow: var(--shadow-strong);
}

.stat-card h3,
.stat-card strong { color: #fff6ef; }
.stat-card .stats article {
  padding: 0.8rem 0 0.65rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.stat-card .stats article:last-child { border-bottom: none; }
.stat-card span { color: rgba(255, 244, 236, 0.82); }

.services {
  position: relative;
  background: linear-gradient(160deg, var(--color-surface) 0%, var(--color-surface-alt) 100%);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(47,42,38,0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(47,42,38,0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.45;
}

.services .container { position: relative; z-index: 1; }

.cards {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(47,42,38,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 238px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(47,42,38,0.14);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #f4a86f);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 40%, rgba(219, 119, 44, 0.1));
  pointer-events: none;
}

.service-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.32rem 0.62rem;
  margin-bottom: 0.3rem;
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #84441a;
  font-weight: 700;
  background: rgba(219, 119, 44, 0.14);
  border-radius: 999px;
}

.service-card h3 {
  margin-bottom: 0.48rem;
}

.service-card p {
  margin-bottom: 1.05rem;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  font-weight: 700;
  color: #3d3732;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(61, 55, 50, 0.28);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.service-link::after {
  content: ">";
  font-size: 0.82rem;
}

.service-link:hover {
  color: var(--color-primary-dark);
  border-color: rgba(184, 95, 31, 0.6);
}

.brands {
  background: linear-gradient(180deg, #2a2522 0%, #201c19 100%);
}

.brands h2,
.brands h3,
.brands .eyebrow { color: #fff6ef; }
.brands p,
.brands .commitment ul li { color: rgba(250, 240, 232, 0.82); }

.brand-list {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.brand-list li {
  background: linear-gradient(135deg, var(--color-primary), #e58e4f);
  color: var(--color-white);
  border-radius: 999px;
  padding: 0.45rem 0.82rem;
  font-weight: 700;
}

.commitment {
  background: linear-gradient(160deg, rgba(219,119,44,0.2), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.15);
}

.commitment ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.65rem;
}

.commitment ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffd0ab;
  position: absolute;
  left: 0;
  top: 0.58rem;
}

.cta {
  background: linear-gradient(120deg, #db772c 0%, #b85f1f 45%, #2f2a26 100%);
  color: var(--color-white);
}

.cta p { color: rgba(255,255,255,0.9); }
.cta-inner {
  text-align: center;
  max-width: 740px;
}

.footer {
  background: #1b1714;
  color: #f9f4f1;
  padding-top: 4.8rem;
  padding-bottom: 2rem;
}

.footer p,
.footer address { color: #d5cbc3; font-style: normal; }
.footer a {
  color: #f4e5d7;
}
.footer a:hover { color: #ffd4b5; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 1.3rem;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
}

.footer-logo {
  width: 170px;
  height: auto;
  border-radius: 8px;
  background: #fff;
  padding: 0.5rem;
}

.footer-contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 212, 181, 0.45);
  background: rgba(255, 212, 181, 0.1);
  padding: 0.55rem 0.8rem;
  font-weight: 700;
}

.footer-section {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 1.1rem;
}

.footer-section h3 {
  margin-bottom: 0.9rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-label {
  display: inline-block;
  margin-bottom: 0.2rem;
  color: #ffd5b7;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  display: inline-flex;
  width: fit-content;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 1.2rem;
  margin-top: 1.6rem;
}

/* ── Contact Modal (desktop only) ─────────────────────────────── */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.contact-modal[hidden] { display: none; }

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 13, 0.55);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.22s ease;
}

.contact-modal-box {
  position: relative;
  z-index: 1;
  background: #fff8f2;
  border-radius: var(--radius);
  padding: 2.4rem;
  width: min(480px, 100%);
  box-shadow: var(--shadow-strong);
  animation: modalIn 0.26s ease;
}

.contact-modal-box .eyebrow { margin-bottom: 0.7rem; }
.contact-modal-box h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.contact-modal-box > p { margin-bottom: 0; }

.contact-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(47, 42, 38, 0.15);
  background: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: background 0.18s ease;
}

.contact-modal-close:hover { background: rgba(219, 119, 44, 0.12); }

.modal-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(47, 42, 38, 0.1);
}

.modal-contact-list li { display: flex; flex-direction: column; gap: 0.2rem; }

.modal-contact-list a {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  transition: color 0.18s ease;
}

.modal-contact-list a:hover { color: var(--color-primary); }

.modal-contact-list address {
  font-style: normal;
  color: var(--color-ink-soft);
  line-height: 1.5;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

/* Modal nunca aparece em mobile — scroll mantém-se */
@media (max-width: 760px) {
  .contact-modal { display: none !important; }
}

/* ── Animações gerais ──────────────────────────────────────────── */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 980px) {
  .grid-two,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-highlights { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .footer-section {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 0;
    padding-top: 1rem;
  }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    min-height: 72px;
  }
  .brand img {
    width: 165px;
  }
  .nav-links-wrap {
    display: none;
    position: absolute;
    right: 4vw;
    top: calc(100% + 10px);
    z-index: 35;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    min-width: min(280px, 92vw);
    padding: 0.75rem;
    background: #fff8f2;
    border: 1px solid rgba(47,42,38,0.14);
    border-radius: 14px;
    box-shadow: 0 22px 44px rgba(22, 18, 16, 0.2);
  }
  .nav-links-wrap.open {
    display: flex;
  }
  .menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }
  .menu a {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(47, 42, 38, 0.08);
    background: rgba(255, 255, 255, 0.78);
  }
  .nav-cta {
    width: 100%;
    padding: 0.75rem 0.95rem;
  }
  .hero { padding-top: 2.4rem; }
  .section { padding: 4.2rem 0; }
}
