@import url("../fonts/fonts.css");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --accent: #0891b2;
  --accent-2: #0e7490;
  --sky: #38bdf8;
  --carbon: #0f172a;
  --carbon2: #1e293b;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #f0f9ff;
  --white: #ffffff;
  --card-bg: #ffffff;
  --card-alt: #e0f2fe;
  --wa: #25d366;
  --radius: 12px;
}
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Source Serif 4", Georgia, serif;
  background: var(--bg);
  color: var(--text);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--carbon);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.hdr-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.hdr-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #fff;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-weight: 900;
  font-size: 28px;
  padding: 4px 0;
  border-radius: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hdr-wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.16);
  border-radius: 50%;
  font-size: 0;
  line-height: 1;
}
.hdr-wa-icon svg {
  width: 56px;
  height: 56px;
  color: #22c55e;
}
.hdr-wa:hover {
  opacity: 0.88;
}
.hdr-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 4px 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.hdr-tel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.16);
  border-radius: 50%;
  font-size: 0;
  line-height: 1;
}
.hdr-tel-icon svg {
  width: 40px;
  height: 40px;
  color: #38bdf8;
}
.hdr-tel:hover {
  opacity: 0.88;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding-top: 56px;
  background: var(--carbon);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-text {
  color: #fff;
  text-align: center;
}
.hero-text-panel {
  background: rgba(15, 23, 42, 0.55);
  border-radius: 8px;
  padding: 20px 10px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero-text-panel h1 {
  letter-spacing: 0.02em;
  font-size: clamp(36px, 5vw, 50px);
  line-height: 1.05;
  white-space: normal;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-text-panel .hero-sub {
  font-size: clamp(18px, 2.2vw, 24px);
  text-align: center;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  display: block;
  margin: 0 auto;
}
.hero-text-panel .hero-para-quien {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(13px, 1.5vw, 18px);
  margin: 8px 0 14px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.hero-text-panel .hero-badges {
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.hero-text-panel .hero-badges .hbadge {
  font-size: 14px;
  padding: 8px 10px;
  white-space: normal;
}
.hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.95);
  color: #fff;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
  max-width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.hero-text h1 span {
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(18px, 2.2vw, 22px);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  max-width: 680px;
  line-height: 1.6;
  text-wrap: pretty;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0e7490;
  color: #fff;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: 12px;
  margin-bottom: 0;
  transition:
    background 0.2s,
    transform 0.15s;
  text-align: center;
}
.hero-cta:hover {
  background: #155e75;
  transform: translateY(-2px);
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}
.hero-cta,
.hero-cta-wa {
  flex: 1;
  min-width: 0;
  justify-content: center;
  text-shadow:
    -1px -1px 0 rgba(128, 128, 128, 0.7),
    1px -1px 0 rgba(128, 128, 128, 0.7),
    -1px 1px 0 rgba(128, 128, 128, 0.7),
    1px 1px 0 rgba(128, 128, 128, 0.7);
  padding: 20px 0;
}
.hero-cta-wa {
  background: #146c3a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-cta-wa:hover {
  background: #0f542d;
}
.hbadge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
}

.form-card-title {
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 800;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--carbon);
  line-height: 1.2;
}
.form-card-sub {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 2px;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transform: scale(0.8);
  transform-origin: center top;
}

.field {
  margin-bottom: 10px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #d8cfc4;
  border-radius: 12px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 14px;
  color: var(--text);
  background: #faf7f2;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  appearance: none;
  box-sizing: border-box;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--accent);
  background: #fdfbf8;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
  background: #fff;
}
.field select {
  padding-right: 40px;
  cursor: pointer;
}
.field select option:first-child {
  color: #8a7f73;
}
.field textarea {
  resize: vertical;
  min-height: 72px;
}
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
  text-align: left;
}
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 3l4 4 4-4' fill='none' stroke='%236B7280' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
  pointer-events: none;
}

.btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.btn-primary,
.btn-wa-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 10px;
  border: none;
  border-radius: 12px;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s,
    filter 0.2s;
  min-height: 50px;
  white-space: nowrap;
  box-sizing: border-box;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(8, 145, 178, 0.28);
}
.btn-wa-form {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.2);
}
.btn-primary:hover,
.btn-wa-form:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
}
.btn-primary:active,
.btn-wa-form:active {
  transform: translateY(0);
}
.btn-primary svg,
.btn-wa-form svg {
  width: 20px;
  height: 20px;
}
.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.form-note {
  font-size: 10px;
  color: #6b7280;
  text-align: left;
  margin-top: 2px;
  line-height: 1;
  white-space: nowrap;
  transform: scale(0.7);
  transform-origin: left top;
}

#f-consent {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  border: 2px solid #d8cfc4;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  background: #faf7f2;
  transition: all 0.2s;
  flex-shrink: 0;
}
#f-consent:hover {
  border-color: var(--accent);
}
#f-consent:checked {
  background: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M13.78 4.22a.75.75 0 010 1.06l-7.5 7.5a.75.75 0 01-1.06 0l-3.5-3.5a.75.75 0 011.06-1.06L5.97 11.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#f-consent:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-consent-label {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text);
  line-height: 1.5;
  cursor: pointer;
}
.form-privacy-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.2;
  margin-bottom: 1px;
  max-width: 420px;
  transform: scale(0.65);
  transform-origin: left;
  text-align: left;
}
.feedback {
  display: none;
  padding: 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
}
.feedback.ok {
  display: block;
  background: #dcfce7;
  color: #166534;
}
.feedback.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
}

.section {
  padding: 128px 24px;
}
.tipos-section {
  padding-top: 0;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-with-form {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  margin-top: 56px;
  align-items: stretch;
}
.form-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(27, 22, 19, 0.28);
  padding: 24px;
  border: 1px solid #e8e0d6;
  max-width: 400px;
  width: 100%;
  display: grid;
  gap: 0;
  position: static;
  margin: 100px auto 0;
  text-align: center;
  box-sizing: border-box;
}
.section-title {
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 800;
  text-align: center;
  margin: 44px auto 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  text-wrap: balance;
  max-width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.15;
}
.section-title img {
  width: 36px;
  height: 36px;
}
.section-title:first-of-type {
  margin-top: 0;
}

.section-title svg,
.section-title img {
  display: block;
  margin: 0 auto;
}
.section-sub {
  text-align: center;
  color: var(--accent);
  font-size: clamp(15px, 1.6vw, 17px);
  margin-bottom: 16px;
  line-height: 1.6;
  padding: 0 12px;
  box-sizing: border-box;
  max-width: 100%;
  text-wrap: balance;
}
.section-title-sub {
  text-align: center;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent);
  text-wrap: balance;
}
.section-note {
  max-width: 760px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.8;
  text-align: center;
}

.section-inner p,
.section-inner li,
.seo-article p {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.8;
  text-wrap: pretty;
}

.section-inner h3 {
  font-size: clamp(22px, 2.8vw, 27px);
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.25;
  text-wrap: balance;
}
.section-inner h4 {
  font-size: clamp(19px, 2.3vw, 23px);
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.3;
  text-wrap: balance;
}
.section-inner article {
  margin-top: 12px;
}
.section-inner article h3 {
  font-size: clamp(20px, 2.4vw, 24px);
  margin-bottom: 10px;
}
.section-inner p,
.section-inner li {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--muted);
}
.section-inner ul {
  margin-top: 10px;
  padding-left: 20px;
}
.section-inner hr {
  border: none;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 26px 0;
}
#seo-zona {
  color: var(--accent);
  font-weight: 700;
}

