/* =====================================================
   VICLIMA â€” Aire Acondicionado Costa Rica
   ===================================================== */

/* â”€â”€â”€ Custom Properties â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --primary:        #1E4E8A;
  --primary-dark:   #12305C;
  --primary-light:  #3A7DC4;
  --accent:         #6BAED6;
  --accent-dark:    #4A8AB4;
  --dark:           #14293F;
  --dark-md:        #1C3B58;
  --dark-card:      #23527A;
  --text:           #1C2E3E;
  --text-md:        #4A6278;
  --text-light:     #7890A4;
  --bg:             #F8FAFB;
  --bg-section:     #EDF2F7;
  --white:          #FFFFFF;
  --success:        #3A9E71;
  --border:         #C8D8E8;
  --whatsapp:       #18A84A;
  --whatsapp-dark:  #127A36;

  --shadow-sm: 0 1px 4px rgba(20,42,70,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:    0 4px 20px rgba(20,42,70,0.10), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 48px rgba(20,42,70,0.15), 0 4px 16px rgba(0,0,0,0.07);
  --shadow-xl: 0 24px 80px rgba(13,24,39,0.40);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: all 0.3s var(--ease);
}

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

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 104px; }

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Raleway', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* â”€â”€â”€ Keyframes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  33%     { transform: translateY(-24px) scale(1.02); }
  66%     { transform: translateY(10px) scale(0.98); }
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.5; transform: scale(1.6); }
}
@keyframes airwave {
  0%,100% { opacity: 0; transform: translateY(0) scaleX(0.7); }
  50%     { opacity: 1; transform: translateY(6px) scaleX(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* â”€â”€â”€ Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--bg-section); }
.section-dark { background: var(--dark); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header-left { margin-bottom: 56px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(30,78,138,0.07);
  border: 1px solid rgba(30,78,138,0.18);
  color: var(--primary);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-dark .section-tag {
  background: rgba(107,174,214,0.1);
  border-color: rgba(107,174,214,0.25);
  color: var(--accent);
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.section-dark .section-title { color: var(--white); }

.section-title .grad {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-md);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }
.section-header-left .section-subtitle { margin: 0; }

/* â”€â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn i { font-size: 1.15rem; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(30,78,138,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,78,138,0.45);
}

.btn-whatsapp {
  background: linear-gradient(180deg, #22BF58 0%, #158A38 100%);
  color: var(--white);
  font-weight: 700;
}
.btn-whatsapp:hover {
  background: linear-gradient(180deg, #27CC60 0%, #18963E 100%);
  transform: translateY(-2px);
}
.btn-whatsapp i { font-size: 1.1rem; }

.btn-outline-white {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.2);
}

.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-xl { padding: 20px 44px; font-size: 1.15rem; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(10, 18, 34, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 6px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.35);
}

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

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  object-position: top center;
  filter: brightness(1.35) saturate(1.3);
  transition: filter 0.2s;
}
.nav-logo:hover img {
  filter: brightness(1.5) saturate(1.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.09);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.7);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
}
.nav-phone i { color: var(--whatsapp); font-size: 1.1rem; }

.nav-toggle {
  display: none;
  color: white;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  font-size: 1.4rem;
  transition: var(--trans);
}
.nav-toggle:hover { background: rgba(255,255,255,0.14); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 18, 34, 0.97);
  backdrop-filter: blur(20px);
  padding: 80px 24px 40px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: rgba(255,255,255,0.85);
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--radius);
  transition: var(--trans);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a:hover { color: white; background: rgba(255,255,255,0.07); }
.nav-mobile .btn { margin-top: 20px; justify-content: center; font-size: 1.1rem; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative;
  background-image: url('../images/hero-escritorio.webp');
  background-size: cover;
  background-position: center center;
  will-change: background-position;
  background-color: #14293F;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dark overlay for text readability */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 28, 48,0.52) 0%,
    rgba(15, 28, 48,0.34) 40%,
    rgba(15, 28, 48,0.08) 100%
  );
  pointer-events: none;
}

