*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent: #16b068;
  --blue: #166534;
  --blue2: #14532D;
  --text: #1C1917;
  --muted: #57534E;
  --bg: #F0FDF4;
  --white: #FFFFFF;
  --wa: #25D366;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue2);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.hdr-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .35
  }
}

.hdr-tel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 28px;
  padding: 4px 0;
  border-radius: 0;
  transition: opacity .2s;
  white-space: nowrap;
  letter-spacing: .02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}

.hdr-tel:hover {
  opacity: .88;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(30, 106, 60, 0.5), rgba(7, 55, 26, 0.25));
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
  padding: 78px 24px 78px;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 520px);
  gap: 48px;
  align-items: center;
}

.hero-text {
  color: #fff;
  background: rgba(20, 83, 45, 0.45);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  z-index: 100;
}

.hero-badge {
  display: inline-block;
  background: rgba(74, 222, 128, .9);
  color: #14532D;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -.03em;
}

.hero-text h1 span {
  color: var(--accent);

 -webkit-text-stroke: 1px white;
  text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;




}

.hero-h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  max-width: 680px;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 28px;
  max-width: 680px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hbadge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
}

.form-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .14);
  padding: 20px;
  border: 1px solid #BBF7D0;
  max-width: 440px;
  width: 100%;
  margin: -50px auto 0;
}

.form-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.form-card-sub {
  font-size: 17px;
  color: var(--accent);
  margin-bottom: 20px;
  text-align: center;
}

.field {
  margin-bottom: 14px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.6px solid #9AA7B8;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #F7F8FB;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #7F8EA4;
  background: #EFF3F9;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .12);
  background: #fff;
}

.field select {
  padding-right: 40px;
  cursor: pointer;
}

.field select option:first-child {
  color: var(--muted);
}

.field textarea {
  resize: vertical;
  min-height: 72px;
}

.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='%236B7A90' 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: 12px;
  margin-top: 10px;
}

.btn-primary,
.btn-wa-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 18px;
  border: none;
  border-radius: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, filter .2s;
  min-height: 56px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(22, 163, 74, .25);
}

.btn-wa-form {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 211, 102, .20);
}

.btn-primary:hover,
.btn-wa-form:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 20px 35px rgba(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: .55;
  cursor: not-allowed;
}

.form-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

#f-consent {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  border: 1.5px solid #AFC0D1;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  background: #FAFBFC;
  transition: all .2s;
}

#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: 14px;
  color: var(--muted);
  line-height: 1.4;
  cursor: pointer;
}

.form-privacy-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 420px;
}

.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: 72px 24px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.section-title svg {
  display: block;
}

.section-sub {
  text-align: center;
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 16px;
}

.section-note {
  max-width: 760px;
  margin: 0 auto 32px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.section-inner p,
.section-inner li,
.seo-article p {
  font-size: 19px;
}

.section-inner h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 18px;
  color: var(--text);
}

.section-inner h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 16px;
  color: var(--text);
}

.section-inner article {
  margin-top: 12px;
}

.section-inner article h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.section-inner p,
.section-inner li {
  font-size: 19px;
  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;
}

.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: -.02em;
}

.seo-h4 {
  margin: 20px auto 10px;
  color: var(--text);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -.01em;
}

.seo-p {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 18px;
  font-weight: 450;
}

.seo-p a.seo-link {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(22, 163, 74, .45);
  text-underline-offset: 2px;
}

