@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap");

:root {
  --purple: #2c257f;
  --purple-dark: #241c75;
  --purple-deep: #1d185e;
  --blue-soft: #dfe7f7;
  --blue-section: #8faadc;
  --blue-card: #3a3792;
  --red: #f2483b;
  --gold: #ffb22b;
  --green: #078f46;
  --text-dark: #181735;
  --text-muted: #5e6178;
  --white: #ffffff;
  --footer: #2c2490;
  --shadow-soft: 0 18px 42px rgba(42, 35, 110, 0.18);
  --shadow-card: 0 18px 34px rgba(15, 22, 50, 0.18);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: #f4f6fb;
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
}

button {
  font-family: inherit;
}

.home-page {
  width: 100%;
  min-height: 100vh;
}

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

/* ============================= */
/* HERO */
/* ============================= */

.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: #2c257f;
}

.hero-background-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(34, 25, 80, 0.08) 0%,
      rgba(35, 25, 95, 0.22) 34%,
      rgba(39, 31, 125, 0.74) 55%,
      rgba(40, 31, 127, 0.96) 73%,
      rgba(40, 31, 127, 1) 100%
    ),
    linear-gradient(
      180deg,
      rgba(15, 13, 48, 0.24) 0%,
      rgba(15, 13, 48, 0.04) 50%,
      rgba(15, 13, 48, 0.2) 100%
    );
  pointer-events: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 104px;
  display: grid;
  grid-template-columns: 270px 1fr 180px;
  align-items: center;
  gap: 28px;
  padding: 0 8.7%;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-self: start;
  color: var(--white);
}

.brand-name {
  font-size: 1.72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.brand-subtitle {
  margin-top: 6px;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.4vw, 50px);
}

.nav-link {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-button {
  justify-self: end;
  min-width: 130px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.96);
  color: #29215f;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.header-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.hero-content {
  position: relative;
  z-index: 5;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 126px 8.5% 80px;
}

.hero-copy {
  width: min(100%, 690px);
  margin-top: 38px;
  color: var(--white);
  animation: fadeUp 0.7s ease both;
}

.hero-copy h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 5.1vw, 5.25rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0.015em;
  text-wrap: balance;
  text-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.hero-copy h2 {
  margin-top: 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 3.25vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.hero-copy p {
  max-width: 660px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-copy strong {
  display: block;
  margin-top: 38px;
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.065em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 46px;
  margin-top: 34px;
}

.btn {
  min-width: 152px;
  height: 37px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 600;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.025);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.btn-gold {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #171328;
  box-shadow: 0 18px 34px rgba(255, 178, 43, 0.25);
}

.btn-gold:hover {
  background: #ffc14a;
  border-color: #ffc14a;
}

/* ============================= */
/* SERVICIOS DESTACADOS */
/* ============================= */

.services-showcase {
  position: relative;
  overflow: hidden;
  background: #dfe7f7;
  padding: 84px 0 0;
}

.services-container {
  position: relative;
  text-align: center;
  padding-bottom: 170px;
}

.section-eyebrow {
  color: #2a2354;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.service-board {
  position: relative;
  width: min(100%, 790px);
  margin: 74px auto 0;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.service-left {
  position: relative;
  display: grid;
  gap: 20px;
}

.mini-flag-img {
  position: absolute;
  top: -57px;
  left: 2px;
  z-index: 6;
  width: 76px;
  height: auto;
  object-fit: contain;
  transform: rotate(-18deg);
  transform-origin: center;
  filter: drop-shadow(0 12px 16px rgba(20, 22, 60, 0.18));
  pointer-events: none;
  user-select: none;
}

.service-pill,
.service-card-blue {
  border-radius: 16px;
  display: flex;
  align-items: center;
  color: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-pill:hover,
.service-card-blue:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(42, 35, 110, 0.24);
}

.service-pill {
  min-height: 104px;
  justify-content: flex-start;
  padding: 20px 30px;
  text-align: left;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
}

.service-pill span {
  display: block;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
}

.service-pill small {
  display: block;
  margin-top: 12px;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 0.9;
  font-weight: 900;
}

.service-pill-red {
  background: var(--red);
}

.service-pill-gold {
  background: var(--gold);
}

.service-card-blue {
  position: relative;
  min-height: 310px;
  justify-content: flex-start;
  padding: 34px 34px;
  background: var(--blue-card);
  text-align: left;
  overflow: visible;
}

.service-card-blue strong {
  position: relative;
  z-index: 2;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.05rem, 4.4vw, 5.05rem);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.service-seal-img {
  position: absolute;
  top: -34px;
  right: -36px;
  z-index: 5;
  width: 88px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(20, 24, 80, 0.25));
  pointer-events: none;
  user-select: none;
}

.services-actions {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 68px;
  flex-wrap: wrap;
}

.soft-button {
  min-width: 322px;
  height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #c8cff1;
  color: #353485;
  font-size: 1.34rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.soft-button span {
  font-size: 1.65rem;
  font-weight: 800;
}

.soft-button:hover,
.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(28, 31, 80, 0.17);
}

.whatsapp-button {
  min-width: 333px;
  height: 46px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #078f46;
  color: var(--white);
  font-size: 1.32rem;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.whatsapp-button:hover {
  background: #057d3d;
}

.wa-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.wa-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.bottom-patriotic-seal {
  position: absolute;
  left: 50%;
 bottom: -62px;
  z-index: 4;
  width: 150px;
  height: auto;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 16px 22px rgba(20, 24, 80, 0.18));
  pointer-events: none;
  user-select: none;
}

/* ============================= */
/* PROCESO / EQUIPO */
/* ============================= */

.process-section {
  background: #f2f3f7;
  padding: 58px 0 36px;
  overflow: hidden;
}

.process-container {
  text-align: center;
}

.process-container h3 {
  color: #13172c;
  font-size: clamp(1.2rem, 1.75vw, 1.62rem);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: 0.055em;
}

.process-container h3 strong {
  font-weight: 800;
}

.process-grid {
  width: min(100%, 620px);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1.08fr 0.82fr;
  gap: 78px;
  align-items: center;
}

.team-card {
  position: relative;
  min-height: 390px;
  border-radius: 22px;
  overflow: visible;
}

.team-card > img:first-child {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(20, 26, 55, 0.12);
}

.team-card-caption {
  position: absolute;
  left: 16px;
  bottom: 18px;
  z-index: 3;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.team-mascot {
  position: absolute;
  right: 28px;
  bottom: -34px;
  z-index: 4;
  width: 140px;
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(20, 24, 45, 0.18));
}

.benefits-list {
  display: grid;
  gap: 38px;
}

.benefit {
  min-height: 70px;
  width: 222px;
  padding: 14px 20px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.045em;
  box-shadow: 0 12px 24px rgba(20, 26, 55, 0.1);
}

.benefit-blue {
  background: #87a3d8;
}

.benefit-red {
  background: var(--red);
}

.benefit-gold {
  background: var(--gold);
}

.benefit-green {
  background: var(--green);
}

.small-gold-button {
  min-width: 190px;
  height: 30px;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #0e1020;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.small-gold-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(255, 178, 43, 0.28);
}

/* ============================= */
/* SOCIAL MEDIA */
/* ============================= */

.social-media-section {
  background: #dfe7f7;
  padding: 58px 0 44px;
  border-bottom: 5px solid #8faadc;
  overflow: hidden;
}

.social-media-container {
  width: min(1000px, calc(100% - 48px));
}

.social-media-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px;
  margin-bottom: 50px;
}

.social-media-header h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: #38368f;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.social-media-header div > p {
  margin-top: 10px;
  color: #414092;
  font-size: 1.28rem;
  font-weight: 400;
}

