:root {
  --bg: #f6efe5;
  --bg-soft: #efe4d4;
  --surface: #fffaf3;
  --surface-strong: #f3e7d6;
  --card: #fffaf4;
  --text: #2d241c;
  --muted: #6f6255;
  --primary: #b85c38;
  --primary-dark: #964726;
  --secondary: #d6b98b;
  --border: rgba(75, 54, 37, 0.12);
  --shadow: 0 14px 30px rgba(72, 49, 31, 0.08);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  background:
    linear-gradient(180deg, #f8f1e8 0%, #f3eadf 45%, #f7f0e7 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(248, 241, 232, 0.9);
  border-bottom: 1px solid rgba(75, 54, 37, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 280px;
  max-width: 52vw;
  height: auto;
  display: block;
  background: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f2e2d4;
  color: var(--text);
  border: 1px solid rgba(184, 92, 56, 0.18);
}

.hero {
  padding: 88px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-text,
.section-heading p,
.feature-text,
.contact-box p,
.service-card p,
.step p,
.feature-item p,
.faq-item p {
  color: var(--muted);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff9f2;
  box-shadow: 0 12px 24px rgba(184, 92, 56, 0.16);
}

.btn-secondary {
  background: #f8efe5;
  border: 1px solid var(--border);
  color: var(--text);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.hero-points li::before {
  content: "\2022";
  color: var(--primary);
  margin-right: 8px;
}

.hero-card,
.service-card,
.step,
.feature-item,
.faq-item,
.contact-box {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  padding: 28px;
  background: #fcf6ee;
}

.card-glow {
  position: absolute;
  inset: -100px auto auto -100px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(214, 185, 139, 0.35), transparent 65%);
  pointer-events: none;
  opacity: 0.45;
}

.hero-stat {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid rgba(75, 54, 37, 0.08);
}

.hero-stat:last-of-type {
  border-bottom: 0;
}

.hero-stat span,
.hero-badge {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1.15rem;
}

.hero-badge {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f2e5d6;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.feature-item,
.step,
.faq-item {
  padding: 28px;
}

.dark-section {
  background: linear-gradient(180deg, #efe2d1, #f6ede2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: #f0dfcf;
  color: var(--primary);
  font-weight: 800;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 36px;
  background: linear-gradient(135deg, #f4e6d8, #fbf6ef);
}

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(75, 54, 37, 0.08);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-content a {
  color: var(--primary);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  background: #2fa164;
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(47, 161, 100, 0.24);
}

@media (max-width: 1100px) {
  .hero-grid,
  .feature-layout,
  .service-grid,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav,
  .nav-links,
  .footer-content,
  .hero-grid,
  .feature-layout,
  .service-grid,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-links {
    gap: 12px;
    justify-items: start;
  }

  .brand {
    width: 100%;
  }

  .brand-logo {
    width: 220px;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    max-width: none;
  }

  .contact-box {
    padding: 28px;
  }
}