.seo-p a.seo-link:hover {
  color: var(--accent, #16A34A);
  text-decoration-color: var(--accent, #16A34A);
}

.pasos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 20px auto 0;
}

.paso-card {
  background: var(--white);
  border: 1px solid #BBF7D0;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: box-shadow .2s;
}

.paso-card:hover {
  box-shadow: 0 4px 12px rgba(22, 163, 74, .12);
}

.paso-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.paso-text {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

@media (max-width: 480px) {
  .pasos-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.seo-list {
  max-width: 760px;
  margin: 0.75rem auto 0;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 20px;
}

.seo-hr {
  opacity: .06;
  margin: 26px 0;
  border: none;
  height: 1px;
  background: rgba(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);
}

.seo-calles {
  max-width: 760px;
  margin: 12px auto 0;
  text-align: center;
  min-height: 50px;
}

.seo-calles-tag {
  display: inline-block;
  background: rgba(22, 163, 74, .08);
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  margin: 3px 2px;
  letter-spacing: .01em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 34px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--white);
  border: 1.5px solid #D1FAE5;
  border-radius: var(--radius);
  padding: 8px 14px;
  transition: box-shadow .25s, transform .25s;
  box-shadow: 0 12px 30px rgba(16, 25, 54, .08);
}

.service-card:hover {
  box-shadow: 0 14px 38px rgba(16, 25, 54, .12);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 8px;
  text-align: center;
}

.service-card {
  text-align: center;
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-card p {
  font-size: 16px;
  color: var(--muted);
  text-align: left;
}

.antes-despues {
  background: var(--blue2);
}

.antes-despues .section-title,
.antes-despues .section-sub,
.antes-despues .section-note {
  color: #fff;
}

.antes-despues .section-sub {
  color: rgba(255, 255, 255, .65);
}

.antes-despues .section-note {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.proceso-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.proceso-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg);
  padding: 20px 16px;
  border-radius: 10px;
  border-top: 3px solid var(--accent);
}

.proceso-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.proceso-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 15px;
}

.proceso-card p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.info-card {
  background: var(--bg);
  padding: 20px;
  border-radius: 12px;
  border-top: 3px solid var(--accent);
}

.info-card h3 {
  color: var(--primary);
  margin: 0 0 8px;
  font-size: 16px;
}

.info-card p {
  color: var(--text);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.info-cards-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.info-card-left {
  background: var(--bg);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.info-card-left h3 {
  color: var(--primary);
  margin: 0 0 8px;
  font-size: 16px;
}

.info-card-left p {
  color: var(--text);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.info-cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.info-card-top {
  background: var(--bg);
  padding: 20px;
  border-radius: 12px;
  border-top: 4px solid var(--accent);
}

.info-card-top h3 {
  color: var(--primary);
  margin: 0 0 8px;
  font-size: 16px;
}

.info-card-top p {
  color: var(--text);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.info-cards-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.info-card-center {
  background: var(--bg);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.info-card-center h3 {
  color: var(--primary);
  margin: 0 0 8px;
  font-size: 16px;
}

.info-card-center p {
  color: var(--text);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.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 .3s ease, box-shadow .3s ease;
}

.ad-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.ad-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #166534 0%, #16A34A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  opacity: .5;
  color: #fff;
}

.ad-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .7));
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

.testimonios-grid {
  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 #D1FAE5;
  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: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.test-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.test-stars {
  color: #F59E0B;
  font-size: 13px;
}

.test-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 350px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid #D1FAE5;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  user-select: none;
  transition: background .15s;
}

.faq-q:hover {
  background: #F0FDF4;
}

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

.faq-item.open .arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  font-size: 14px;
  color: var(--muted);
  padding: 0 20px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 16px;
}

.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  text-align: center;
  padding: 56px 24px;
  color: #fff;
}

.cta-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-section p {
  color: rgba(255, 255, 255, .72);
  margin-bottom: 28px;
  font-size: 15px;
}

.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: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 12px;
  transition: opacity .2s;
}

.cta-btn-wa:hover {
  opacity: .88;
}

.cta-btn-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  border: 2px solid rgba(255, 255, 255, .4);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 12px;
  transition: background .2s;
  cursor: pointer;
}

.cta-btn-form:hover {
  background: rgba(255, 255, 255, .25);
}

footer {
  background: var(--blue2);
  color: rgba(255, 255, 255, .7);
  text-align: center;
  padding: 16px 16px;
  font-size: 12px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4px 12px;
}

.footer-zonas-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  margin: 8px 0 6px;
  letter-spacing: .03em;
}

.footer-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, .45);
  margin-top: 8px;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 8px 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, .75);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: background .2s, color .2s, transform .2s;
}

.footer-social a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .16);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 14px;
  height: 14px;
  display: block;
}

.footer-otros-serv {
  margin: 6px 0 4px;
}

.footer-otros-serv a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  text-align: center;
  line-height: 1.5;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px;
  padding: 8px 18px;
  transition: background .2s, color .2s;
}

.footer-otros-serv a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.footer-links {
  margin: 4px 0 4px;
}

.footer-links a {
  color: rgba(255, 255, 255, .75);
  text-decoration: underline;
  font-weight: 500;
  font-size: 11px;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .8);
}

