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

:root {
  --bg: #f8fafc;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #111111;
  --surface-soft: #f3f4f6;
  --text: #111111;
  --muted: #4b5563;
  --line: #e5e7eb;
  --primary: #e11d2e;
  --primary-dark: #b31220;
  --secondary: #111111;
  --secondary-dark: #1f2937;
  --accent: #fef2f2;
  --white: #ffffff;
  --shadow-lg: 0 28px 60px rgba(17, 17, 17, 0.08);
  --shadow-md: 0 14px 30px rgba(17, 17, 17, 0.06);
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.75;
  background:
    radial-gradient(circle at top left, rgba(225, 29, 46, 0.08), transparent 22%),
    radial-gradient(circle at 90% 10%, rgba(17, 17, 17, 0.04), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 840px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid var(--line);
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

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

.brand strong {
  display: block;
  font-size: 1.02rem;
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #ff5b67);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-md);
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav-list,
.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.96rem;
  font-family: "Inter", Arial, sans-serif;
}

.site-nav .menu-item {
  position: relative;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover:not(.nav-cta) {
  color: var(--text);
}

.site-nav .current-menu-item > a:not(.nav-cta) {
  color: var(--text);
  font-weight: 700;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #ff6c78);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover:not(.nav-cta)::after {
  transform: scaleX(1);
}

.site-nav .current-menu-item > a:not(.nav-cta)::after {
  transform: scaleX(1);
}

.site-nav .current-menu-item > a.nav-cta {
  box-shadow: 0 12px 24px rgba(16, 33, 49, 0.12);
}

.menu-item-has-children > a {
  padding-right: 0.9rem;
}

.menu-item-has-children > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.65;
}

.sub-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 0;
  min-width: 260px;
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem;
  border-radius: 18px;
  border: 1px solid rgba(20, 33, 47, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 25;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  width: 100%;
}

.sub-menu a {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  color: var(--text);
}

.sub-menu a:hover {
  background: var(--surface-soft);
}

.sub-menu a::after,
.sub-menu a::before {
  display: none;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  border-radius: 999px;
  padding: 0.72rem 1rem;
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 33, 49, 0.12);
}

.button-primary,
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border: 1px solid rgba(20, 33, 47, 0.1);
}

.button-whatsapp {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
}

.hero,
.page-hero,
.thank-you {
  padding: 5.8rem 0 4.2rem;
}

.hero {
  padding: 2.8rem 0 3.35rem;
}

.hero-grid,
.split,
.contact-layout,
.footer-grid,
.stats-grid,
.card-grid,
.steps-grid,
.trust-grid {
  display: grid;
  gap: 1.4rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 1.8rem;
  align-items: start;
}

.hero-grid {
  grid-template-columns: 1.18fr 0.82fr;
  align-items: start;
}

.hero-copy {
  position: relative;
  padding: 0.1rem 0 0;
}

.hero-copy h1 {
  max-width: 10ch;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0 0 1rem;
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 5vw, 3.5rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  font-weight: 600;
}

h3 {
  font-size: clamp(1.375rem, 2vw, 1.5rem);
}

p {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.125rem);
}

.hero-actions,
.contact-buttons,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.trust-list li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(20, 33, 47, 0.08);
  box-shadow: 0 10px 25px rgba(16, 33, 49, 0.06);
}

.hero-panel,
.lead-card,
.card,
.seo-box,
.contact-panel,
.faq-item,
.metric,
.step-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.lead-card,
.contact-panel,
.seo-box,
.faq-item,
.metric,
.step-card {
  padding: 1.5rem;
}

.hero-visual {
  display: block;
}

.lead-card {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 1.3rem 1.4rem 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.96));
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
  overflow: hidden;
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--primary), #ff6c78);
}

.lead-card h2 {
  font-size: clamp(1.55rem, 2vw, 1.9rem);
  margin-bottom: 0.8rem;
}

.lead-card p {
  color: var(--muted);
}

.hero-visual-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  box-shadow: var(--shadow-lg);
}

.hero-visual-top {
  padding: 1.3rem 1.4rem;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(31, 41, 55, 0.96)),
    linear-gradient(135deg, rgba(225, 29, 46, 0.26), transparent);
  color: var(--white);
}

.hero-visual-top span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.hero-visual-top strong {
  display: block;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.45rem;
  line-height: 1.25;
}

.hero-visual-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
}

.visual-stat {
  padding: 1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.visual-stat h3 {
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.visual-stat p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.truck-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.truck-strip span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  border: 1px solid #fecdd3;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-panel {
  overflow: hidden;
}

.hero-panel-top {
  padding: 1.75rem;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(31, 41, 55, 0.94)),
    linear-gradient(135deg, rgba(225, 29, 46, 0.42), transparent);
  color: var(--white);
}

.hero-panel-top p {
  color: rgba(255, 255, 255, 0.8);
}

.hero-panel-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem 1.75rem 1.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 250, 251, 0.99));
}

.hero-bullets,
.check-list {
  margin: 0;
  padding-left: 1.1rem;
}

.hero-bullets li,
.check-list li {
  margin-bottom: 0.55rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 33, 47, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  padding: 0.98rem 1rem;
  font: inherit;
  color: var(--text);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(215, 99, 47, 0.18);
  border-color: rgba(215, 99, 47, 0.4);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.9), rgba(243, 244, 246, 0.95));
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(225, 29, 46, 0.18), transparent 20%),
    linear-gradient(180deg, #111111, #1f2937);
  color: var(--white);
}

