/* ============================================================
   AGIT — Agencia de Marketing Digital
   styles.css
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Brand */
  --primary-1: #ff3951;
  --primary-2: #f66688;
  --secondary-1: #ffc226;
  --secondary-2: #6a35ff;
  --secondary-3: #3f80fd;
  --secondary-4: #ff8139;
  --secondary-5: #3fcffd;

  /* Neutrals */
  --neutral-800: #14142b;
  --neutral-700: #4e4b66;
  --neutral-600: #6e7191;
  --neutral-500: #000000;
  --neutral-400: #d9dbe9;
  --neutral-300: #eff0f6;
  --neutral-200: #f5f7fc;
  --neutral-100: #ffffff;

  /* Shadows */
  --shadow-button-primary: 0 8px 24px rgba(255, 57, 81, 0.28);
  --shadow-button-secondary: 0 4px 12px rgba(20, 20, 43, 0.06);
  --shadow-card: 0 8px 32px rgba(20, 20, 43, 0.08);
  --shadow-1: 0 2px 8px rgba(20, 20, 43, 0.03);

  /* Layout */
  --max-width: 1200px;
  --container-px: 1.5rem;
  --border-radius-card: 16px;
  --border-radius-pill: 100px;
  --border-radius-sm: 8px;

  /* Typography */
  --font-base: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --transition: 0.2s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-700);
  background-color: var(--neutral-100);
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-base);
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: var(--font-base);
}

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  padding-block: 5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-1);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.badge::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: var(--primary-1);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--neutral-800);
  line-height: 1.15;
}

.section-title--red {
  color: var(--primary-1);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-pill);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--primary-1);
  color: var(--neutral-100);
  box-shadow: var(--shadow-button-primary);
}

.btn--outline {
  background: transparent;
  color: var(--primary-1);
  border: 1.5px solid var(--primary-1);
}

.btn--outline:hover {
  background: var(--primary-1);
  color: var(--neutral-100);
}

.btn--white {
  background: var(--neutral-100);
  color: var(--primary-1);
  box-shadow: var(--shadow-button-secondary);
}

/* ── Stars ──────────────────────────────────────────────────── */
.stars {
  display: flex;
  gap: 0.2rem;
  color: var(--secondary-1);
  font-size: 1.1rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--neutral-100);
  border-bottom: 1px solid var(--neutral-300);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 2rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 2.25rem;
  width: auto;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__link {
  padding: 0.4rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--neutral-700);
  border-radius: var(--border-radius-sm);
  transition: color var(--transition), background var(--transition);
}

.navbar__link:hover {
  color: var(--neutral-800);
  background: var(--neutral-200);
}

.navbar__cta {
  flex-shrink: 0;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  padding: 0.25rem;
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav open state */
.navbar.nav--open .navbar__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar.nav--open .navbar__hamburger span:nth-child(2) {
  opacity: 0;
}
.navbar.nav--open .navbar__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-block: 6rem 4rem;
  text-align: center;
  background: var(--neutral-100);
}

.hero__inner {
  max-width: 700px;
  margin-inline: auto;
}

.hero__badge {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-1);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--neutral-800);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--neutral-600);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* ============================================================
   LOGOS STRIP
   ============================================================ */
.logos {
  padding-block: 3.5rem;
  background: var(--neutral-100);
  overflow: hidden;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - 3rem)); }
}

.logos__marquee {
  display: flex;
  width: 100%;
}

.logos__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-shrink: 0;
  animation: marquee-scroll 45s linear infinite;
  padding-right: 3rem;
}

.logos__marquee:hover .logos__track {
  animation-play-state: paused;
}

.logos__item {
  height: 3.5rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logos__item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* ============================================================
   PLATAFORMAS (Google / Facebook / LinkedIn)
   ============================================================ */
.plataformas {
  padding-block: 4rem;
  background: linear-gradient(180deg, var(--neutral-100) 0%, var(--neutral-200) 50%, var(--neutral-100) 100%);
}

.plataformas__illustration {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 3rem;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius-card);
  background: linear-gradient(135deg, var(--neutral-200) 0%, var(--neutral-300) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.plataformas__illustration-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
}

.plataformas__chart {
  background: var(--neutral-100);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.75rem;
  gap: 0.35rem;
  overflow: hidden;
}

.plataformas__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60%;
}

