﻿:root {
  --bg: #f5ede2;
  --surface: rgba(255, 249, 241, 0.96);
  --surface-strong: #ffffff;
  --line: rgba(23, 32, 38, 0.12);
  --text: #172026;
  --muted: #5d676d;
  --primary: #aa2f00;
  --primary-dark: #7d2400;
  --dark: #172026;
  --accent: #daa144;
  --accent-soft: rgba(218, 161, 68, 0.16);
  --ok: #0f7a4b;
  --shadow: 0 18px 50px rgba(23, 32, 38, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(218, 161, 68, 0.17), transparent 28%),
    radial-gradient(circle at top left, rgba(170, 47, 0, 0.1), transparent 20%),
    linear-gradient(180deg, #faf4ea 0%, #f2eadf 100%);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.86);
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 14px;
  color: var(--muted);
}

.topbar strong {
  color: var(--primary);
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ok);
  color: #fff;
  font-weight: 800;
}

.topbar-phone:hover {
  background: #128c4d;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.brand {
  display: flex;
  align-items: center;
  max-width: 420px;
}

.brand-logo {
  width: min(100%, 420px);
  height: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1,
h2,
h3,
h4,
.card strong,
.cta-band strong {
  font-family: Georgia, "Times New Roman", serif;
}

.brand span {
  font-size: 24px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  flex: 1;
  justify-content: center;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.mobile-menu-toggle {
  display: none;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu-toggle:hover {
  border-color: rgba(11, 63, 134, 0.22);
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--primary);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.button:hover {
  background: var(--primary-dark);
}

.button-dark {
  background: var(--dark);
}

.button-dark:hover {
  background: #0d1519;
}

.button-ok {
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.22);
}

.button-ok:hover {
  background: #128c4d;
}

.whatsapp-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.whatsapp-mini-icon svg {
  width: 100%;
  height: 100%;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 18px;
  border-radius: 18px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.24);
}

.header-whatsapp:hover {
  background: #128c4d;
}

.header-whatsapp-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-whatsapp-copy small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.88);
}

.header-whatsapp-copy strong {
  font-size: 18px;
  line-height: 1;
}

.page-block,
.hero,
.section,
.footer-box {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.94fr);
  gap: 28px;
  padding: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--primary);
}

h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.04;
}

h3 {
  margin: 0;
  font-size: 24px;
}

h4 {
  margin: 0;
  font-size: 20px;
}

.hero-text,
.lead,
.section-head p,
.card p,
.hero-aside p,
.footer-box p,
.search-copy p,
.search-result p,
.faq-item p,
.post-content p,
.post-content li {
  color: var(--muted);
}

.hero-text,
.lead {
  font-size: 18px;
}

.hero-points,
.mini-list {
  margin: 22px 0 0;
  padding-left: 20px;
}

.hero-points li,
.mini-list li,
.post-content li {
  margin-bottom: 10px;
}

.hero-aside {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 240, 0.95)),
    linear-gradient(135deg, rgba(218, 161, 68, 0.22), transparent 52%);
}

.hero-promise-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.promise {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
}

.promise strong {
  display: block;
  font-size: 24px;
}

.promise-button {
  width: 100%;
  margin-top: 12px;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  padding: 28px;
}

.search-field {
  display: block;
}

.search-field span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.search-field input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font: inherit;
}

.search-results {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.search-result,
.search-empty {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.search-result-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.search-result small {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-result strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.search-actions a {
  font-weight: 700;
}

.section {
  padding: 30px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 240, 0.92));
}

.card-body {
  display: grid;
  gap: 10px;
}

.card-media {
  margin: -22px -22px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-radius: calc(var(--radius-md) - 1px) calc(var(--radius-md) - 1px) 0 0;
  background: rgba(255, 255, 255, 0.96);
  aspect-ratio: 16 / 9;
}

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

.card small {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.card strong {
  display: block;
  font-size: 24px;
  line-height: 1.06;
}

.card-link {
  display: block;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(23, 32, 38, 0.11);
  border-color: rgba(170, 47, 0, 0.22);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-row span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 20px;
}

.info-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 28px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--ok);
  font-weight: 800;
}

.inline-whatsapp-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(37, 211, 102, 0.24);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 255, 242, 0.96));
  box-shadow: 0 16px 34px rgba(15, 122, 75, 0.12);
}

.inline-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
}

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

.inline-whatsapp-copy {
  display: grid;
  gap: 6px;
}

.inline-whatsapp-copy strong {
  font-size: 20px;
}

.inline-whatsapp-copy p {
  margin: 0;
}

.inline-whatsapp-number {
  color: var(--ok);
  font-weight: 900;
}

.site-footer {
  padding-bottom: 84px;
}

.footer-box {
  padding: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}

.footer-column h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.footer-note {
  margin: 0;
}

.footer-button {
  justify-self: start;
}

.footer-list,
.footer-schedule {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-list li {
  display: grid;
  gap: 4px;
}

.footer-list a,
.footer-list span {
  color: var(--text);
  font-weight: 800;
}

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

.footer-list small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer-schedule li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(22, 40, 63, 0.14);
}

.footer-schedule li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.footer-schedule strong {
  font-size: 14px;
  text-align: right;
}

.footer-legal {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-logo {
  width: min(100%, 360px);
  height: auto;
  display: block;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.28);
}

.floating-whatsapp:hover {
  background: #128c4d;
}

.post-content {
  display: grid;
  gap: 16px;
}

.post-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  aspect-ratio: 16 / 9;
}

.post-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.callout {
  padding: 18px;
  border-left: 4px solid var(--primary);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 940px) {
  .hero,
  .search-panel,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .topbar-inner {
    display: grid;
    justify-items: center;
    align-items: center;
    gap: 6px;
    padding: 9px 0;
    text-align: center;
    font-size: 12px;
  }

  .topbar-inner > * {
    justify-self: center;
    text-align: center;
  }

  .topbar-inner span:first-child {
    display: none;
  }

  .site-header {
    display: grid;
    gap: 12px;
    align-items: stretch;
    justify-items: center;
    padding: 14px 0 10px;
  }

  .brand {
    display: block;
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .brand-logo {
    width: min(100%, 250px);
    margin: 0 auto;
  }

  .header-controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin-left: 0;
    justify-items: center;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .header-whatsapp {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    max-width: 320px;
  }

  .topbar-phone {
    width: auto;
    min-height: 38px;
    padding: 0 14px;
  }

  .site-nav {
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 360px;
  }

  .site-header.menu-open .site-nav {
    display: grid;
  }

  .site-nav a {
    display: block;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 249, 241, 0.96);
    color: var(--text);
    text-align: center;
  }

  .hero,
  .section,
  .footer-box,
  .search-panel,
  .cta-band {
    padding: 18px;
  }

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

  .inline-whatsapp-note {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .post-figure {
    aspect-ratio: 4 / 3;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
  }

  h1 {
    font-size: clamp(32px, 9vw, 48px);
  }

  h2 {
    font-size: clamp(28px, 7vw, 36px);
  }
}
