@font-face {
  font-family: "Calibri Local";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/calibri-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Calibri Local";
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url("../assets/fonts/calibri-bold.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Calibri Local", Calibri, Arial, Helvetica, sans-serif;
  color: #374151;
  background: #f9fafb;
  line-height: 1.5;
}
a {
  color: #b9491a;
  text-decoration: none;
}
a:hover {
  color: #8f3814;
}
img {
  max-width: 100%;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.visually-hidden-icon {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #f3f4f6;
  box-shadow:
    0 10px 15px -3px rgba(17, 24, 39, 0.1),
    0 4px 6px -4px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(12px);
  transition: padding 0.5s ease;
}
.site-header.scrolled {
  padding: 8px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 64px;
}
.logo-link {
  display: inline-flex;
  align-items: center;
}
.logo-link img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-desktop a {
  color: #4b5563;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.nav-desktop a:hover {
  color: #111827;
  transform: scale(1.05);
}
.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  background: transparent;
  color: #4b5563;
  cursor: pointer;
  border: none;
}
.mobile-toggle svg,
.mobile-menu-close svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 32px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.mobile-menu-top img {
  height: 40px;
}
.mobile-menu-close {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: transparent;
  border: none;
  color: #4b5563;
  cursor: pointer;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu-links a {
  color: #1f2937;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}

main {
  padding-top: 80px;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}
.hero-text-col {
  position: relative;
  z-index: 2;
  flex: 0 0 42%;
  max-width: 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 40px 64px clamp(24px, 4vw, 96px);
  box-sizing: border-box;
}
.hero-image {
  flex: 1 1 auto;
  background-image: url("../assets/home_2.webp");
  background-position: center;
  background-size: cover;
  border-top-left-radius: 14% 55%;
  border-bottom-left-radius: 14% 55%;
  box-shadow: -50px 0 70px rgba(17, 24, 39, 0.15);
}
.hero-content {
  max-width: 460px;
  text-align: left;
}
.hero-content h1 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.08;
}
.hero-content h1 span {
  color: #b9491a;
}
.hero-content p {
  margin: 0 0 40px;
  color: #4b5563;
  font-size: clamp(16px, 1.6vw, 18.8px);
  font-weight: 500;
  line-height: 1.65;
}
.hero-content p strong {
  color: #111827;
  font-weight: 800;
}
.hero-content p .muted {
  opacity: 0.85;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: #b9491a;
  box-shadow: 0 20px 30px rgba(185, 73, 26, 0.3);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.hero-cta:hover {
  background: #8f3814;
  transform: scale(1.05);
}

/* Quienes somos */
.section-quienes {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 48px 0;
  scroll-margin-top: 80px;
}
.quienes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 80px;
  align-items: center;
}
.quienes-grid h2,
.section-title {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.05;
}
.underline-bar {
  width: 56px;
  height: 4px;
  margin-bottom: 32px;
  background: #b9491a;
  border-radius: 999px;
}
.quienes-grid > div:first-child > p {
  margin: 0 0 40px;
  color: #374151;
  font-size: clamp(16px, 2vw, 18.8px);
  line-height: 1.7;
}
.quienes-grid p strong {
  color: #111827;
  font-weight: 700;
}
.quienes-grid p .accent {
  color: #b9491a;
  font-weight: 800;
}
.boutique-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.boutique-label .icon-badge {
  display: flex;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111827;
  color: #b9491a;
}
.boutique-label .icon-badge svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.boutique-label span {
  color: #111827;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}
.boutique-label .rule {
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.boutique-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.boutique-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid #e5e7eb;
}
.boutique-card .icon-circle {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #b9491a;
}
.boutique-card .icon-circle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.boutique-card h4 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}
.boutique-card p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
}
.quienes-image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(17, 24, 39, 0.25);
}
.quienes-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Respaldo */
.section-respaldo {
  position: relative;
  overflow: hidden;
  background: #f6f4f2;
  padding: 32px 0;
  scroll-margin-top: 80px;
}
.respaldo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 48px;
  align-items: center;
}
.respaldo-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(17, 24, 39, 0.25);
}
.respaldo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.respaldo-intro {
  text-align: center;
  margin-bottom: 32px;
}
.respaldo-intro h2 {
  margin: 0 0 8px;
  color: #050505;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.05;
}
.respaldo-intro p {
  margin: 0 auto;
  max-width: 36rem;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}