.plataformas__bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-height: 4px;
}

.plataformas__bar:nth-child(1) { height: 40%; background: var(--secondary-1); }
.plataformas__bar:nth-child(2) { height: 65%; background: var(--primary-1); }
.plataformas__bar:nth-child(3) { height: 50%; background: var(--secondary-1); }
.plataformas__bar:nth-child(4) { height: 80%; background: var(--primary-1); }
.plataformas__bar:nth-child(5) { height: 55%; background: var(--secondary-1); }
.plataformas__bar:nth-child(6) { height: 90%; background: var(--primary-1); }
.plataformas__bar:nth-child(7) { height: 70%; background: var(--secondary-4); }

.plataformas__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.plataformas__dots {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.plataformas__line-chart {
  background: var(--neutral-100);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plataformas__line-chart svg {
  width: 100%;
  height: 60px;
}

.plataformas__donut {
  background: var(--neutral-100);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.plataformas__donut-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 8px solid var(--neutral-300);
  border-top-color: var(--primary-1);
  border-right-color: var(--secondary-3);
}

.plataformas__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}

.plataforma-card {
  background: var(--neutral-100);
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--neutral-300);
}

.plataforma-card__logo {
  height: 2rem;
  margin-inline: auto;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.plataforma-card__text {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.plataforma-card .stars {
  justify-content: center;
}

/* Google logo colors */
.google-logo {
  font-family: var(--font-base);
  font-size: 1.5rem;
  font-weight: 700;
}
.google-logo .g { color: #4285F4; }
.google-logo .o1 { color: #EA4335; }
.google-logo .o2 { color: #FBBC05; }
.google-logo .g2 { color: #4285F4; }
.google-logo .l { color: #34A853; }
.google-logo .e { color: #EA4335; }

/* Facebook logo */
.facebook-logo {
  color: #1877F2;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* LinkedIn logo */
.linkedin-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 1rem;
  font-weight: 700;
  color: #0A66C2;
}
.linkedin-box {
  background: #0A66C2;
  color: white;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.servicios {
  padding-block: 5rem;
  background: var(--neutral-100);
}

.servicios__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.servicios__title-group {
  display: inline;
}

.servicios__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.servicio-card {
  background: var(--neutral-100);
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--transition), transform var(--transition);
}

.servicio-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.servicio-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.servicio-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.servicio-card__desc {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.servicio-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.servicio-card__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--neutral-700);
}

.checkmark {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 1px;
  color: white;
}

.servicios__cta {
  text-align: center;
}

.servicios__link {
  color: var(--primary-1);
  font-weight: 700;
  font-size: 0.9375rem;
  border-bottom: 1.5px solid var(--primary-1);
  padding-bottom: 1px;
  transition: opacity var(--transition);
}

.servicios__link:hover {
  opacity: 0.75;
}

/* ============================================================
   PROCESO
   ============================================================ */
.proceso {
  padding-block: 5rem;
  background: var(--neutral-200);
}

.proceso__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.proceso__left {
  position: sticky;
  top: 6rem;
}

.proceso__left .badge {
  margin-bottom: 1rem;
}

.proceso__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-1);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.proceso__desc {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.proceso__steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.proceso-step {
  background: var(--neutral-100);
  border-radius: var(--border-radius-card);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--neutral-300);
}

.proceso-step__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.proceso-step__content {
  flex: 1;
}

.proceso-step__number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neutral-600);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.proceso-step__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 0.375rem;
}

.proceso-step__desc {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ============================================================
   NOSOTROS
   ============================================================ */
.nosotros {
  padding-block: 5rem;
  background: var(--neutral-100);
}

.nosotros__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.nosotros__photos {
  position: relative;
  height: 480px;
}

.nosotros__photo {
  position: absolute;
  border-radius: var(--border-radius-card);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.nosotros__photo--1 {
  width: 70%;
  height: 55%;
  top: 0;
  left: 0;
  z-index: 1;
  background: var(--neutral-300);
}

.nosotros__photo--2 {
  width: 70%;
  height: 55%;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: var(--neutral-400);
}

/* Real photos */
.nosotros__photo {
  object-fit: cover;
}

.nosotros__text .badge {
  margin-bottom: 1rem;
}

.nosotros__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-1);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.nosotros__desc {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonios {
  padding-block: 5rem;
  background: var(--neutral-200);
}

.testimonios__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.testimonios__nav {
  display: flex;
  gap: 0.75rem;
}

.testimonios__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid var(--neutral-400);
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-700);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  font-size: 1.1rem;
}

.testimonios__btn:hover {
  border-color: var(--neutral-800);
  color: var(--neutral-800);
}

.testimonios__track-wrapper {
  overflow: hidden;
}

.testimonios__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonio-card {
  min-width: calc(50% - 0.75rem);
  background: var(--neutral-100);
  border-radius: var(--border-radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--neutral-300);
  flex-shrink: 0;
}

.testimonio-card__logo {
  height: 2rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

.testimonio-card__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.testimonio-card__quote {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.testimonio-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonio-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--neutral-300);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-600);
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonio-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--neutral-800);
}

.testimonio-card__role {
  font-size: 0.8125rem;
  color: var(--primary-1);
  font-weight: 600;
}

/* ============================================================
   CTA CONTACTO
   ============================================================ */
.cta-contacto {
  padding-block: 5rem;
  background: var(--neutral-100);
}

.cta-contacto__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-contacto__text .badge {
  margin-bottom: 1rem;
}

.cta-contacto__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-1);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-contacto__subtitle {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.cta-card {
  background: var(--primary-1);
  border-radius: var(--border-radius-card);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: var(--shadow-button-primary);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  top: -60px;
  right: -40px;
  pointer-events: none;
}

.cta-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cta-card__content {
  flex: 1;
}

.cta-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neutral-100);
  margin-bottom: 0.375rem;
}