.seo-section {
  background: var(--bg);
}
.seo-inner {
  padding-top: 6px;
}
.section-imgs {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 24px auto 0;
  max-width: 760px;
}
.section-img {
  width: calc(50% - 8px);
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.section-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.seo-h3 {
  font-size: clamp(20px, 3vw, 26px);
  margin: 28px auto 8px;
  color: var(--text);
  text-align: center;
  max-width: 760px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.extra-services {
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 0 20px;
}
.extra-services h2 {
  font-size: clamp(18px, 2.5vw, 22px);
  text-align: center;
  margin-bottom: 8px;
  color: var(--text);
}
.extra-services > p {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.extra-services ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  list-style: none;
  padding: 0;
}
.extra-services li {
  font-size: 13px;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.extra-services li strong {
  color: var(--text);
}
@media (max-width: 600px) {
  .extra-services ul {
    grid-template-columns: 1fr;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 28px auto 0;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  justify-items: stretch;
}
.step-card {
  background: var(--white);
  border: 1.5px solid #e8e0d6;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(43, 36, 32, 0.08);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  min-width: 0;
}
.step-card h4 {
  text-wrap: balance;
}
.step-card:hover {
  box-shadow: 0 14px 38px rgba(43, 36, 32, 0.12);
  transform: translateY(-3px);
}
.step-num {
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: #fff;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.step-body h4 {
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}
.step-body p {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
}
@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .step-card {
    padding: 22px 18px;
  }
  .services-grid {
    gap: 14px;
  }
  .service-card {
    padding: 8px 14px;
  }
}
.seo-h4 {
  margin: 20px auto 10px;
  color: var(--text);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.01em;
}
.seo-p {
  width: 100%;
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 450;
  text-align: left;
  text-wrap: pretty;
  hanging-punctuation: first last;
}
.seo-p p {
  width: 100%;
}
.seo-p a.seo-link {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(8, 145, 178, 0.45);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.seo-p a.seo-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
.seo-list {
  max-width: 760px;
  margin: 0.75rem auto 0;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 20px;
}
.seo-list-cols {
  max-width: 900px;
  margin: 0.75rem auto 0;
}
.seo-list-cols ul.seo-list {
  columns: 2 240px;
  gap: 0 2rem;
  padding-left: 1.5rem;
}
.seo-list-cols ul.seo-list li {
  break-inside: avoid;
  margin-bottom: 0.6rem;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
}
.seo-list-cols ul.seo-list li strong {
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 2px;
}
.seo-hr {
  opacity: 0.06;
  margin: 26px 0;
  border: none;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}
.seo-article {
  max-width: 760px;
  margin: 0.75rem auto 0;
  color: var(--muted);
  line-height: 1.8;
}
.seo-note {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: clamp(16px, 1.6vw, 18px);
}

.seo-calles {
  max-width: 760px;
  margin: 12px auto 0;
  text-align: center;
  min-height: 50px;
}
.seo-calles-tag {
  display: inline-block;
  background: rgba(8, 145, 178, 0.08);
  color: var(--accent);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  margin: 3px 2px;
  letter-spacing: 0.01em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 auto 34px;
  max-width: 900px;
  min-height: 400px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid #e8e0d6;
  border-radius: var(--radius);
  padding: 8px 14px 16px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  box-shadow: 0 12px 30px rgba(43, 36, 32, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.service-card:hover {
  box-shadow: 0 14px 38px rgba(43, 36, 32, 0.12);
  transform: translateY(-3px);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 0 12px;
  background: var(--card-alt);
}
.service-icon {
  font-size: 28px;
  margin-bottom: 8px;
  text-align: center;
}
.service-card {
  text-align: center;
}
.service-card h3 {
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-card p {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--muted);
  text-align: left;
}
.service-card p a {
  font-size: 0.85em;
  font-weight: 700;
  color: var(--accent);
}

.ad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 720px;
  margin: 0 auto;
  min-height: 400px;
}
.ad-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: transparent;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
}
.ad-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  opacity: 1;
  border-radius: 12px;
  filter: saturate(1.05) brightness(1.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-top: 28px;
}
.ad-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.ad-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.testimonios-grid {
  margin-bottom: 150px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  min-height: 200px;
}
.testimonio-card {
  background: var(--white);
  border: 1.5px solid #e8e0d6;
  border-radius: var(--radius);
  padding: 22px 20px;
}
.test-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.test-name {
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
}
.test-stars {
  color: #f59e0b;
  font-size: clamp(13px, 1.3vw, 15px);
}
.test-text {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 350px;
  margin-top: 100px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid #e8e0d6;
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  user-select: none;
  transition: background 0.15s;
  line-height: 1.4;
}
.faq-q:hover {
  background: var(--bg);
}
.faq-q .arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.3s;
}
.faq-item.open .arrow {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  line-height: 1.7;
  padding: 0 20px;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 16px;
}

.cta-section {
  background: linear-gradient(135deg, var(--carbon) 0%, var(--carbon2) 100%);
  text-align: center;
  padding: 56px 24px;
  color: #fff;
}
.cta-section h2 {
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 12px;
  transition: opacity 0.2s;
}
.cta-btn-wa:hover {
  opacity: 0.88;
}
.cta-btn-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 12px;
  transition: background 0.2s;
  cursor: pointer;
}
.cta-btn-form:hover {
  background: rgba(255, 255, 255, 0.25);
}

footer {
  background: var(--carbon2);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 24px 16px;
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.7;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}
.footer-zonas-title {
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 14px 0 10px;
  letter-spacing: 0.03em;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
}
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 14px 0 4px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.footer-social a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 14px;
  height: 14px;
  display: block;
}
.footer-otros-serv {
  margin: 12px 0 4px;
}
.footer-otros-serv a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  line-height: 1.5;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 8px 18px;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-otros-serv a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.footer-links {
  margin: 8px 0 4px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.6;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin: 14px auto 6px;
  max-width: 600px;
  text-align: center;
  line-height: 1.6;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  font-weight: 500;
}
.footer-legal a:hover {
  color: #fff;
}
.footer-locations {
  margin: 18px auto 0;
  max-width: 1100px;
  width: 100%;
}
.footer-locations-group ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-locations-group li {
  width: calc(20% - 6px);
  min-width: 130px;
  display: flex;
  justify-content: center;
}
.footer-locations-group {
  text-align: center;
}
.footer-locations-group h3 {
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  text-align: center;
}
.footer-locations a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.3;
  text-align: center;
  transition:
    background 0.2s,
    transform 0.15s;
}
.footer-locations a:hover {
  background: rgba(13, 148, 136, 0.25);
  transform: translateY(-1px);
}
.footer-zonas-title {
  margin: 0 0 8px;
}
.footer-legal {
  margin: 12px auto 6px;
}
.footer-copy {
  margin-top: 12px;
}