.social-media-copy {
  color: #343489;
  font-size: clamp(1.05rem, 1.65vw, 1.42rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.025em;
}

.social-media-copy strong {
  font-weight: 800;
}

.social-media-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  align-items: start;
}

.social-media-card {
  overflow: hidden;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(24, 28, 66, 0.18);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.social-media-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 42px rgba(24, 28, 66, 0.25);
}

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

.social-media-bottom {
  margin-top: 34px;
  text-align: center;
}

.social-media-bottom strong {
  display: block;
  color: #3a3b94;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.055em;
}

.social-media-bottom a {
  min-width: 270px;
  height: 30px;
  margin-top: 12px;
  padding: 0 22px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #414092;
  font-size: 1.03rem;
  font-weight: 400;
  box-shadow: 0 8px 18px rgba(32, 35, 85, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.social-media-bottom a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(32, 35, 85, 0.14);
}

/* ============================= */
/* TESTIMONIOS */
/* ============================= */

.testimonials-section {
  background: #8faadc;
  padding: 58px 0 66px;
  color: var(--white);
  overflow: hidden;
}

.testimonials-container {
  position: relative;
}

.testimonials-container h3 {
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.95rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.testimonials-slider {
  position: relative;
  margin-top: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-cards {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.testimonial-card {
  overflow: hidden;
  border-radius: 0 0 12px 12px;
  background: #e9eef9;
  color: #34368b;
  box-shadow: 0 18px 28px rgba(29, 35, 82, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(29, 35, 82, 0.3);
}

.testimonial-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}

.testimonial-body {
  min-height: 88px;
  padding: 15px 16px 16px;
  text-align: center;
}

.testimonial-body h4 {
  font-size: 0.96rem;
  line-height: 1;
  font-weight: 800;
  color: #33348c;
}

.testimonial-body p {
  margin-top: 10px;
  color: #6c6f95;
  font-size: 0.56rem;
  line-height: 1.35;
  font-style: italic;
}

.slider-arrow {
  position: absolute;
  top: 48%;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 200;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.22s ease, color 0.22s ease;
}

.slider-arrow:hover {
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow-left {
  left: 0;
}

.slider-arrow-right {
  right: 0;
}

.testimonials-bottom {
  width: min(100%, 860px);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 1fr 130px 1fr;
  align-items: center;
  gap: 28px;
}

.testimonials-bottom p {
  justify-self: start;
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.flag-mascot {
  justify-self: center;
  width: 120px;
  height: auto;
  filter: drop-shadow(0 12px 16px rgba(20, 24, 45, 0.18));
}

.testimonials-bottom .whatsapp-button {
  justify-self: end;
}
/* ============================= */
/* FOOTER GLOBAL */
/* ============================= */

.global-footer {
  background: #2c2490;
  border-top: 2px solid rgba(255, 255, 255, 0.9);
  color: var(--white);
  padding: 0;
}

.footer-container {
  width: min(var(--max), calc(100% - 48px));
  min-height: 205px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  align-items: center;
  gap: 56px;
}

/* Links izquierdos */
.footer-links {
  display: grid;
  gap: 18px;
  justify-self: start;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

/* Logo central */
.footer-brand {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  text-align: center;
  color: #ffffff;
}

.footer-brand img {
  width: 128px;
  max-width: none;
  height: auto;
  margin-bottom: 8px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.2));
}

.footer-brand strong {
  display: block;
  margin-top: 0;
  color: #ffffff;
  font-size: 1.26rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.footer-brand span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.46rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Redes derecha */
.footer-social {
  justify-self: end;
  width: min(100%, 360px);
}

.footer-social p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 400;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-social a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.social-icon {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #eef1ff;
  color: #5547ba;
  font-size: 1rem;
  line-height: 1;
  font-weight: 900;
  flex: 0 0 auto;
}

/* Responsive footer */
@media (max-width: 980px) {
  .footer-container {
    width: min(100% - 40px, var(--max));
    min-height: auto;
    padding: 42px 0;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 34px;
  }

  .footer-links,
  .footer-social,
  .footer-brand {
    justify-self: center;
  }

  .footer-brand {
    order: 1;
  }

  .footer-links {
    order: 2;
  }

  .footer-social {
    order: 3;
  }

  .footer-links a {
    margin: 0 auto;
  }

  .footer-social a {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .footer-container {
    width: min(100% - 32px, var(--max));
    padding: 36px 0;
  }

  .footer-brand {
    min-width: 0;
  }

  .footer-brand img {
    width: 108px;
  }

  .footer-brand strong {
    font-size: 1.12rem;
  }

  .footer-brand span {
    font-size: 0.42rem;
  }

  .footer-links {
    gap: 14px;
  }

  .footer-links a {
    font-size: 0.95rem;
  }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 230px 1fr 150px;
    padding: 0 5%;
  }

  .main-nav {
    gap: 24px;
  }

  .hero-content {
    padding-inline: 5%;
  }

  .slider-arrow-left {
    left: -12px;
  }

  .slider-arrow-right {
    right: -12px;
  }
}

@media (max-width: 980px) {
  .hero-section {
    min-height: auto;
  }

  .hero-background-image {
    object-position: 30% center;
  }

  .hero-section::after {
    background:
      linear-gradient(
        90deg,
        rgba(37, 28, 109, 0.44) 0%,
        rgba(38, 29, 118, 0.78) 48%,
        rgba(40, 31, 127, 1) 100%
      ),
      linear-gradient(
        180deg,
        rgba(12, 10, 42, 0.34) 0%,
        rgba(12, 10, 42, 0.08) 48%,
        rgba(12, 10, 42, 0.42) 100%
      );
  }

  .site-header {
    position: relative;
    height: auto;
    min-height: 120px;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand button"
      "nav nav";
    gap: 14px;
    padding: 22px 5% 0;
  }

  .brand {
    grid-area: brand;
  }

  .header-button {
    grid-area: button;
  }

  .main-nav {
    grid-area: nav;
    justify-content: flex-start;
    gap: 22px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    flex: 0 0 auto;
    font-size: 0.78rem;
  }

  .hero-content {
    min-height: auto;
    padding: 56px 5% 86px;
    justify-content: center;
  }

  .hero-copy {
    margin-top: 0;
    padding: 28px;
    border-radius: 26px;
    background: rgba(20, 16, 70, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .service-board {
    grid-template-columns: 1fr;
    width: min(100%, 590px);
  }

  .service-card-blue {
    min-height: auto;
  }

  .mini-flag-img {
    top: -54px;
    left: 4px;
    width: 70px;
  }

  .service-seal-img {
    top: -28px;
    right: -20px;
    width: 78px;
  }

  .services-container {
    padding-bottom: 145px;
  }

  .bottom-patriotic-seal {
    width: 136px;
    bottom: -38px;
  }

  .process-grid {
    gap: 38px;
  }

  .social-media-header {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .instagram-posts {
    grid-template-columns: repeat(2, 1fr);
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
    width: min(100%, 620px);
  }

  .testimonials-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonials-bottom p,
  .testimonials-bottom .whatsapp-button,
  .flag-mascot {
    justify-self: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    justify-self: center;
  }

  .footer-links {
    order: 2;
  }

  .footer-brand {
    order: 1;
  }

  .footer-social {
    order: 3;
  }
}

@media (max-width: 720px) {
  .section-container,
  .footer-container,
  .social-media-container {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "button"
      "nav";
    padding-top: 18px;
  }

  .brand {
    justify-self: center;
  }

  .brand-name {
    font-size: 1.48rem;
  }

  .header-button {
    justify-self: center;
    width: 100%;
    max-width: 220px;
    height: 34px;
    border-radius: 8px;
  }

  .hero-content {
    padding: 44px 16px 70px;
  }

  .hero-copy {
    padding: 24px 20px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-copy h2 {
    margin-top: 22px;
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .hero-copy p {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-copy strong {
    margin-top: 30px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
    height: 44px;
    border-radius: 10px;
  }

  .services-showcase {
    padding-top: 64px;
  }

  .services-container {
    padding-bottom: 118px;
  }

  .section-eyebrow {
    font-size: 1.18rem;
    letter-spacing: 0.07em;
  }

  .service-board {
    margin-top: 60px;
  }

  .service-pill {
    min-height: 88px;
    padding: 20px 24px;
  }

  .service-card-blue {
    padding: 28px 26px;
  }

  .mini-flag-img {
    top: -49px;
    left: 8px;
    width: 62px;
  }

  .service-seal-img {
    top: -24px;
    right: -8px;
    width: 66px;
  }

  .services-actions {
    margin-top: 44px;
    gap: 16px;
  }

  .bottom-patriotic-seal {
    width: 112px;
    bottom: -32px;
  }

  .soft-button,
  .whatsapp-button {
    width: 100%;
    min-width: 0;
    font-size: 1.05rem;
  }

  .process-section {
    padding-top: 48px;
  }

  .process-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .team-card,
  .team-card > img:first-child {
    min-height: auto;
    height: auto;
  }

  .benefits-list {
    gap: 18px;
    justify-items: center;
  }

  .benefit {
    width: min(100%, 280px);
  }

  .social-media-section {
    padding: 48px 0 44px;
  }

  .instagram-posts {
    grid-template-columns: 1fr;
    width: min(100%, 320px);
    gap: 28px;
  }

  .social-media-bottom a {
    width: 100%;
    min-width: 0;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
    width: min(100%, 320px);
  }

  .slider-arrow {
    display: none;
  }

  .testimonials-bottom {
    margin-top: 48px;
  }

  .footer-links {
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .service-pill span {
    font-size: 2.55rem;
  }

  .service-pill small {
    font-size: 1.85rem;
  }

  .service-card-blue strong {
    font-size: 2.8rem;
  }

  .mini-flag-img {
    width: 56px;
    top: -44px;
  }

  .service-seal-img {
    width: 58px;
    top: -20px;
    right: -4px;
  }

  .bottom-patriotic-seal {
    width: 100px;
    bottom: -28px;
  }

  .team-mascot {
    width: 110px;
    right: 18px;
  }
}
/* ========================================================= */
/* FIX DEFINITIVO - SERVICIOS DESTACADOS BALANCEADO */
/* ========================================================= */

.services-showcase {
  background: #dfe7f7;
  padding: 74px 0 0 !important;
  overflow: hidden;
}

.services-container {
  position: relative;
  width: min(940px, calc(100% - 48px)) !important;
  padding-bottom: 138px !important;
  text-align: center;
}

.section-eyebrow {
  max-width: 680px;
  margin: 0 auto;
  color: #2a2354;
  font-size: 1.46rem !important;
  line-height: 1.25 !important;
  font-weight: 400;
  letter-spacing: 0.06em !important;
}

.service-board {
  position: relative;
  width: min(100%, 770px) !important;
  margin: 64px auto 0 !important;
  display: grid;
  grid-template-columns: 1.18fr 0.84fr !important;
  gap: 22px !important;
  align-items: stretch;
}

.service-left {
  position: relative;
  display: grid !important;
  grid-template-rows: 154px 92px !important;
  gap: 20px !important;
}

.mini-flag-img {
  position: absolute;
  top: -48px !important;
  left: 8px !important;
  z-index: 6;
  width: 66px !important;
  height: auto;
  object-fit: contain;
  transform: rotate(-18deg);
  filter: drop-shadow(0 10px 14px rgba(20, 22, 60, 0.16));
  pointer-events: none;
  user-select: none;
}

.service-pill,
.service-card-blue {
  border-radius: 16px !important;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(42, 35, 110, 0.17) !important;
}

.service-pill {
  min-height: 0 !important;
  height: 100% !important;
  padding: 22px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  text-align: left !important;
  overflow: hidden !important;
  font-family: "Playfair Display", Georgia, serif;
}

.service-pill span {
  display: block !important;
  width: 100% !important;
  font-size: 4.35rem !important;
  line-height: 0.86 !important;
  font-weight: 900 !important;
  letter-spacing: 0.015em;
  white-space: nowrap !important;
}

.service-pill small {
  display: block !important;
  width: 100% !important;
  margin-top: 12px !important;
  font-size: 2.85rem !important;
  line-height: 0.9 !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em;
  white-space: nowrap !important;
}

.service-pill-gold {
  justify-content: center !important;
}

.service-pill-gold span {
  font-size: 3.5rem !important;
  line-height: 0.9 !important;
  white-space: nowrap !important;
}

.service-card-blue {
  position: relative;
  height: 266px !important;
  min-height: 266px !important;
  padding: 30px 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: #3a3792;
  text-align: left !important;
  overflow: visible !important;
}

.service-card-blue strong {
  position: relative;
  z-index: 2;
  display: block !important;
  max-width: 100%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.5rem !important;
  line-height: 0.84 !important;
  font-weight: 900 !important;
  letter-spacing: 0.018em;
  color: #ffffff;
}

.service-seal-img {
  position: absolute;
  top: -31px !important;
  right: -31px !important;
  z-index: 6;
  width: 76px !important;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(20, 24, 80, 0.22));
  pointer-events: none;
  user-select: none;
}

.services-actions {
  position: relative;
  z-index: 8;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 30px !important;
  margin-top: 58px !important;
  flex-wrap: wrap;
}

.soft-button {
  min-width: 300px !important;
  height: 42px !important;
  padding: 0 26px !important;
  border-radius: 999px;
  font-size: 1.18rem !important;
  font-weight: 600;
  gap: 12px;
}

.soft-button span {
  font-size: 1.45rem !important;
}

.whatsapp-button {
  min-width: 315px !important;
  height: 42px !important;
  padding: 0 28px !important;
  border-radius: 999px;
  font-size: 1.16rem !important;
  font-weight: 600;
  gap: 11px;
}

.wa-icon {
  width: 22px !important;
  height: 22px !important;
}

.bottom-patriotic-seal {
  position: absolute;
  left: 50%;
  bottom: -54px !important;
  z-index: 4;
  width: 126px !important;
  height: auto;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 14px 20px rgba(20, 24, 80, 0.16));
  pointer-events: none;
  user-select: none;
}

/* Tablets */
@media (max-width: 980px) {
  .services-container {
    width: min(760px, calc(100% - 40px)) !important;
    padding-bottom: 126px !important;
  }

  .section-eyebrow {
    font-size: 1.28rem !important;
  }

  .service-board {
    width: min(100%, 610px) !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .service-left {
    grid-template-rows: 140px 84px !important;
  }

  .service-pill span {
    font-size: 3.8rem !important;
  }

  .service-pill small {
    font-size: 2.45rem !important;
  }

  .service-pill-gold span {
    font-size: 3rem !important;
  }

  .service-card-blue {
    height: 220px !important;
    min-height: 220px !important;
  }

  .service-card-blue strong {
    font-size: 3.25rem !important;
    line-height: 0.86 !important;
  }

  .mini-flag-img {
    width: 60px !important;
    top: -43px !important;
  }

  .service-seal-img {
    width: 68px !important;
    top: -25px !important;
    right: -12px !important;
  }

  .bottom-patriotic-seal {
    width: 112px !important;
    bottom: -48px !important;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .services-showcase {
    padding-top: 54px !important;
  }

  .services-container {
    width: min(100% - 32px, 520px) !important;
    padding-bottom: 108px !important;
  }

  .section-eyebrow {
    font-size: 1.08rem !important;
    letter-spacing: 0.035em !important;
  }

  .service-board {
    margin-top: 50px !important;
  }

  .service-left {
    grid-template-rows: 116px 76px !important;
    gap: 16px !important;
  }

  .service-pill {
    padding: 18px 22px !important;
  }

  .service-pill span {
    font-size: 3rem !important;
  }

  .service-pill small {
    margin-top: 8px !important;
    font-size: 1.9rem !important;
  }

  .service-pill-gold span {
    font-size: 2.38rem !important;
  }

  .service-card-blue {
    min-height: 180px !important;
    height: 180px !important;
    padding: 24px 24px !important;
  }

  .service-card-blue strong {
    font-size: 2.6rem !important;
    line-height: 0.88 !important;
  }

  .services-actions {
    margin-top: 42px !important;
    gap: 14px !important;
  }

  .soft-button,
  .whatsapp-button {
    width: 100% !important;
    min-width: 0 !important;
    height: 40px !important;
    font-size: 1rem !important;
  }

  .bottom-patriotic-seal {
    width: 102px !important;
    bottom: -42px !important;
  }
}

/* Mobile pequeño */
@media (max-width: 420px) {
  .service-pill span {
    font-size: 2.55rem !important;
  }

  .service-pill small {
    font-size: 1.58rem !important;
  }

  .service-pill-gold span {
    font-size: 2rem !important;
  }

  .service-card-blue {
    height: 165px !important;
    min-height: 165px !important;
  }

  .service-card-blue strong {
    font-size: 2.22rem !important;
  }

  .mini-flag-img {
    width: 52px !important;
    top: -38px !important;
  }

  .service-seal-img {
    width: 56px !important;
    top: -19px !important;
    right: -4px !important;
  }
}

/* ========================================================= */
/* HOME MOBILE FINAL - MOCKUPS HEDMONT LÓPEZ */
/* Pegar al final del home.css. Solo afecta móvil. */
/* ========================================================= */

@media (max-width: 720px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    background: #ffffff !important;
  }

  .section-container,
  .services-container,
  .process-container,
  .social-media-container,
  .testimonials-container,
  .footer-container {
    width: min(100% - 32px, 430px) !important;
    max-width: 430px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* HERO MOBILE */
  .hero-section {
    min-height: 524px !important;
    height: 524px !important;
    background: #2c257f !important;
    overflow: hidden !important;
  }

  .hero-background-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 44% center !important;
    opacity: 1 !important;
  }

  .hero-section::before {
    z-index: 1 !important;
    background: rgba(10, 8, 38, 0.12) !important;
  }

  .hero-section::after {
    z-index: 2 !important;
    background:
      linear-gradient(
        180deg,
        rgba(44, 37, 127, 0.24) 0%,
        rgba(44, 37, 127, 0.46) 38%,
        rgba(44, 37, 127, 0.92) 78%,
        rgba(44, 37, 127, 1) 100%
      ),
      linear-gradient(
        90deg,
        rgba(44, 37, 127, 0.42) 0%,
        rgba(44, 37, 127, 0.12) 45%,
        rgba(44, 37, 127, 0.64) 100%
      ) !important;
  }

  .site-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 30 !important;
    width: 100% !important;
    height: 66px !important;
    min-height: 66px !important;
    padding: 13px 34px 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    background: transparent !important;
    gap: 0 !important;
  }

  .brand {
    justify-self: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .brand-name {
    font-size: 1.34rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    color: #ffffff !important;
  }

  .brand-subtitle {
    margin-top: 4px !important;
    font-size: 0.5rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 0.01em !important;
  }

  .main-nav,
  .header-button {
    display: none !important;
  }

  .site-header::after {
    content: "" !important;
    position: absolute !important;
    right: 38px !important;
    top: 22px !important;
    width: 29px !important;
    height: 22px !important;
    background:
      linear-gradient(#ffffff, #ffffff) 0 0 / 100% 1px no-repeat,
      linear-gradient(#ffffff, #ffffff) 0 10px / 100% 1px no-repeat,
      linear-gradient(#ffffff, #ffffff) 0 20px / 100% 1px no-repeat !important;
    opacity: 0.85 !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 5 !important;
    min-height: 524px !important;
    height: 524px !important;
    width: min(100% - 32px, 430px) !important;
    max-width: 430px !important;
    margin: 0 auto !important;
    padding: 118px 0 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    text-align: center !important;
    color: #ffffff !important;
  }

  .hero-copy h1 {
    width: min(100%, 350px) !important;
    margin: 0 auto !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 2rem !important;
    line-height: 0.98 !important;
    font-weight: 900 !important;
    letter-spacing: 0.015em !important;
    text-align: center !important;
    text-shadow: 0 12px 26px rgba(0, 0, 0, 0.25) !important;
  }

  .hero-copy h2 {
    width: min(100%, 350px) !important;
    margin: 7px auto 0 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 1.35rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    color: var(--gold) !important;
    text-align: center !important;
    letter-spacing: 0.01em !important;
  }

  .hero-copy p {
    width: min(100%, 330px) !important;
    margin: 28px auto 0 !important;
    color: #ffffff !important;
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    text-align: center !important;
    letter-spacing: 0.005em !important;
  }

  .hero-copy strong {
    display: block !important;
    width: min(100%, 350px) !important;
    margin: 64px auto 0 !important;
    color: #ffffff !important;
    font-size: 1.03rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
  }

  .hero-actions {
    width: min(100%, 392px) !important;
    margin: 24px auto 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 56px !important;
    align-items: center !important;
  }

  .btn {
    width: 100% !important;
    min-width: 0 !important;
    height: 45px !important;
    border-radius: 4px !important;
    font-size: 1.12rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
  }

  .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.62) !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.015) !important;
  }

  .btn-gold {
    border-color: var(--gold) !important;
    background: var(--gold) !important;
    color: #11112b !important;
  }

  /* SERVICIOS DESTACADOS MOBILE */
  .services-showcase {
    background: #dfe7f7 !important;
    padding: 48px 0 0 !important;
    overflow: hidden !important;
  }

  .services-container {
    padding-bottom: 150px !important;
    text-align: center !important;
  }

  .section-eyebrow {
    max-width: 360px !important;
    margin: 0 auto !important;
    color: #2a2354 !important;
    font-size: 1.08rem !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    letter-spacing: 0.025em !important;
    text-align: center !important;
  }

  .service-board {
    width: min(100%, 302px) !important;
    margin: 50px auto 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 11px !important;
    align-items: center !important;
  }

  .service-left {
    width: 100% !important;
    display: grid !important;
    grid-template-rows: 121px 64px !important;
    gap: 12px !important;
  }

  .mini-flag-img {
    top: -38px !important;
    left: -6px !important;
    width: 51px !important;
    transform: rotate(-18deg) !important;
    z-index: 10 !important;
  }

  .service-pill {
    width: 100% !important;
    min-height: 0 !important;
    height: 100% !important;
    border-radius: 9px !important;
    padding: 14px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }

  .service-pill span {
    width: 100% !important;
    display: block !important;
    font-size: 3.35rem !important;
    line-height: 0.82 !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  .service-pill small {
    width: 100% !important;
    display: block !important;
    margin-top: 8px !important;
    font-size: 1.8rem !important;
    line-height: 0.9 !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  .service-pill-gold span {
    font-size: 2.55rem !important;
    line-height: 0.9 !important;
  }

  .service-card-blue {
    width: 100% !important;
    height: 221px !important;
    min-height: 221px !important;
    border-radius: 9px !important;
    padding: 22px 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    overflow: visible !important;
    box-shadow: none !important;
  }

  .service-card-blue strong {
    display: block !important;
    width: 100% !important;
    color: #ffffff !important;
    font-size: 3rem !important;
    line-height: 0.87 !important;
    font-weight: 900 !important;
    letter-spacing: 0.015em !important;
    text-align: left !important;
  }

  .service-seal-img {
    top: -19px !important;
    right: -17px !important;
    width: 55px !important;
    z-index: 12 !important;
  }

  .services-actions {
    width: min(100%, 302px) !important;
    margin: 40px auto 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    justify-items: center !important;
  }

  .soft-button,
  .whatsapp-button {
    width: 100% !important;
    min-width: 0 !important;
    height: 31px !important;
    min-height: 31px !important;
    border-radius: 999px !important;
    padding: 0 16px !important;
    font-size: 0.94rem !important;
    line-height: 1 !important;
    font-weight: 600 !important;
  }

  .soft-button {
    background: #c8cff1 !important;
    color: #353485 !important;
  }

  .soft-button span {
    font-size: 1.12rem !important;
  }

  .whatsapp-button {
    background: #078f46 !important;
    color: #ffffff !important;
    gap: 8px !important;
  }

  .wa-icon {
    width: 18px !important;
    height: 18px !important;
  }

  .bottom-patriotic-seal {
    width: 102px !important;
    bottom: -43px !important;
    z-index: 5 !important;
  }

  /* PROCESO / EQUIPO MOBILE */
  .process-section {
    background: #f6f7fb !important;
    padding: 50px 0 35px !important;
    overflow: hidden !important;
  }

  .process-container h3 {
    max-width: 380px !important;
    margin: 0 auto !important;
    color: #17172f !important;
    font-size: 0.96rem !important;
    line-height: 1.22 !important;
    font-weight: 400 !important;
    text-align: center !important;
    letter-spacing: 0.01em !important;
  }

  .process-container h3 strong {
    font-weight: 900 !important;
  }

  .process-grid {
    width: min(100%, 400px) !important;
    margin: 30px auto 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 140px !important;
    gap: 24px !important;
    align-items: center !important;
  }

  .team-card {
    width: 100% !important;
    min-height: 0 !important;
    border-radius: 16px !important;
  }

  .team-card > img:first-child {
    width: 100% !important;
    height: 190px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 16px !important;
    box-shadow: none !important;
  }

  .team-card-caption {
    left: 10px !important;
    bottom: 10px !important;
    font-size: 0.68rem !important;
    line-height: 1 !important;
  }

  .team-mascot {
    right: 14px !important;
    bottom: -32px !important;
    width: 95px !important;
  }

  .benefits-list {
    display: grid !important;
    gap: 19px !important;
    justify-items: stretch !important;
  }

  .benefit {
    width: 140px !important;
    min-height: 45px !important;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    font-size: 0.79rem !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em !important;
    box-shadow: none !important;
  }

  .small-gold-button {
    width: 160px !important;
    min-width: 160px !important;
    height: 25px !important;
    margin: 31px auto 0 !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    font-size: 0.63rem !important;
    font-weight: 800 !important;
  }

  /* SOCIAL MEDIA MOBILE */
  .social-media-section {
    background: #dfe7f7 !important;
    padding: 54px 0 39px !important;
    border-bottom: 0 !important;
    overflow: hidden !important;
  }

  .social-media-container {
    position: relative !important;
    width: min(100% - 32px, 430px) !important;
  }

  .social-media-header {
    margin: 0 0 28px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    text-align: center !important;
  }

  .social-media-header h3 {
    color: #38368f !important;
    font-size: 3rem !important;
    line-height: 0.9 !important;
    font-weight: 900 !important;
    text-align: center !important;
  }

  .social-media-header div > p {
    margin-top: 7px !important;
    color: #414092 !important;
    font-size: 1.02rem !important;
    line-height: 1 !important;
    text-align: center !important;
  }

  .social-media-copy {
    width: min(100%, 320px) !important;
    margin: 0 auto !important;
    color: #343489 !important;
    font-size: 1rem !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }

  .social-media-cards {
    position: relative !important;
    width: min(100%, 245px) !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .social-media-card {
    width: 100% !important;
    border-radius: 5px !important;
    box-shadow: 0 14px 26px rgba(24, 28, 66, 0.18) !important;
  }

  .social-media-card:nth-child(n + 2) {
    display: none !important;
  }

  .social-media-card img {
    width: 100% !important;
    height: auto !important;
  }

  .social-media-cards::before,
  .social-media-cards::after {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 3.4rem !important;
    line-height: 1 !important;
    font-family: Arial, sans-serif !important;
    font-weight: 200 !important;
    text-shadow: 0 8px 18px rgba(42, 35, 110, 0.18) !important;
    z-index: 4 !important;
    pointer-events: none !important;
  }

  .social-media-cards::before {
    content: "‹" !important;
    left: -57px !important;
  }

  .social-media-cards::after {
    content: "›" !important;
    right: -57px !important;
  }

  .social-media-bottom {
    margin-top: 31px !important;
    text-align: center !important;
  }

  .social-media-bottom strong {
    color: #3a3b94 !important;
    font-size: 1.23rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
  }

  .social-media-bottom a {
    width: 220px !important;
    min-width: 0 !important;
    height: 24px !important;
    margin-top: 10px !important;
    border-radius: 4px !important;
    font-size: 0.78rem !important;
    box-shadow: none !important;
  }

  /* TESTIMONIOS MOBILE */
  .testimonials-section {
    background: #8faadc !important;
    padding: 49px 0 48px !important;
    overflow: hidden !important;
  }

  .testimonials-container {
    width: min(100% - 32px, 430px) !important;
  }

  .testimonials-container h3 {
    width: min(100%, 360px) !important;
    margin: 0 auto !important;
    color: #ffffff !important;
    font-size: 1.78rem !important;
    line-height: 1.04 !important;
    font-weight: 900 !important;
    text-align: center !important;
    letter-spacing: 0.025em !important;
  }

  .testimonials-slider {
    margin-top: 34px !important;
    position: relative !important;
  }

  .testimonial-cards {
    width: min(100%, 250px) !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .testimonial-card {
    width: 100% !important;
    border-radius: 0 0 13px 13px !important;
    box-shadow: 0 18px 28px rgba(29, 35, 82, 0.24) !important;
  }

  .testimonial-card:nth-child(n + 2) {
    display: none !important;
  }

  .testimonial-card img {
    height: 262px !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .testimonial-body {
    min-height: 116px !important;
    padding: 24px 18px 18px !important;
    background: #ffffff !important;
  }

  .testimonial-body h4 {
    color: #f28a00 !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
  }

  .testimonial-body p {
    max-width: 190px !important;
    margin: 12px auto 0 !important;
    color: #8a8d9a !important;
    font-size: 0.66rem !important;
    line-height: 1.35 !important;
  }

  .slider-arrow {
    display: grid !important;
    position: absolute !important;
    top: 48% !important;
    transform: translateY(-50%) !important;
    width: 34px !important;
    height: 54px !important;
    border: 0 !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 3.5rem !important;
    line-height: 1 !important;
    font-weight: 200 !important;
    z-index: 10 !important;
  }

  .slider-arrow-left {
    left: 9px !important;
  }

  .slider-arrow-right {
    right: 9px !important;
  }

  .testimonials-bottom {
    width: min(100%, 350px) !important;
    margin: 39px auto 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 17px !important;
    text-align: center !important;
    justify-items: center !important;
  }

  .testimonials-bottom p {
    justify-self: center !important;
    color: #ffffff !important;
    font-size: 1.28rem !important;
    line-height: 1.15 !important;
    font-weight: 500 !important;
    letter-spacing: 0.025em !important;
  }

  .flag-mascot {
    display: none !important;
  }

  .testimonials-bottom .whatsapp-button {
    width: 218px !important;
    height: 30px !important;
    min-width: 218px !important;
    font-size: 0.92rem !important;
    justify-self: center !important;
  }

  /* FOOTER MOBILE */
  .global-footer {
    background: #2c2490 !important;
    padding: 31px 0 31px !important;
    border-top: 0 !important;
  }

  .footer-container {
    width: min(100% - 80px, 360px) !important;
    max-width: 360px !important;
    min-height: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas:
      "links brand"
      "social social" !important;
    gap: 29px 18px !important;
    align-items: center !important;
    text-align: left !important;
  }

  .footer-links {
    grid-area: links !important;
    justify-self: start !important;
    display: grid !important;
    gap: 17px !important;
  }

  .footer-links a {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.94rem !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    letter-spacing: 0.03em !important;
  }

  .footer-brand {
    grid-area: brand !important;
    justify-self: end !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-brand img {
    width: 122px !important;
    margin-bottom: 5px !important;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.2)) !important;
  }

  .footer-brand strong {
    font-size: 1rem !important;
    line-height: 1 !important;
  }

  .footer-brand span {
    font-size: 0.36rem !important;
    line-height: 1 !important;
  }

  .footer-social {
    grid-area: social !important;
    justify-self: stretch !important;
    width: 100% !important;
    padding-top: 28px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.72) !important;
    text-align: center !important;
  }

  .footer-social p {
    margin-bottom: 22px !important;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    letter-spacing: 0.03em !important;
  }

  .footer-social a {
    justify-content: center !important;
    margin-top: 12px !important;
    gap: 11px !important;
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
  }

  .social-icon {
    width: 22px !important;
    height: 22px !important;
    border-radius: 6px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 420px) {
  .section-container,
  .services-container,
  .process-container,
  .social-media-container,
  .testimonials-container {
    width: min(100% - 28px, 390px) !important;
  }

  .site-header {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .site-header::after {
    right: 24px !important;
  }

  .hero-copy h1 {
    font-size: 1.78rem !important;
  }

  .hero-copy h2 {
    font-size: 1.18rem !important;
  }

  .hero-copy p {
    max-width: 292px !important;
    font-size: 0.7rem !important;
  }

  .hero-copy strong {
    margin-top: 58px !important;
    font-size: 0.92rem !important;
  }

  .hero-actions {
    gap: 24px !important;
  }

  .btn {
    height: 41px !important;
    font-size: 1rem !important;
  }

  .service-board,
  .services-actions {
    width: min(100%, 275px) !important;
  }

  .service-left {
    grid-template-rows: 111px 60px !important;
  }

  .service-pill span {
    font-size: 3rem !important;
  }

  .service-pill small {
    font-size: 1.6rem !important;
  }

  .service-pill-gold span {
    font-size: 2.25rem !important;
  }

  .service-card-blue {
    height: 206px !important;
    min-height: 206px !important;
  }

  .service-card-blue strong {
    font-size: 2.7rem !important;
  }

  .process-grid {
    grid-template-columns: minmax(0, 1fr) 132px !important;
    gap: 18px !important;
  }

  .team-card > img:first-child {
    height: 176px !important;
  }

  .benefit {
    width: 132px !important;
    font-size: 0.72rem !important;
  }

  .social-media-header h3 {
    font-size: 2.65rem !important;
  }

  .social-media-cards {
    width: min(100%, 230px) !important;
  }

  .social-media-cards::before {
    left: -44px !important;
  }

  .social-media-cards::after {
    right: -44px !important;
  }

  .testimonial-cards {
    width: min(100%, 235px) !important;
  }

  .testimonial-card img {
    height: 248px !important;
  }

  .slider-arrow-left {
    left: 2px !important;
  }

  .slider-arrow-right {
    right: 2px !important;
  }

  .footer-container {
    width: min(100% - 56px, 340px) !important;
  }

  .footer-brand img {
    width: 112px !important;
  }
}
/* ========================================================= */
/* HOME FIX - CENTRAR CARD "ASILOS POLÍTICOS" */
/* Pegar al final de home.css */
/* ========================================================= */

/* WEB / ESCRITORIO */
.service-left {
  align-items: center !important;
  overflow: visible !important;
}

.service-pill.service-pill-gold {
  width: min(100%, 520px) !important;
  max-width: 520px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-self: center !important;
  justify-self: center !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.service-pill.service-pill-gold span {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: clip !important;
}

/* MÓVIL */
@media (max-width: 720px) {
  .service-left {
    width: min(100%, 322px) !important;
    max-width: 322px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center !important;
    justify-items: center !important;
    overflow: visible !important;
  }

  .service-pill.service-pill-gold {
    width: min(100%, 266px) !important;
    max-width: 266px !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
  }

  .service-pill.service-pill-gold span {
    font-size: clamp(1.65rem, 8.2vw, 2.25rem) !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 390px) {
  .service-pill.service-pill-gold {
    width: min(100%, 250px) !important;
    max-width: 250px !important;
  }

  .service-pill.service-pill-gold span {
    font-size: clamp(1.48rem, 7.7vw, 2rem) !important;
  }
}
/* ========================================================= */
/* HOME FIX WEB - CARD AMARILLA "ASILOS POLÍTICOS" */
/* Solo escritorio/tablet grande. No toca móvil. */
/* ========================================================= */

@media (min-width: 721px) {
  .service-left {
    width: 520px !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center !important;
    justify-items: center !important;
    overflow: visible !important;
  }

  .service-pill.service-pill-gold {
    width: 100% !important;
    max-width: 520px !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 34px !important;
    padding-right: 34px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    text-align: center !important;
    transform: none !important;
  }

  .service-pill.service-pill-gold span {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    color: #ffffff !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: unset !important;
    font-size: clamp(3.55rem, 4.8vw, 5.35rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.025em !important;
  }
}
/* ========================================================= */
/* HOME FIX FINAL - SOLO TEXTO "ASILOS POLÍTICOS" EN WEB */
/* ========================================================= */

@media (min-width: 721px) {
  .service-pill.service-pill-gold span {
    font-size: clamp(2.9rem, 4vw, 4.45rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.035em !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-align: center !important;
  }
}