.cta-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--neutral-100);
  border-top: 1px solid var(--neutral-300);
}

.footer__top {
  padding-block: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.footer__brand img {
  height: 2.25rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.7;
  max-width: 320px;
}

.footer__newsletter-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

.footer__form {
  display: flex;
  background: var(--neutral-200);
  border-radius: var(--border-radius-pill);
  border: 1.5px solid var(--neutral-400);
  overflow: hidden;
  padding: 0.25rem;
}

.footer__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--neutral-800);
  outline: none;
}

.footer__input::placeholder {
  color: var(--neutral-600);
}

.footer__nav {
  padding-block: 2.5rem;
  border-top: 1px solid var(--neutral-300);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__nav-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--neutral-800);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__nav-list a {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  transition: color var(--transition);
}

.footer__nav-list a:hover {
  color: var(--neutral-800);
}

.footer__social {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer__social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition), transform var(--transition);
}

.footer__social-link:hover {
  opacity: 0.8;
  transform: scale(1.08);
}

.footer__bottom {
  padding-block: 1.5rem;
  border-top: 1px solid var(--neutral-300);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--neutral-600);
}

.footer__made {
  font-size: 0.8125rem;
  color: var(--neutral-600);
}

/* ============================================================
   PÁGINA — SERVICIOS
   ============================================================ */

/* Hero 2-col: texto izq + párrafo der */
.servicios-hero {
  padding-block: 5rem 3rem;
  background: var(--neutral-100);
}

.servicios-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.servicios-hero__text .badge {
  margin-bottom: 1rem;
}

.servicios-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--neutral-800);
  line-height: 1.1;
}

.servicios-hero__desc {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.75;
  padding-bottom: 0.5rem;
}

/* Cards horizontales (ícono izq + contenido der) */
.servicios-list {
  padding-block: 1rem 5rem;
  background: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.servicios-list::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,57,81,0.08) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  pointer-events: none;
}

.servicios-list::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,53,255,0.07) 0%, transparent 70%);
  top: 50px;
  right: -100px;
  pointer-events: none;
}

.servicios-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.servicio-h-card {
  background: var(--neutral-100);
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-card);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--transition), transform var(--transition);
}