/* Subtle accent tint */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 8% 50%, rgba(107,174,214,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero-orbs { display: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: float 9s ease-in-out infinite;
}
.orb-1 { width: 420px; height: 420px; background: rgba(107,174,214,0.22);  top: -80px; right: 5%;  animation-duration: 9s; }
.orb-2 { width: 280px; height: 280px; background: rgba(255,255,255,0.10); bottom: 5%; left: 3%;  animation-duration: 11s; animation-delay: 3s; }
.orb-3 { width: 220px; height: 220px; background: rgba(107,174,214,0.18);  top: 45%; right: 35%; animation-duration: 7s;  animation-delay: 5s; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 0;
  align-items: start;
  padding: 130px 0 90px;
  width: 100%;
}
.hero-visual  { grid-row: span 2; align-self: center; }
.hero-btu-cta { align-self: end; }

/* Hero Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,174,214,0.1);
  border: 1px solid rgba(107,174,214,0.28);
  color: var(--accent);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge i { font-size: 14px; }

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero-title .grad {
  background: linear-gradient(135deg, #A8CCE8, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.70);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 510px;
  letter-spacing: 0.01em;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Hero BTU Calculator CTA */
.hero-btu-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(107,174,214,0.08);
  border: 1px solid rgba(107,174,214,0.22);
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  opacity: 0;
  animation: heroNumIn 0.6s cubic-bezier(0.22,1,0.36,1) 0.9s both;
}
.hero-btu-cta:hover {
  background: rgba(107,174,214,0.15);
  border-color: rgba(107,174,214,0.38);
  transform: translateY(-2px);
}
.hbc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(107,174,214,0.12);
  border: 1px solid rgba(107,174,214,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hbc-icon i { font-size: 1.4rem; color: var(--accent); }
.hbc-body { flex: 1; min-width: 0; }
.hbc-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  line-height: 1.3;
}
.hbc-sub { font-size: 0.73rem; color: rgba(255,255,255,0.48); }
.hbc-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(107,174,214,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.hbc-arrow i { font-size: 0.85rem; color: var(--accent); }
.hero-btu-cta:hover .hbc-arrow { background: rgba(107,174,214,0.25); }

@keyframes heroNumIn {
  from { opacity: 0; transform: translateY(16px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

/* Hero Service Cards */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}

.sv-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 380px;
}

.sv-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  backdrop-filter: blur(18px);
  transition: background 0.2s, border-color 0.2s;
}
.sv-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255,255,255,0.28);
}

.sv-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sv-card-icon i { font-size: 1.1rem; color: #fff; }

.sv-card-label {
  flex: 1;
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
}

.sv-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px 4px 4px;
  background: linear-gradient(180deg, #22BF58 0%, #158A38 100%);
  border: 1px solid rgba(24, 168, 74, 0.38);
  border-radius: 100px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
.sv-card-btn:hover {
  background: linear-gradient(180deg, #27CC60 0%, #18963E 100%);
  border-color: rgba(24, 168, 74, 0.55);
  transform: translateY(-1px);
}
.sv-card-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Service card — image header + body layout */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
  padding: 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30,78,138,0.25);
}

/* Image header */
.sc-image {
  position: relative;
  height: 210px;
  flex-shrink: 0;
  overflow: hidden;
}
.sc-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,35,58,0.25) 0%,
    rgba(18,35,58,0.55) 100%
  );
  transition: var(--trans);
}
.service-card:hover .sc-image-overlay {
  background: linear-gradient(
    to bottom,
    rgba(18,35,58,0.15) 0%,
    rgba(18,35,58,0.45) 100%
  );
}