.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cert-badge {
  display: flex;
  width: 180px;
  height: 180px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 4px solid #f9fafb;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 20px 25px -5px rgba(17, 24, 39, 0.1),
    0 8px 10px -6px rgba(17, 24, 39, 0.1);
}
.cert-badge img {
  max-width: 140px;
  max-height: 120px;
  object-fit: contain;
  filter: grayscale(1);
}
.cert-item p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cert-item p span {
  color: #8b1832;
}

/* Servicios */
.section-servicios {
  position: relative;
  overflow: hidden;
  background: #f7f8fa;
  padding: 48px 0;
  scroll-margin-top: 80px;
}
.servicios-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  align-items: center;
}
.servicios-text-col {
  display: flex;
  flex-direction: column;
  margin-left: 130px;
  align-items: flex-start;
  text-align: left;
}
.servicios-text-col h2 {
  margin: 0 0 24px;
  color: #050505;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.05;
}
.servicios-text-col img {
  width: 420px;
  max-width: none;
  height: auto;
  display: block;
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      black 15%,
      black 70%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      black 15%,
      black 85%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      black 15%,
      black 70%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      black 15%,
      black 85%,
      transparent 100%
    );
  mask-composite: intersect;
}
.servicios-diagram {
  max-width: 512px;
  width: 100%;
  margin-left: 210px;
  padding: 0 16px;
  position: relative;
  aspect-ratio: 1000/1530;
}
.servicios-diagram svg.bg-diagram {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.service-text {
  position: absolute;
  z-index: 1;
  width: 48%;
}
.service-head {
  display: contents;
}
.service-icon {
  display: none;
}
.service-text h3 {
  margin: 0 0 6px;
  font-size: 18.8px;
  font-weight: 800;
  line-height: 1.15;
}
.service-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.3;
}
.st1 {
  top: 15%;
  transform: translateY(-50%);
  left: 0;
  text-align: right;
  color: #8b1832;
}
.st2 {
  top: 38.2%;
  transform: translateY(-50%);
  right: 0;
  text-align: left;
  color: #0f1d38;
}
.st3 {
  top: 61.4%;
  transform: translateY(-50%);
  left: 0;
  text-align: right;
  color: #b9491a;
}
.st4 {
  top: 84.6%;
  transform: translateY(-50%);
  right: 0;
  text-align: left;
  color: #0f1d38;
}

/* Valores */
.section-valores {
  position: relative;
  overflow: hidden;
  background: #f6f4f2;
  padding: 48px 0;
  scroll-margin-top: 80px;
}
.valores-intro {
  max-width: 52rem;
  margin: 0 auto 64px;
  text-align: center;
}
.valores-intro h2 {
  margin: 0 0 24px;
  color: #050505;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.05;
}
.valores-intro p {
  margin: 0 auto;
  max-width: 48rem;
  color: #4b5563;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.65;
}
.valores-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 16px;
}
.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 150px;
}
.value-card.offset {
  margin-top: 40px;
}
.value-card .icon-circle {
  display: flex;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #fff;
  border: 5px solid #e5e7eb;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}
.value-card:hover .icon-circle {
  transform: scale(1.08);
  border-color: rgba(185, 73, 26, 0.4);
}
.value-card .icon-circle svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}
.value-card p {
  margin: 0;
  color: #6d625e;
  font-size: 14px;
  line-height: 1.55;
}

/* Clientes */
.section-clientes {
  padding: 48px 0;
  background: #f9fafb;
  scroll-margin-top: 80px;
}
.clientes-intro {
  max-width: 52rem;
  margin: 0 auto 48px;
  text-align: center;
}
.clientes-intro h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.05;
}
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}
.client-logo img {
  height: 40px;
  width: auto;
  max-width: 75%;
  object-fit: contain;
  display: block;
}

/* Contacto */
.section-contacto {
  background: #f7f8fa;
  padding: 48px 0;
  scroll-margin-top: 80px;
}
.contacto-intro {
  max-width: 52rem;
  margin: 0 auto 64px;
  text-align: center;
}
.contacto-intro h2 {
  margin: 0 0 24px;
  color: #050505;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.12;
}
.contacto-intro p {
  margin: 0 auto;
  max-width: 48rem;
  color: #4b5563;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.65;
}
.contact-card {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(17, 24, 39, 0.25);
  padding: 40px;
}
.contact-card-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  border-bottom-left-radius: 999px;
  background: #fff7ed;
  opacity: 0.5;
}
.contact-card form {
  position: relative;
  z-index: 1;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.form-group {
  display: grid;
  gap: 8px;
}
.form-group.full {
  grid-column: 1/-1;
}
.form-group label {
  margin-left: 4px;
  color: #374151;
  font-size: 16px;
  font-weight: 800;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
  background: #f9fafb;
  color: #1f2937;
  padding: 16px;
  box-sizing: border-box;
  font-family: inherit;
}
.form-group textarea {
  resize: none;
}
.terms-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  align-items: flex-start;
}
.terms-row input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: #b9491a;
  cursor: pointer;
}
.terms-row label {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}
.terms-row label span {
  color: #b9491a;
  font-weight: 700;
}
.g-recaptcha {
  margin-top: 20px;
}
.status-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  display: none;
}
.status-message.success {
  display: block;
  color: #166534;
  background: #dcfce7;
}
.status-message.error {
  display: block;
  color: #991b1b;
  background: #fee2e2;
}
.submit-btn {
  display: block;
  width: 100%;
  margin-top: 40px;
  border-radius: 12px;
  padding: 16px 32px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  border: none;
  cursor: not-allowed;
  background: #d1d5db;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.submit-btn.enabled {
  cursor: pointer;
  background: #b9491a;
  box-shadow: 0 20px 30px rgba(185, 73, 26, 0.3);
}