.servicio-h-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.servicio-h-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.servicio-h-card__body {
  flex: 1;
}

.servicio-h-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 0.375rem;
}

.servicio-h-card__desc {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 0.875rem;
}

.servicio-h-card__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--neutral-800);
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  transition: color var(--transition), gap var(--transition);
}

.servicio-h-card__link:hover {
  color: var(--primary-1);
  gap: 0.45em;
}

/* Banner CTA rojo */
.cta-banner {
  padding-block: 3rem;
  background: var(--neutral-100);
}

.cta-banner__inner {
  background: var(--primary-1);
  border-radius: 1.5rem;
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  top: -80px;
  right: 160px;
  pointer-events: none;
}

.cta-banner__inner::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  bottom: -60px;
  right: 80px;
  pointer-events: none;
}

.cta-banner__text {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--neutral-100);
  line-height: 1.2;
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.cta-banner__btn {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: var(--neutral-100);
  color: var(--primary-1);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius-pill);
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
}

.cta-banner__btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ── Responsive — Servicios ─────────────────────────────────── */

/* ============================================================
   PÁGINA — NOSOTROS
   ============================================================ */

/* Hero de página interior (texto izq + mosaico fotos der) */
.page-hero {
  padding-block: 5rem;
  background: var(--neutral-100);
  overflow: hidden;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.page-hero__text .badge {
  margin-bottom: 1rem;
}

.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--neutral-800);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.page-hero__desc {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.75;
  max-width: 420px;
}

/* Mosaico 3 fotos */
.photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  position: relative;
}

.photo-mosaic__img {
  border-radius: var(--border-radius-card);
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-card);
}

.photo-mosaic__img--1 {
  grid-column: 2;
  grid-row: 1;
  height: 260px;
}

.photo-mosaic__img--2 {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 100%;
  min-height: 260px;
  align-self: end;
  margin-top: 3rem;
}

.photo-mosaic__img--3 {
  grid-column: 2;
  grid-row: 2;
  height: 220px;
}

/* Misión */
.mision {
  padding-block: 5rem;
  background: var(--neutral-200);
}

.mision__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.mision__text .badge {
  margin-bottom: 1rem;
}

.mision__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--primary-1);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.mision__body p {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.mision__photo {
  border-radius: var(--border-radius-card);
  object-fit: cover;
  width: 100%;
  height: 400px;
  box-shadow: var(--shadow-card);
  background: var(--neutral-300);
}

/* Valores */
.valores {
  padding-block: 5rem;
  background: var(--neutral-100);
}

.valores__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.valores__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.valor-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--neutral-100);
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--transition), transform var(--transition);
}

.valor-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.valor-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.valor-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 0.375rem;
}

.valor-card__desc {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* Oficinas */
.oficinas {
  padding-block: 5rem;
  background: var(--neutral-200);
}

.oficinas__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.oficinas__text .badge {
  margin-bottom: 1rem;
}

.oficinas__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--primary-1);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.oficinas__subtitle {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

.oficina-card {
  background: var(--neutral-100);
  border-radius: var(--border-radius-card);
  border: 1px solid var(--neutral-300);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-1);
  max-width: 500px;
}

.oficina-card__country {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--neutral-800);
  margin-bottom: 0.75rem;
}

.oficina-card__address {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.oficina-card__contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.oficina-card__link {
  color: var(--primary-1);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: opacity var(--transition);
}

.oficina-card__link:hover {
  opacity: 0.75;
}

/* Mapa de puntos decorativo */
.world-map {
  width: 100%;
  height: 220px;
  background-image: radial-gradient(circle, var(--neutral-400) 1px, transparent 1px);
  background-size: 16px 16px;
  border-radius: var(--border-radius-card);
  position: relative;
  overflow: hidden;
}

.world-map__dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--primary-1);
  border-radius: 50%;
  top: 43%;
  left: 17%;
  box-shadow: 0 0 0 4px rgba(255, 57, 81, 0.2);
}

/* ── Responsive — Nosotros ──────────────────────────────────── */