.footer-legal {
  font-size: 10px;
  color: rgba(255, 255, 255, .5);
  margin: 8px auto 4px;
  max-width: 600px;
  text-align: center;
  line-height: 1.5;
}

.footer-legal a {
  color: rgba(255, 255, 255, .7);
  text-decoration: underline;
  font-weight: 500;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px auto 0;
  max-width: 1250px;
  width: 100%;
  justify-content: center;
}

.footer-locations-group {
  width: 100%;
}

.footer-locations-group h3 {
  display: none;
}

.footer-locations-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.footer-locations-group li {
  margin: 0;
  width: calc(20% - 6px);
  min-width: 130px;
}

.footer-locations a {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .95);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .015em;
  line-height: 1.3;
  text-align: center;
  transition: background .2s, transform .15s;
}

.footer-locations a:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .footer-locations {
    gap: 4px;
  }

  .footer-locations-group ul {
    gap: 4px;
  }

  .footer-locations-group li {
    width: calc(50% - 4px);
    min-width: 0;
  }

  .footer-locations a {
    width: 100%;
    font-size: 10px;
    padding: 5px 10px;
    white-space: normal;
    text-align: center;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .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, .30);
  transform: translateY(16px) scale(.97);
  transition: transform .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 .15s ease, filter .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: 22px;
  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, .25);
  z-index: 999;
  transition: transform .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: .6;
  z-index: -1;
}

.wa-float::after {
  animation: wa-pulse 2.4s ease-out infinite;
}

.wa-float::before {
  animation: wa-pulse 2.4s ease-out infinite 1.2s;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: .6;
  }

  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 64px 20px;
  }

  .section-inner {
    max-width: 960px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 22px 56px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .form-card {
    max-width: 540px;
    margin: 0 auto;
  }

  .ad-grid {
    max-width: 100%;
  }

  .services-grid,
  .ad-grid,
  .testimonios-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 18px 52px;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: clamp(28px, 8vw, 46px);
  }

  .hero-sub {
    font-size: 18px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .form-card {
    margin-top: 0;
    padding: 30px 20px;
    border-radius: 24px;
  }

  .form-card-title {
    font-size: 24px;
  }

  .form-card-sub {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    padding: 14px 14px;
  }

  .btn-primary,
  .btn-wa-form {
    font-size: 16px;
    min-height: 54px;
    padding: 16px 16px;
  }

  .section-inner p,
  .section-inner li,
  .seo-article p {
    font-size: 20px;
    line-height: 1.95;
  }

  .section-title {
    font-size: clamp(28px, 6vw, 38px);
  }

  .services-grid,
  .testimonios-grid,
  .faq-list {
    gap: 20px;
  }

  .ad-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 48px 16px;
  }

  .proceso-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-cards,
  .info-cards-2,
  .info-cards-3,
  .info-cards-4 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pasos-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hdr-brand {
    font-size: 13px;
  }

  .hdr-tel {
    font-size: 22px;
    gap: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 40px 16px 46px;
    gap: 24px;
  }

  .hero-text h1 {
    font-size: clamp(26px, 10vw, 40px);
  }

  .hero-sub {
    font-size: 17px;
  }

  .form-card {
    padding: 24px 16px;
    border-radius: 20px;
    max-width: 100%;
    width: 100%;
  }

  .form-card-title {
    font-size: 22px;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    padding: 13px 14px;
  }

  .btn-group {
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-wa-form {
    font-size: 15px;
    min-height: 52px;
    padding: 14px 14px;
    width: 100%;
  }

  .section-title {
    font-size: clamp(26px, 7vw, 34px);
  }

  .section-sub,
  .section-note {
    font-size: 16px;
  }

  .seo-h3 {
    font-size: clamp(18px, 4vw, 22px);
    margin: 20px auto 6px;
  }

  .seo-h4 {
    font-size: clamp(16px, 3.5vw, 20px);
    margin: 14px auto 8px;
  }

  .section-inner p,
  .section-inner li,
  .seo-article p {
    font-size: 17px;
    line-height: 1.8;
  }

  .ad-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonios-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card p {
    font-size: 17px;
  }
}

.placeholder-img {
  width: 100%;
  height: 200px;
  background: #D6D3D1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A8A29E;
  font-size: 14px;
  font-weight: 500;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: #D6D3D1;
  border-radius: 12px;
}