/* Footer */
.site-footer {
  border-top: 1px solid #f3f4f6;
  background: #f1ebe9;
}
.footer-top {
  padding: 80px 0;
  background: rgba(249, 250, 251, 0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.footer-col img {
  height: 48px;
}
.footer-col p {
  max-width: 20rem;
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  background: #fff;
  color: #9ca3af;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
  transition: color 0.25s ease;
}
.social-links a:hover {
  color: #b9491a;
}
.social-links svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand h4 {
  margin: 0;
  color: #111827;
  font-size: 20px;
  font-weight: 800;
}
.footer-contact {
  display: grid;
  gap: 12px;
}
.footer-contact p {
  margin: 0;
}
.footer-contact .email {
  color: #b9491a;
  font-weight: 800;
}
.footer-hours {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}
.footer-hours .label {
  margin: 0 0 8px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-hours span {
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #9ca3af;
  font-size: 15px;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  color: #9ca3af;
  transition: color 0.25s ease;
}
.footer-legal-links a:hover {
  color: #4b5563;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 999px;
}

/* Legal modal */
.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.legal-overlay.open {
  display: flex;
}
.legal-modal {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 80vh;
  overflow-y: auto;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}
.legal-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: #f3f4f6;
  color: #374151;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}
.legal-modal h3 {
  margin: 0 0 20px;
  color: #050505;
  font-size: 24px;
  font-weight: 900;
}
.legal-modal .legal-meta {
  margin: 0 0 20px;
  color: #9ca3af;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.legal-modal h4 {
  margin: 22px 0 8px;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}
.legal-modal p {
  margin: 0 0 12px;
  color: #4b5563;
  font-size: 14.5px;
  line-height: 1.65;
}
.legal-section {
  display: none;
}
.legal-section.active {
  display: block;
}

@media (max-width: 1023px) {
  .nav-desktop {
    display: none;
  }
  .mobile-toggle {
    display: grid;
  }
  .hero {
    flex-direction: column;
    min-height: auto;
  }
  .hero-image {
    width: 100%;
    height: clamp(200px, 45vw, 380px);
    border-radius: 0 0 40% 40% / 0 0 60px 60px;
    box-shadow: none;
    order: -1;
  }
  .hero-text-col {
    flex-basis: auto;
    max-width: 100%;
    padding: 40px 16px 64px;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-content .underline-bar {
    margin-left: auto;
    margin-right: auto;
  }
  .quienes-grid,
  .respaldo-grid {
    gap: 48px;
  }
  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .servicios-text-col {
    margin-left: 0;
    align-items: center;
    text-align: center;
  }
  .servicios-text-col img {
    width: 100%;
    max-width: 320px;
  }
  .servicios-diagram {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .servicios-diagram {
    position: static;
    height: auto;
    aspect-ratio: auto;
    padding: 0;
  }
  .servicios-diagram svg.bg-diagram {
    display: none;
  }
  .service-text {
    position: static;
    width: 100%;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    text-align: left;
    margin: 0 0 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.06);
    padding: 24px;
  }
  .service-text:last-child {
    margin-bottom: 0;
  }
  .service-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }
  .service-text h3 {
    margin: 0;
  }
  .service-icon {
    display: flex;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(15, 29, 56, 0.08);
  }
  .service-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .st1 .service-icon {
    background: rgba(139, 24, 50, 0.12);
  }
  .st3 .service-icon {
    background: rgba(185, 73, 26, 0.12);
  }
  .service-text ul {
    text-align: left;
  }
  .service-text li {
    margin-bottom: 6px;
  }
  .service-text li:last-child {
    margin-bottom: 0;
  }
}