/* ============================================================
   PÁGINA — SERVICIO EMAIL MARKETING
   ============================================================ */

/* Hero */
.email-hero {
  padding-block: 5rem 4rem;
  background: var(--neutral-100);
  overflow: hidden;
}

.email-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.email-hero__text .badge {
  margin-bottom: 1rem;
}

.email-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--neutral-800);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.email-hero__desc {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 440px;
}

.email-hero__illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.email-hero__illustration img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* Servicios del servicio (slider horizontal) */
.email-servicios {
  padding-block: 5rem;
  background: var(--neutral-200);
}

.email-servicios__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.email-servicios__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--primary-1);
  line-height: 1.2;
  max-width: 560px;
}

.email-servicios__cta {
  flex-shrink: 0;
}

.email-servicios__viewport {
  overflow: hidden;
}

.email-servicios__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.35s ease;
}

.email-servicio-card {
  flex-shrink: 0;
  background: var(--neutral-100);
  border-radius: var(--border-radius-card);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(20, 20, 43, 0.06);
  /* Width is set in px by JS */
}

.email-servicios__footer {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.email-servicio-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.email-servicio-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.email-servicio-card__desc {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* Process steps (reutilizable, específico para email) */
.email-proceso {
  padding-block: 5rem;
  background: var(--neutral-100);
}

.email-proceso__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.email-proceso__header .badge {
  margin-bottom: 1rem;
}

.email-proceso__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--neutral-800);
  line-height: 1.15;
}

.email-proceso__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.email-paso-card {
  background: var(--neutral-100);
  border-radius: var(--border-radius-card);
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(20, 20, 43, 0.06);
  border-top: 4px solid transparent;
}

.email-paso-card--1 { border-top-color: var(--secondary-2); }
.email-paso-card--2 { border-top-color: var(--primary-1); }
.email-paso-card--3 { border-top-color: var(--secondary-1); }
.email-paso-card--4 { border-top-color: var(--secondary-5); }

.email-paso-card__num {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.email-paso-card--1 .email-paso-card__num { color: var(--secondary-2); }
.email-paso-card--2 .email-paso-card__num { color: var(--primary-1); }
.email-paso-card--3 .email-paso-card__num { color: var(--secondary-1); }
.email-paso-card--4 .email-paso-card__num { color: var(--secondary-5); }

.email-paso-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 0.75rem;
}

.email-paso-card__desc {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* Testimonios 2-col */
.email-testimonios {
  padding-block: 5rem;
  background: var(--neutral-200);
}

.email-testimonios__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}

.email-testimonios__left .badge {
  margin-bottom: 1rem;
}

.email-testimonios__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-1);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.email-testimonios__desc {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.email-testimonios__cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.email-testimonio-card {
  background: var(--neutral-100);
  border-radius: var(--border-radius-card);
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(20, 20, 43, 0.06);
}

.email-testimonio-card__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
}

.email-testimonio-card__quote {
  font-size: 0.9375rem;
  color: var(--neutral-700);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.email-testimonio-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.email-testimonio-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.email-testimonio-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--neutral-800);
  display: block;
}

.email-testimonio-card__role {
  font-size: 0.8125rem;
  color: var(--neutral-600);
  display: block;
}

/* Contacto form */
.email-contacto {
  padding-block: 5rem;
  background: var(--neutral-100);
}

.email-contacto__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--neutral-200);
  border-radius: var(--border-radius-card);
  padding: 2.5rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.contact-form__group--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--neutral-400);
  border-radius: 10px;
  font-family: var(--font-base);
  font-size: 0.9375rem;
  color: var(--neutral-800);
  background: var(--neutral-100);
  transition: border-color 0.2s;
  outline: none;
  box-sizing: border-box;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--primary-1);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e7191' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form__submit {
  margin-top: 1.5rem;
  width: 100%;
}

.email-contacto__info .badge {
  margin-bottom: 1rem;
}

.email-contacto__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--primary-1);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.email-contacto__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.email-contacto__detail {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--neutral-700);
  text-decoration: none;
}

.email-contacto__detail:hover {
  color: var(--primary-1);
}