@media (max-width: 760px) {
  .footer-locations-group li {
    width: calc(50% - 6px);
    min-width: 0;
  }
  .footer-locations a {
    min-height: 34px;
    font-size: 11px;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 22, 19, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 9999;
}
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: 18px;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s ease;
}
.modal-overlay.show .modal-card {
  transform: translateY(0) scale(1);
}
.modal-icon {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 12px;
}
.modal-msg {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 22px;
}
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}
.modal-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.modal-btn-primary {
  background: var(--accent);
  color: #fff;
}
.modal-btn-wa {
  background: var(--wa);
  color: #fff;
}

.wa-float {
  position: fixed;
  bottom: 50px;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
}
.wa-float::after,
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  opacity: 0.6;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}
.wa-float::before {
  animation-delay: 1.2s;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

.footer-bottom p a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  margin: 0 2px;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-bottom p a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ad-grid:empty {
  display: none;
}
.ad-grid::after {
  content: "";
  display: none;
}

@media (max-width: 1024px) {
  .section {
    padding: 116px 20px;
  }
  .section-inner {
    max-width: 960px;
  }
  .section-with-form {
    grid-template-columns: 1fr;
  }
  .form-card {
    max-width: 100%;
    margin: 0 auto;
    position: static;
  }
  .hero {
    min-height: auto;
    background: var(--carbon);
  }
  .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
  }
  .hero-overlay {
    position: absolute;
    inset: auto;
    top: 56px;
    left: 0;
    right: 0;
    aspect-ratio: 16 / 9;
    background: none;
  }
  .hero-inner {
    padding: 48px 22px 56px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text-panel {
    min-height: auto;
    padding: 24px 20px;
    max-width: 100%;
  }
  .hero-text-panel h1 {
    white-space: normal;
    text-align: center;
  }
  .hero-text-panel .hero-badges {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-text-panel .hero-badges .hbadge {
    white-space: normal;
    font-size: 12px;
    padding: 6px 8px;
  }
  .hero-badges {
    justify-content: center;
  }
  .ad-grid {
    max-width: 100%;
  }
  .services-grid,
  .ad-grid,
  .testimonios-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }
  .hero-bg {
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
    inset: auto;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    border-radius: 0;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: none;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
  .hero-text-panel {
    padding: 22px 18px;
    min-height: auto;
    max-width: 100%;
  }
  .hero-text-panel h1 {
    font-size: clamp(28px, 8.5vw, 40px);
    padding: 0 4px;
    white-space: normal;
    text-align: center;
  }
  .hero-text-panel .hero-sub {
    padding: 0 4px;
  }
  .hero-text-panel .hero-cta {
    font-size: 12px;
    padding: 8px 30px;
  }
  .hero-text-panel .hero-cta-wa {
    padding: 8px 30px;
  }
  .hero-cta-group {
    flex-direction: row;
  }
  .hero-text-panel .hero-para-quien {
    padding: 0 4px;
  }
  .hero-text-panel .hero-badges {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 4px;
  }
  .hero-text-panel .hero-badges .hbadge {
    font-size: 12px;
    padding: 6px 8px;
  }
  .hero-text {
    padding: 20px 18px 14px;
    text-align: center;
  }
  .hero-badge {
    margin-bottom: 10px;
  }
  .hero-text h1 {
    font-size: clamp(28px, 8.5vw, 40px);
    padding: 0 4px;
    margin-bottom: 8px;
  }
  .hero-text .hero-sub {
    padding: 0 4px;
    margin-bottom: 10px;
  }
  .hero-text .hbadge {
    white-space: normal;
  }
  .hero-badges {
    justify-content: center;
    padding: 0 4px;
    gap: 6px;
  }
  .section-with-form {
    grid-template-columns: 1fr;
  }
  .form-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 20px;
    border-radius: 18px;
    position: static;
  }
  .form-card-title {
    font-size: 13px;
    padding: 0;
    margin-bottom: 2px;
  }
  .form-card-sub {
    font-size: 10px;
    margin-bottom: 2px;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
    transform: scale(0.8);
    transform-origin: center top;
  }
  .field {
    margin-bottom: 8px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 14px;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
  }
  #f-consent {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    flex-shrink: 0;
  }
  .form-consent-label {
    font-size: 12px;
    line-height: 1.3;
  }
  .btn-primary,
  .btn-wa-form {
    font-size: 13px;
    min-height: 46px;
    padding: 8px 8px;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    border-radius: 12px;
    overflow: hidden;
  }
  .btn-primary svg,
  .btn-wa-form svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  .btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
  }
  .form-note {
    font-size: 10px;
    margin-top: 2px;
    line-height: 1;
    white-space: nowrap;
    text-align: left;
    transform: scale(0.7);
    transform-origin: left top;
  }
  .form-privacy-note {
    font-size: 12px;
    margin-bottom: 1px;
    text-align: left;
    line-height: 1.2;
    transform: scale(0.65);
    transform-origin: left;
  }
  .section-inner p,
  .section-inner li,
  .seo-article p,
  .seo-p {
    line-height: 1.85;
    font-size: 18px;
  }
  .section-title {
    font-size: clamp(26px, 7vw, 36px);
    padding: 0 8px;
    margin: 20px 0 12px;
  }
  .section-sub {
    padding: 0 12px;
    font-size: 15px;
  }
  .seo-p {
    padding: 0 12px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonios-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faq-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .step-card {
    padding: 20px 16px;
  }
  .section-imgs {
    gap: 12px;
  }
  .section-img {
    height: 150px;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 88px 16px;
  }
  .site-header {
    flex-wrap: nowrap;
    padding: 8px 12px;
    justify-content: space-between;
  }
  .hdr-brand {
    font-size: 13px;
    flex: 0 0 auto;
  }
  .hdr-wa {
    font-size: 18px;
    gap: 6px;
    margin-left: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .hdr-wa-icon {
    width: 32px;
    height: 32px;
  }
  .hdr-wa-icon svg {
    width: 28px;
    height: 28px;
  }
  #hdr-wa-num {
    font-size: 18px;
    white-space: nowrap;
  }
  .hdr-tel {
    font-size: 16px;
    gap: 6px;
  }
  .hero {
    min-height: auto;
    padding: 0;
    padding-bottom: 0;
  }
  .hero-bg {
    position: relative;
    height: auto;
    aspect-ratio: 5 / 4;
    inset: auto;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    border-radius: 0;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
    max-width: 100%;
    margin: 0;
  }
  .hero-text-panel {
    padding: 18px 16px;
    min-height: auto;
    max-width: 100%;
  }
  .hero-text-panel h1 {
    font-size: clamp(26px, 8vw, 38px);
    padding: 0 4px;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
  }
  .hero-text-panel .hero-sub {
    font-size: 17px;
    line-height: 1.4;
    padding: 0 4px;
  }
  .hero-text-panel .hero-para-quien {
    font-size: 14px;
    margin-bottom: 8px;
    padding: 0 4px;
  }
  .hero-text-panel .hero-badges {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 4px;
    gap: 5px;
  }
  .hero-text-panel .hero-badges .hbadge {
    font-size: 11px;
    padding: 4px 8px;
  }
  .hero-text {
    padding: 18px 16px 12px;
    text-align: center;
  }
  .hero-badge {
    margin-bottom: 8px;
  }
  .hero-text h1 {
    font-size: clamp(22px, 7vw, 32px);
    padding: 0 4px;
    line-height: 1.15;
    margin-bottom: 8px;
  }
  .hero-text .hero-sub {
    padding: 0 4px;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .hero-para-quien {
    font-size: 13px;
    margin-bottom: 8px;
    padding: 0 4px;
  }
  .hero-badges {
    justify-content: center;
    padding: 0 4px;
    gap: 5px;
  }
  .hbadge {
    font-size: 11px;
    padding: 4px 8px;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-text-panel .hero-cta,
  .hero-text-panel .hero-cta-wa,
  .hero-cta,
  .hero-cta-wa {
    padding: 18px 15px;
    font-size: 16px;
  }
  .section-with-form {
    grid-template-columns: 1fr;
  }
  .form-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 16px;
    border-radius: 18px;
    position: static;
  }
  .form-card-title {
    font-size: 13px;
    margin-bottom: 2px;
    padding: 0;
  }
  .form-card-sub {
    font-size: 10px;
    margin-bottom: 2px;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
    transform: scale(0.8);
    transform-origin: center top;
  }
  .field {
    margin-bottom: 8px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 14px;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
  }
  #f-consent {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    flex-shrink: 0;
  }
  .form-consent-label {
    font-size: 12px;
    line-height: 1.3;
  }
  .btn-primary,
  .btn-wa-form {
    font-size: 13px;
    min-height: 46px;
    padding: 8px 8px;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    border-radius: 12px;
    overflow: hidden;
  }
  .btn-primary svg,
  .btn-wa-form svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  .btn-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 4px;
  }
  .form-note {
    font-size: 10px;
    margin-top: 2px;
    line-height: 1;
    white-space: nowrap;
    text-align: left;
    transform: scale(0.7);
    transform-origin: left top;
  }
  .form-privacy-note {
    font-size: 12px;
    margin-bottom: 1px;
    text-align: left;
    line-height: 1.2;
    transform: scale(0.65);
    transform-origin: left;
  }
  .section-title {
    font-size: clamp(24px, 7vw, 32px);
    padding: 0 8px;
    margin: 20px 0 12px;
  }
  .section-sub {
    font-size: 15px;
    padding: 0 12px;
  }
  .section-inner p,
  .section-inner li,
  .seo-article p,
  .seo-p {
    line-height: 1.8;
    font-size: 18px;
    padding: 0 12px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonios-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faq-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .step-card {
    padding: 20px 16px;
  }
  .section-imgs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .section-img {
    width: 100%;
    height: 160px;
  }
}