/* Icon floating on bottom of image */
.sc-icon-wrap {
  position: absolute;
  bottom: -24px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  border: 2px solid rgba(255,255,255,0.9);
}
.sc-icon-wrap i { font-size: 1.6rem; }
.si-blue  { background: #EEF4FF; } .si-blue  i { color: var(--primary); }
.si-cyan  { background: #E6F9FD; } .si-cyan  i { color: var(--accent-dark); }
.si-green { background: #E8FBF4; } .si-green i { color: var(--success); }

/* Body */
.sc-body {
  padding: 44px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-md);
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-md);
}
.service-list li i {
  color: var(--success);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #22BF58 0%, #158A38 100%);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 22px;
  padding: 9px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--trans);
}
.service-cta:hover { background: linear-gradient(180deg, #27CC60 0%, #18963E 100%); transform: translateY(-1px); }
.service-cta i { font-size: 1.05rem; color: #fff; transition: transform 0.25s var(--ease); }
.service-card:hover .service-cta i { transform: translateX(3px); }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY US â€” STATS + BENEFITS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(30,78,138,0.2);
}
.stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(30,78,138,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.stat-icon i { color: var(--primary); font-size: 1.5rem; }
.stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
  transform: translateY(18px) scale(0.82);
  opacity: 0;
  transition: none;
}
.stat-card.visible .stat-num {
  animation: statNumPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.22s both;
}
@keyframes statNumPop {
  from { opacity: 0; transform: translateY(18px) scale(0.82); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.stat-num .accent-c { color: var(--primary); }
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 0;
  box-shadow: var(--shadow-sm);
  justify-content: space-evenly;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}
.benefit-item:last-child {
  border-bottom: none;
}
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon i { font-size: 1.4rem; }
.bi-1 { background: rgba(30,78,138,0.09);  } .bi-1 i { color: var(--primary); }
.bi-2 { background: rgba(107,174,214,0.09);  } .bi-2 i { color: var(--accent-dark); }
.bi-3 { background: rgba(58,158,113,0.09); } .bi-3 i { color: var(--success); }
.bi-4 { background: rgba(245,158,11,0.09); } .bi-4 i { color: #D97706; }
.bi-5 { background: rgba(99,102,241,0.09); } .bi-5 i { color: #6366F1; }
.bi-6 { background: rgba(239,68,68,0.09);  } .bi-6 i { color: #EF4444; }

.benefit-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.benefit-text p {
  font-size: 0.88rem;
  color: var(--text-md);
  line-height: 1.6;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EQUIPMENT TYPES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* ── Equipment panels ────────────────────────────────── */
#equipos { padding-bottom: 0; }
.equip-panels {
  display: flex;
  height: 520px;
  border-radius: 0;
  overflow: hidden;
  gap: 2px;
}
.equip-panel {
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
  background-color: #14293F;
  transition: flex 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: default;
}
.equip-panel:hover { flex: 1.85; cursor: pointer; }
.ep-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ep-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,35,58,0.92) 0%, rgba(18,35,58,0.80) 18%, rgba(18,35,58,0.08) 30%, transparent 42%);
  transition: background 0.4s ease;
}
.equip-panel:hover .ep-overlay {
  background: linear-gradient(to top, rgba(18,35,58,0.82) 0%, rgba(18,35,58,0.40) 18%, rgba(18,35,58,0.02) 30%, transparent 40%);
}
.ep-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px;
  z-index: 1;
}
.ep-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.ep-icon i { font-size: 1.25rem; color: var(--accent); }
.ep-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ep-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin-top: 6px;
  max-height: 2.4em;
  overflow: hidden;
  opacity: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: max-height 0.4s ease, opacity 0.3s ease, -webkit-line-clamp 0s;
}
.equip-panel:hover .ep-desc {
  max-height: 110px;
  opacity: 1;
  -webkit-line-clamp: unset;
  display: block;
}
.ep-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  background: rgba(107,174,214,0.12);
  border: 1px solid rgba(107,174,214,0.28);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--accent);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.65;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.equip-panel:hover .ep-tag {
  opacity: 1;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROCESS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  opacity: 0.3;
}

.process-card {
  text-align: center;
  position: relative;
}
.process-num-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.process-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 2px solid rgba(30,78,138,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: var(--trans);
  position: relative;
  z-index: 1;
}
.process-card:hover .process-num {
  background: rgba(30,78,138,0.08);
  border-color: var(--primary);
  box-shadow: 0 0 24px rgba(30,78,138,0.2);
}
.process-num i { font-size: 1.8rem; color: var(--accent); }
.process-step-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 24px; height: 24px;
  background: var(--primary);
  border-radius: 50%;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.process-desc {
  font-size: 0.85rem;
  color: var(--text-md);
  line-height: 1.65;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-illustration {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
}
.faq-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq-contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fci-wa  { background: rgba(24,168,74,0.1);  } .fci-wa  i { color: var(--whatsapp); }
.fci-em  { background: rgba(30,78,138,0.1);   } .fci-em  i { color: var(--primary); }
.fci-cl  { background: rgba(107,174,214,0.1);   } .fci-cl  i { color: var(--accent-dark); }
.faq-contact-icon i { font-size: 1.3rem; }
.faq-contact-item .label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}
.faq-contact-item .value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.faq-item.open { border-color: rgba(30,78,138,0.25); box-shadow: var(--shadow-sm); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--trans);
}
.faq-trigger:hover { color: var(--primary); }
.faq-item.open .faq-trigger { color: var(--primary); }