.email-contacto__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 57, 81, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Responsive — Email Marketing ───────────────────────────── */

/* ============================================================
   PÁGINA — SERVICIO ANUNCIOS PAGADOS
   ============================================================ */

/* Reutiliza .email-hero, .email-servicios, .email-testimonios, .contact-form */

.anuncios-proceso {
  padding-block: 5rem;
  background: var(--neutral-100);
}

.anuncios-proceso .proceso__inner {
  grid-template-columns: 1fr 1.5fr;
}

/* ── Responsive — Anuncios ──────────────────────────────────── */

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

/* Tablet — ≤ 1024px */
@media (max-width: 1024px) {
  /* Anuncios + Email — proceso shared override */
  .anuncios-proceso .proceso__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Email Marketing page */
  .email-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .email-proceso__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .email-testimonios__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .email-contacto__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Servicios page */
  .servicios-hero__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .servicios-list__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
  }

  /* Nosotros page */
  .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .photo-mosaic {
    max-width: 560px;
    margin-inline: auto;
  }

  .mision__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .mision__photo {
    height: 300px;
  }

  .oficinas__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .valores__grid {
    gap: 1rem;
  }

  .proceso__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .proceso__left {
    position: static;
  }

  .nosotros__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .nosotros__photos {
    height: 320px;
    max-width: 500px;
    margin-inline: auto;
  }

  .cta-contacto__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .plataformas__cards {
    gap: 1rem;
  }
}

/* Mobile — ≤ 640px */
@media (max-width: 640px) {
  .section {
    padding-block: 3.5rem;
  }

  /* Nav */
  .navbar__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--neutral-100);
    border-bottom: 1px solid var(--neutral-300);
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .navbar.nav--open .navbar__nav {
    display: flex;
  }

  .navbar__link {
    width: 100%;
    padding: 0.625rem 0.75rem;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__inner {
    position: relative;
  }

  /* Hero */
  .hero {
    padding-block: 4rem 3rem;
  }

  /* Logos */
  .logos__track {
    gap: 2rem;
    padding-right: 2rem;
    animation-duration: 30s;
  }
  .logos__item {
    height: 2.5rem;
  }

  /* Plataformas */
  .plataformas__cards {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-inline: auto;
  }

  .plataformas__illustration {
    display: none;
  }

  /* Servicios page — mobile */
  .servicios-hero__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .servicios-list__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner__inner {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }

  /* Nosotros page — mobile */
  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .photo-mosaic__img--2 {
    margin-top: 0;
    min-height: 160px;
  }

  .photo-mosaic__img--1,
  .photo-mosaic__img--3 {
    height: 160px;
  }

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

  .valor-card {
    padding: 1.25rem;
  }

  /* Email Marketing page — mobile */
  .email-proceso__grid {
    grid-template-columns: 1fr;
  }

  .email-servicios__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .email-servicios__footer {
    flex-wrap: wrap;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  /* Servicios */
  .servicios__grid {
    grid-template-columns: 1fr;
  }

  /* Proceso */
  .proceso__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Nosotros */
  .nosotros__inner {
    grid-template-columns: 1fr;
  }

  .nosotros__photos {
    height: 260px;
    max-width: 100%;
  }

  /* Testimonios */
  .testimonio-card {
    min-width: 100%;
  }

  .testimonios__header {
    align-items: flex-start;
    gap: 1rem;
  }

  /* CTA */
  .cta-contacto__inner {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    gap: 1rem;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__nav {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__form {
    flex-direction: column;
    border-radius: var(--border-radius-card);
  }

  .footer__input {
    padding: 0.75rem 1rem;
  }
}

/* ============================================================
   PÁGINA — CONTACTO
   ============================================================ */

/* Badge variante para fondo oscuro */
.badge--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--neutral-100);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Botón WhatsApp */
.btn--wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--border-radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  text-decoration: none;
}
.btn--wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* Botón blanco con borde para fondo oscuro */
.btn--white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--neutral-100);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--border-radius-pill);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}
.btn--white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* ── Hero ───────────────────────────────────────────────────── */
.contacto-hero {
  background: var(--neutral-800);
  padding-block: 5.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.contacto-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,57,81,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(106,53,255,0.10) 0%, transparent 55%);
  pointer-events: none;
}

