/* ============================================================
   LUNA SOCIAL MEDIA — LANDING PAGE STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy: #0B1F3A;
  --navy-mid: #112A52;
  --blue: #1A5CFF;
  --blue-light: #3A7BFF;
  --gold: #F5B222;
  --gold-light: #FFD166;
  --bone: #F8F4ED;
  --bone-mid: #EEE8DB;
  --white: #FFFFFF;
  --dark-text: #0D1B2E;
  --mid-text: #3B4F68;
  --light-text: #7A92AE;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-card: 0 8px 32px rgba(11, 31, 58, .12);
  --shadow-glow: 0 0 40px rgba(26, 92, 255, .18);
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padded {
  padding: 96px 0;
}

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

.tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.tag--gold {
  background: var(--gold);
  color: var(--navy);
}

.tag--blue {
  background: rgba(26, 92, 255, .12);
  color: var(--blue);
}

.tag--white {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(26, 92, 255, .4);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26, 92, 255, .5);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(245, 178, 34, .35);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(245, 178, 34, .5);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .5);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 31, 58, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: .88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center top;
  opacity: .18;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, .98) 0%, rgba(17, 42, 82, .80) 50%, rgba(26, 92, 255, .15) 100%);
}

/* decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  pointer-events: none;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--blue);
  top: -200px;
  right: -150px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -150px;
  left: -100px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 120px 0 96px;
}

.hero-content {
  max-width: 600px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeUp .6s ease both;
}

.hero-eyebrow span {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  max-width: 80px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp .7s .1s ease both;
}

.hero-headline .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: fadeUp .65s .12s ease both;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp .7s .2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  animation: fadeUp .7s .4s ease both;
}

.trust-stat {
  text-align: center;
}

.trust-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.trust-label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.trust-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .15);
}

/* hero right card */
.hero-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  padding: 40px;
  animation: fadeRight .8s .3s ease both;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card-title::before {
  content: '🚀';
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: .95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}

.hero-form input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.hero-form input:focus,
.hero-form select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .12);
}

.hero-form select option {
  background: var(--navy-mid);
  color: var(--white);
}

.hero-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.form-disclaimer {
  text-align: center;
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 8px;
}

/* ============================================================
   DIVIDERS
   ============================================================ */
.divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.divider svg {
  display: block;
  width: 100%;
}

/* ============================================================
   PROMO / CTA BLOCK
   ============================================================ */
#promo {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

#promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.promo-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.promo-text .promo-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}

.promo-text .promo-sub {
  font-size: 1.05rem;
  color: var(--navy-mid);
}

.promo-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   SERVICES
   ============================================================ */
#servicios {
  background: var(--bone);
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--mid-text);
  max-width: 580px;
}

.section-header.text-center p {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11, 31, 58, .06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(11, 31, 58, .16);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(26, 92, 255, .1), rgba(245, 178, 34, .1));
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: .95rem;
  color: var(--mid-text);
  line-height: 1.7;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}

.service-card .service-link:hover {
  gap: 10px;
}

/* ============================================================
   WHO WE ARE (QUIENES SOMOS)
   ============================================================ */
#quienes-somos {
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 520px;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(245, 178, 34, .35);
  text-align: center;
}

.about-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.about-badge .badge-text {
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy-mid);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.about-content .section-header p {
  color: rgba(255, 255, 255, .65);
}

.about-content .section-header h2 {
  color: var(--white);
}

.credentials-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.credential-item:hover {
  background: rgba(255, 255, 255, .09);
}

.credential-icon {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.credential-text {
  font-size: .9rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
}

.about-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ============================================================
   PROBLEMS WE SOLVE
   ============================================================ */
#problemas {
  background: var(--bone);
}

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

.problem-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid rgba(11, 31, 58, .07);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 31, 58, .14);
}

.problem-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-card p {
  font-size: .95rem;
  color: var(--mid-text);
  line-height: 1.6;
}

.problems-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   BENEFITS
   ============================================================ */
#beneficios {
  background: var(--navy);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.benefit-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-4px);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

/* ============================================================
   VALUE PROPOSITION
   ============================================================ */
#valor {
  background: var(--bone);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.value-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(11, 31, 58, .2);
}

.value-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.value-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--blue);
  box-shadow: 0 4px 16px rgba(11, 31, 58, .07);
  transition: var(--transition);
}

.value-point:hover {
  transform: translateX(6px);
}