.section-dark .eyebrow,
.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section-dark .seo-box {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.section-dark .seo-box p,
.section-dark .seo-box li {
  color: rgba(255, 255, 255, 0.85);
}

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

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.5rem;
}

.card {
  padding: 1.6rem;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.card h2,
.card h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.375rem, 1.7vw, 1.5rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.card p {
  font-size: 1rem;
  line-height: 1.75;
}

.card p:last-child,
.faq-item p:last-child {
  margin-bottom: 0;
}

.card a {
  display: inline-flex;
  margin-top: auto;
  color: var(--primary-dark);
  font-weight: 700;
  padding-top: 0.4rem;
}

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

.metric strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 2rem;
  color: var(--primary);
  font-family: "Poppins", "Inter", sans-serif;
}

.hero-kpis .metric {
  padding: 1rem;
}

.hero-kpis .metric strong {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.hero-kpis .metric p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

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

.split,
.contact-layout {
  align-items: start;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

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

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #ff5b67);
  color: var(--white);
  font-weight: 700;
}

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

.seo-box {
  display: grid;
  gap: 1rem;
  align-self: start;
  min-height: 0;
}

.seo-box h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}

.seo-box p {
  margin: 0;
  color: var(--muted);
}

.seo-box ul {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-box li {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(20, 33, 47, 0.08);
  background: rgba(243, 244, 246, 0.9);
  line-height: 1.55;
}

.section-dark .seo-box li {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.seo-box a {
  font-weight: 600;
}

.contact-panel {
  min-height: 0;
}

.trust-badge {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.section-dark .trust-badge {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(225, 29, 46, 0.12), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.section-dark .trust-badge::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6774);
}

.section-dark .trust-badge h3 {
  color: var(--white);
}

.section-dark .trust-badge p,
.section-dark .trust-badge small {
  color: rgba(255, 255, 255, 0.8);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-list article {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-list h3 {
  margin-bottom: 0.65rem;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.95rem;
  color: #fbbf24;
  letter-spacing: 0.08em;
  font-size: 1rem;
  font-weight: 700;
}

.trust-badge small {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-family: "Inter", Arial, sans-serif;
}

.page-hero {
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 33, 47, 0.12), transparent);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item h2 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.contact-panel {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(31, 41, 55, 0.95)),
    linear-gradient(135deg, rgba(225, 29, 46, 0.24), transparent);
  color: var(--white);
}

.contact-panel p,
.contact-panel a:not(.button) {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer {
  padding: 4.2rem 0 2.2rem;
  background:
    radial-gradient(circle at top left, rgba(225, 29, 46, 0.18), transparent 24%),
    radial-gradient(circle at 100% 20%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #0f1115, #171b22);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer a {
  display: block;
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  margin-bottom: 0.85rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer strong {
  color: var(--white);
}

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

.footer-grid > div {
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.footer-grid > div:first-child {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(225, 29, 46, 0.14), transparent 55%);
}

.footer-bottom {
  display: none;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.65rem;
  z-index: 30;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.post-card,
.single-post-card,
.empty-state {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.post-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-card-media {
  display: grid;
  place-items: center;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(31, 41, 55, 0.92));
  color: var(--white);
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.4rem;
  text-align: center;
}

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

.post-card-body,
.single-post-card .entry-content {
  padding: 1.5rem;
}

.post-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.post-meta {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.post-card-body h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.post-excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 1rem;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.post-card-body p:last-of-type {
  margin-bottom: 1rem;
}

.post-readmore {
  margin-top: auto;
  align-self: flex-start;
  padding-inline: 1.15rem;
}

.pagination-wrap {
  margin-top: 2rem;
}

.pagination-wrap .nav-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pagination-wrap .page-numbers {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
}

.pagination-wrap .current {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: transparent;
}

.blog-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 1.5rem;
  align-items: start;
}

.single-post-card {
  overflow: hidden;
}

.single-sidebar {
  display: grid;
  gap: 1.4rem;
}

.entry-content > * + * {
  margin-top: 1rem;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.5rem;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.25rem;
}

.empty-state {
  padding: 2rem;
  text-align: center;
}

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

.float-button {
  border-radius: 999px;
  padding: 0.95rem 1.1rem;
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.float-button.whatsapp {
  background: linear-gradient(135deg, #128c7e, #0b6e62);
}

.float-button.call {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

@media (max-width: 980px) {
  .hero-shell,
  .hero-grid,
  .split,
  .contact-layout,
  .footer-grid,
  .card-grid,
  .steps-grid,
  .trust-grid,
  .stats-grid,
  .blog-grid,
  .blog-single-layout {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(20, 33, 47, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav-list {
    display: grid;
    gap: 0.45rem;
  }

  .site-nav .menu-item a {
    width: 100%;
  }

  .sub-menu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0.45rem;
    padding: 0.5rem 0 0 0.85rem;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .sub-menu a {
    padding: 0.5rem 0.65rem;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .hero,
  .page-hero,
  .section,
  .thank-you {
    padding-top: 3.7rem;
    padding-bottom: 2.8rem;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .lead-card {
    width: 100%;
    margin: 1rem 0 0;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    left: 1rem;
    right: 1rem;
  }

  .float-button {
    text-align: center;
  }
}