.contacto-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.contacto-hero__text .badge {
  margin-bottom: 1.25rem;
}

.contacto-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--neutral-100);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.contacto-hero__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.contacto-hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Cards de métodos de contacto */
.contacto-hero__methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contacto-method-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius-card);
  padding: 1.25rem 1.5rem;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
}
.contacto-method-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}
.contacto-method-card--wa {
  border-color: rgba(37, 211, 102, 0.3);
}
.contacto-method-card--email {
  border-color: rgba(255, 57, 81, 0.3);
}

.contacto-method-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacto-method-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--neutral-100);
  margin-bottom: 0.2rem;
}
.contacto-method-card__desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ── Stats strip ─────────────────────────────────────────────── */
.contacto-stats {
  background: var(--neutral-200);
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--neutral-300);
}

.contacto-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.contacto-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contacto-stat__value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary-1);
  line-height: 1.1;
}

.contacto-stat__label {
  font-size: 0.8125rem;
  color: var(--neutral-600);
  font-weight: 500;
}

/* ── Sección principal (formulario + info) ───────────────────── */
.contacto-main {
  padding-block: 5rem;
  background: var(--neutral-100);
}

.contacto-main__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contacto-main__form-title {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.contacto-main__form-desc {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

/* Variante standalone del formulario (fondo blanco, no gris) */
.contact-form--standalone {
  background: var(--neutral-200);
}

/* ── Panel info lateral ──────────────────────────────────────── */
.contacto-main__info {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contacto-main__info-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--neutral-800);
}

.contacto-main__info-desc {
  font-size: 0.9rem;
  color: var(--neutral-600);
  line-height: 1.65;
  margin-top: -0.5rem;
}

/* Canales de contacto (tarjetas clickeables) */
.contacto-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  border-radius: var(--border-radius-card);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contacto-channel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.contacto-channel--wa {
  background: #25D366;
  color: #fff;
}
.contacto-channel--email {
  background: var(--primary-1);
  color: #fff;
}

.contacto-channel__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacto-channel__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contacto-channel__label {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contacto-channel__value {
  font-size: 0.9375rem;
  font-weight: 700;
}

.contacto-channel__arrow {
  opacity: 0.7;
  flex-shrink: 0;
}

/* Redes sociales */
.contacto-social__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--neutral-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
}

.contacto-social__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

.contacto-social__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition), opacity var(--transition);
}
.contacto-social__item:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Promesa de respuesta */
.contacto-promise {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.125rem;
  background: rgba(255, 57, 81, 0.06);
  border: 1px solid rgba(255, 57, 81, 0.15);
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-700);
}

/* ── WhatsApp CTA section ────────────────────────────────────── */
.contacto-wa-cta {
  background: linear-gradient(135deg, #1eb854 0%, #25D366 50%, #128c3e 100%);
  padding-block: 4rem;
}

.contacto-wa-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contacto-wa-cta__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.contacto-wa-cta__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.contacto-wa-cta__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.contacto-wa-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  background: #fff;
  color: #128c3e;
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contacto-wa-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.contacto-wa-cta__btn svg path {
  fill: #128c3e;
}

/* ── Responsive — Contacto (≤ 1024px) ───────────────────────── */
@media (max-width: 1024px) {
  .contacto-hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contacto-hero__methods {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contacto-method-card {
    flex: 1 1 200px;
  }

  .contacto-stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .contacto-main__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contacto-main__info {
    position: static;
  }

  .contacto-wa-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Responsive — Contacto (≤ 640px) ────────────────────────── */
@media (max-width: 640px) {
  .contacto-hero {
    padding-block: 4rem 3.5rem;
  }

  .contacto-hero__btns {
    flex-direction: column;
  }
  .btn--white,
  .btn--wa {
    justify-content: center;
    text-align: center;
  }

  .contacto-hero__methods {
    flex-direction: column;
  }

  .contacto-stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contacto-social__grid {
    grid-template-columns: 1fr 1fr;
  }
}
