:root {
  --bg: #f7f0e4;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #fffaf2;
  --ink: #201814;
  --muted: #645850;
  --line: rgba(32, 24, 20, 0.12);
  --accent: #b16016;
  --accent-strong: #85410b;
  --accent-soft: #efc47e;
  --forest: #132f26;
  --forest-strong: #0d221b;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(32, 24, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 196, 126, 0.26), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(19, 47, 38, 0.18), transparent 24%),
    linear-gradient(180deg, #fbf6ec 0%, #f4eddf 100%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.hero {
  padding: 24px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex: 0 0 auto;
}

.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.feature-card,
.metric-card,
.format-card,
.presence-card,
.faq-item,
.cta-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.92), rgba(255, 255, 255, 0.66));
  padding: 40px;
  border-radius: var(--radius-lg);
}

.hero-card {
  background: linear-gradient(180deg, var(--forest), var(--forest-strong));
  color: #f8f3ea;
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 196, 126, 0.4), rgba(239, 196, 126, 0));
}

.hero-card-media {
  display: grid;
  place-items: center;
  min-height: 280px;
  margin-bottom: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.eyebrow,
.card-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent-strong);
  font-weight: 800;
}

.card-label {
  color: var(--accent-soft);
}

h1,
h2,
h3,
strong {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.04;
}

h3 {
  font-size: 1.28rem;
}

.hero-text,
.hero-card p,
.feature-card p,
.metric-card span,
.format-card p,
.presence-card p,
.section-sidecopy,
.cta-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.hero-card p,
.section-dark .feature-card p,
.section-dark .format-card p,
.cta-panel p {
  color: rgba(248, 243, 234, 0.78);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff7f0;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.hero-highlights li {
  padding-left: 18px;
  position: relative;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-card-points,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-card-points span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff7f0;
  font-size: 0.92rem;
}

.hero-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.hero-card-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(239, 196, 126, 0.14);
  border: 1px solid rgba(239, 196, 126, 0.28);
  color: var(--accent-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: 34px 0;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  align-items: end;
}

.expertise-grid,
.metrics-grid,
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

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

.feature-card,
.format-card {
  background: linear-gradient(180deg, rgba(19, 47, 38, 0.95), rgba(13, 34, 27, 0.94));
  color: #f8f3ea;
  padding: 24px;
  border-radius: var(--radius-md);
}

.metric-card,
.presence-card,
.faq-item {
  background: var(--surface-strong);
  padding: 24px;
  border-radius: var(--radius-md);
}

.metric-card strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.presence-card a,
.footer-links a {
  color: var(--accent-strong);
  font-weight: 800;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-panel {
  background: linear-gradient(135deg, #181411, #2b211c 65%, #4b301f);
  color: #f8f3ea;
  padding: 34px;
  border-radius: calc(var(--radius-lg) + 4px);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 0;
  margin-top: 12px;
}

.footer-content {
  display: grid;
  gap: 16px;
  text-align: center;
}

.footer-name {
  font-weight: 800;
  margin: 0;
}

.footer-info p,
.footer-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  justify-content: center;
}

.whatsapp-button {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  place-items: center;
  box-shadow: 0 16px 28px rgba(37, 211, 102, 0.34);
  z-index: 50;
}

.whatsapp-button svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 960px) {
  .hero-grid,
  .section-heading.split,
  .expertise-grid,
  .metrics-grid,
  .formats-grid,
  .presence-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-card,
  .cta-panel {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

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

  h1 {
    max-width: 100%;
  }

  .button {
    width: 100%;
  }
}