.value-point-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.value-point-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.value-point-text p {
  font-size: .9rem;
  color: var(--mid-text);
}

/* ============================================================
   PURPOSE
   ============================================================ */
#proposito {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
}

.purpose-quote {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.quote-mark {
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: .6;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin: 24px 0;
  font-style: italic;
}

.quote-author {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ============================================================
   PROCESO
   ============================================================ */
#proceso {
  background: var(--bone);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 36px 20px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(26, 92, 255, .4);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step p {
  font-size: .88rem;
  color: var(--mid-text);
  line-height: 1.6;
}

/* ============================================================
   CLIENTS / SECTORS
   ============================================================ */
#clientes {
  background: var(--navy);
}

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

.client-tag {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
  transition: var(--transition);
}

.client-tag:hover {
  background: rgba(245, 178, 34, .12);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
#contacto {
  background: var(--bone);
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(11, 31, 58, .25);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 92, 255, .35), transparent 70%);
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 178, 34, .2), transparent 70%);
}

.cta-box-inner {
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .65);
  font-size: .95rem;
}

.cta-info-item .icon {
  font-size: 1.2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060F1E;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: .85rem;
  color: rgba(255, 255, 255, .4);
}

.footer-copy a {
  color: var(--gold);
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, .5);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 44px rgba(37, 211, 102, .65);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* Mobile sticky bar */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 12px 16px;
  gap: 10px;
}

.mobile-sticky .btn {
  flex: 1;
  justify-content: center;
  padding: 13px 16px;
  font-size: .9rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 8px 48px rgba(37, 211, 102, .8);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .credentials-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 64px;
    gap: 20px;
  }

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

  .about-image-wrap {
    display: none;
  }

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

  .value-image {
    display: none;
  }

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

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .section-padded {
    padding: 64px 0;
  }

  .credentials-list {
    grid-template-columns: 1fr;
    margin-top: 48px;
    gap: 16px;
  }

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

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

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

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .trust-divider {
    display: none;
  }

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

  .mobile-sticky {
    display: flex;
  }

  .wa-float {
    bottom: 86px;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ============================================================
   PACKAGES (¿QUÉ CONSIGUES?)
   ============================================================ */
#cta-paquetes {
  background: var(--navy);
}

.packages-grid {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: 48px auto 0;
}

.package-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 48px;
  padding: 48px;
  transition: var(--transition);
  width: 100%;
}

.package-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.package-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  display: block;
}

.package-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.package-card:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-4px);
}

.package-icon {
  font-size: 2.8rem;
}

.package-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.package-sub {
  font-size: .95rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.package-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.package-list li {
  font-size: .92rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
  list-style: none;
}

.package-card .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* ============================================================
   COMO LO HACEMOS
   ============================================================ */
#como-lo-hacemos {
  background: var(--navy);
}


/* ============================================================
   POR QUÉ ELEGIRNOS
   ============================================================ */
#por-que-elegirnos {
  background: var(--bone);
}

#por-que-elegirnos .benefits-grid {
  margin-top: 48px;
}

#por-que-elegirnos .benefit-card {
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, .07);
  box-shadow: var(--shadow-card);
}

#por-que-elegirnos .benefit-card h3 {
  color: var(--navy);
}

#por-que-elegirnos .benefit-card p {
  color: var(--mid-text);
}

#por-que-elegirnos .benefit-card:hover {
  background: var(--bone-mid);
}

#por-que-elegirnos .benefit-card::after {
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.section-note {
  font-size: 1.05rem;
  color: var(--mid-text);
  font-style: italic;
}

.section-note strong {
  color: var(--navy);
  font-style: normal;
}

/* ============================================================
   PROPOSITO — STATS ROW
   ============================================================ */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.stat-block {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  text-align: center;
  min-width: 140px;
  transition: var(--transition);
}

.stat-block:hover {
  background: rgba(255, 255, 255, .1);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonios {
  background: var(--bone);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11, 31, 58, .06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 31, 58, .14);
}

.testimonial-stars {
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--mid-text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 31, 58, .08);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-sector {
  font-size: .8rem;
  color: var(--light-text);
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 900px) {
  .package-card {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }

  .package-image img {
    aspect-ratio: 16 / 9;
  }

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

@media (max-width: 640px) {

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

  .stats-row {
    gap: 16px;
  }

  .stat-block {
    padding: 20px 24px;
    min-width: 120px;
  }

  .conferencia-cta {
    padding: 28px 24px;
  }
}