.faq-arrow {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.faq-arrow i { font-size: 0.9rem; color: var(--text-md); transition: var(--trans); }
.faq-item.open .faq-arrow { background: var(--primary); }
.faq-item.open .faq-arrow i { color: white; transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-body-inner {
  padding: 0 24px 22px;
  font-size: 0.93rem;
  color: var(--text-md);
  line-height: 1.75;
}


/* ── BRANDS ─────────────────────────────────────── */
.brands-section { background: var(--bg); }

/* Carousel */
.brands-carousel {
  overflow: hidden;
  margin-bottom: 36px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.brands-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: brands-scroll 32s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }

@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  flex-shrink: 0;
  width: 200px;
  height: 110px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
}
.brand-logo:hover {
  border-color: var(--primary-light);
  box-shadow: 0 6px 24px rgba(30,78,138,0.12);
  transform: translateY(-3px);
}
.brand-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0) opacity(1);
  transform: scale(1.18);
  transform-origin: center;
  transition: transform 0.2s;
}
.brand-logo:hover img { transform: scale(1.26); }

@media (max-width: 768px) {
  .brand-logo { width: 240px; height: 136px; padding: 18px 20px; }
  .brand-logo img { max-height: 96px; transform: scale(1.35); transform-origin: center; }
  .brand-logo:hover img { transform: scale(1.44); }
  .brands-track { gap: 14px; animation-duration: 30s; }
}
@media (max-width: 480px) {
  .brand-logo { width: 210px; height: 120px; padding: 14px 18px; }
  .brand-logo img { max-height: 84px; transform: scale(1.35); transform-origin: center; }
  .brands-track { gap: 12px; animation-duration: 26s; }
}

.brands-cta { margin-top: 8px; }
.brands-cta-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: linear-gradient(135deg, #EDF4FF, #E4EFF9);
  border: 1.5px solid rgba(30,78,138,0.12);
  border-radius: 18px;
  flex-wrap: wrap;
}
.brands-cta-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brands-cta-icon i { font-size: 1.3rem; color: white; }
.brands-cta-text { flex: 1; min-width: 180px; }
.brands-cta-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.brands-cta-sub { font-size: 0.80rem; color: var(--text-md); }

@media (max-width: 768px) {
  .brands-cta-inner { padding: 18px 20px; gap: 14px; }
  .brands-cta-inner .btn { width: 100%; justify-content: center; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA BANNER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-banner {
  background: url('../images/familia-pc.webp') center 30% / cover no-repeat;
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  will-change: background-position;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,18,50,0.55) 0%, rgba(15,40,100,0.60) 100%);
}
@media (max-width: 768px) {
  .cta-banner {
    background-image: url('../images/familia-movil.webp');
    background-position: center top;
  }
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.cta-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  font-weight: 700;
}
.btn-white:hover {
  background: #EBF5FF;
  border-color: #EBF5FF;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.25);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
  background: #14293F;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo { margin-bottom: 18px; }
.footer-logo img {
  height: 91px;
  width: auto;
  object-fit: contain;
}

.footer-about {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  transition: var(--trans);
}
.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; color: var(--primary-light); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.fci-icon {
  width: 34px; height: 34px;
  background: rgba(30,78,138,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fci-icon i { font-size: 0.95rem; color: var(--accent); }
.footer-contact-item .fc-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: block;
  margin-bottom: 2px;
}
.footer-contact-item .fc-value {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer-contact-item .fc-value a {
  color: rgba(255,255,255,0.65);
  transition: var(--trans);
}
.footer-contact-item .fc-value a:hover { color: white; }
.fc-coverage-all {
  display: block;
  margin-top: 3px;
  color: rgba(107,174,214,0.7);
  font-size: 0.82rem;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.84rem;
}
.hours-row .day { color: rgba(255,255,255,0.4); }
.hours-row .time { color: rgba(255,255,255,0.7); font-weight: 500; font-family: 'Raleway', sans-serif; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.footer-copy a { color: rgba(255,255,255,0.4); transition: var(--trans); }
.footer-copy a:hover { color: white; }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: var(--trans);
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FLOATING WHATSAPP
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  transition: var(--trans);
}
.wa-float:hover { transform: scale(1.05); }

.wa-bubble {
  background: var(--whatsapp);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wa-bubble i { font-size: 1.3rem; color: white; }
.wa-bubble::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(24,168,74,0.35);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

.wa-label {
  background: var(--white);
  border-radius: 100px 0 0 100px;
  padding: 10px 20px 10px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow);
  margin-right: -8px;
  order: -1;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.wa-float:hover .wa-label {
  max-width: 200px;
  opacity: 1;
  padding-right: 28px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .services-grid     { grid-template-columns: 1fr; gap: 20px; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .equip-panels      { height: 420px; }
  .process-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .why-grid          { gap: 48px; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .hero {
    background-image: url('../images/hero-movil.webp');
    background-position: center top;
  }
  .hero::before {
    background: rgba(15, 28, 48,0.44);
  }

  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding: 110px 0 70px;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-ctas  { display: none; }
  .hero-visual  { display: flex; grid-row: auto; }
  .hero-btu-cta { width: 100%; }
  .hero-inner   { row-gap: 28px; }
  .sv-cards    { max-width: 100%; }

  .services-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .equip-panels { flex-direction: column; flex-wrap: nowrap; height: auto; border-radius: 0; }
  .equip-panel  { flex: 0 0 100%; height: auto; background-size: 0 0; }
  .equip-panel:hover { flex: 0 0 100%; }
  .equip-panel::before {
    content: '';
    display: block;
    height: 210px;
    background-image: inherit;
    background-size: cover;
    background-position: center 40%;
  }
  .equip-panel:nth-child(1)::before { background-position: center 35%; }
  .equip-panel:nth-child(3)::before { background-position: center 50%; }
  .ep-overlay   { display: none; }
  .ep-bg-img    { display: none; }
  .ep-body      { position: static; background: #fff; padding: 14px 16px 18px; }
  .ep-icon      { display: none; }
  .ep-title     { color: #14293F; white-space: normal; overflow: visible; text-overflow: clip; font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
  .ep-tag       { opacity: 1; transform: translateY(0); margin-top: 8px; }
  .ep-desc      {
    display: block;
    max-height: none;
    opacity: 1;
    -webkit-line-clamp: unset;
    color: rgba(20, 41, 63, 0.60);
    font-size: 0.82rem;
    line-height: 1.55;
    margin-top: 6px;
    padding: 0;
  }
  .process-grid   { grid-template-columns: 1fr; gap: 20px; }
  .faq-grid       { grid-template-columns: 1fr; }
  .faq-left       { position: static; }

  /* ── Footer mobile ── */
  .footer { padding: 36px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    padding-bottom: 28px;
  }
  /* Brand col spans full width */
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-logo { margin-bottom: 0; flex-shrink: 0; }
  .footer-logo img { height: 52px; }
  .footer-about { font-size: 0.80rem; margin-bottom: 0; flex: 1; min-width: 180px; max-width: 100%; }
  .footer-socials { flex-shrink: 0; }
  .social-btn { width: 34px; height: 34px; font-size: 1rem; }

  /* Services + Hours side by side (2 cols) */
  .footer-col-title { font-size: 0.72rem; margin-bottom: 14px; }
  .footer-links { gap: 8px; }
  .footer-links a { font-size: 0.82rem; }
  .footer-hours { gap: 6px; }
  .hours-row { font-size: 0.80rem; gap: 8px; }

  /* Contact col spans full width */
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-contact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-contact-item { gap: 8px; }
  .fci-icon { width: 28px; height: 28px; }
  .fci-icon i { font-size: 0.82rem; }
  .footer-contact-item .fc-label { font-size: 0.68rem; }
  .footer-contact-item .fc-value { font-size: 0.82rem; }

  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; padding: 16px 0; }
  .footer-copy { font-size: 0.75rem; }

  .wa-float { bottom: 20px; right: 20px; }

  .section-header { margin-bottom: 44px; }
  .section-tag { font-size: 11px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2.3rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-btns       { flex-direction: column; align-items: center; }
  .btn-xl         { padding: 16px 28px; font-size: 1rem; }
  .footer-legal   { flex-direction: row; gap: 16px; flex-wrap: wrap; justify-content: center; }
  .footer-contact-list { grid-template-columns: 1fr; }
}

