/* ============================================
   AETOS — Moderno & Dinámico, Fondo Claro
   Colores: #1abc9c (verde) + #3498db (azul)
   Fuentes: Raleway + Nunito
   ============================================ */

:root {
  --green:        #1abc9c;
  --green-dark:   #17a589;
  --green-soft:   rgba(26,188,156,0.10);
  --blue:         #3498db;
  --blue-dark:    #2980b9;
  --dark:         #1c1c1c;
  --dark2:        #242424;
  --text:         #efefef;
  --text-mid:     rgba(239,239,239,0.62);
  --text-light:   rgba(239,239,239,0.35);
  --bg:           #111214;
  --bg-alt:       #161619;
  --border:       rgba(255,255,255,0.09);
  --nav-h:        70px;
  --radius:       8px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.5);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.6);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.7);
  --trans:        0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: #efefef;
}
h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { color: var(--text-mid); }
a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- TAG / PILL ---- */
.tag {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-dark);
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-green  { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); box-shadow: 0 4px 20px rgba(26,188,156,0.35); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: #111; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.btn-wa { background: #25D366; color: #fff; border-color: #25D366; }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,211,102,0.35); }

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(14,14,16,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--trans);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.nav-left { display: flex; align-items: center; gap: 0.25rem; }
.nav-center { display: flex; justify-content: center; }
.nav-right { display: flex; align-items: center; gap: 0.5rem; justify-content: flex-end; }

.nav-logo {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.06em;
}
.nav-logo span { color: var(--green); }

.nav-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(239,239,239,0.55);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
  white-space: nowrap;
}
.nav-link:hover { color: #efefef; background: var(--bg-alt); }

.nav-btn-wa {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37,211,102,0.1);
  color: #1ebe5d;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  transition: all var(--trans);
}
.nav-btn-wa:hover { background: #25D366; color: #fff; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #0e0e10;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu-inner { padding: 1.25rem 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 0.15rem; }
.mob-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem; font-weight: 700;
  color: rgba(239,239,239,0.55);
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border);
  display: block; transition: color var(--trans);
}
.mob-link:last-child { border-bottom: none; }
.mob-link:hover { color: var(--green); }
.mob-link-cta {
  background: var(--green); color: #fff !important;
  text-align: center; border-radius: 50px; border-bottom: none;
  margin-top: 0.75rem; padding: 0.8rem;
}
.mob-link-wa {
  color: #1ebe5d !important;
  display: flex; align-items: center; gap: 0.5rem;
}

/* ============================================
   HERO — Mitad imagen / mitad texto
   ============================================ */
#hero {
  padding-top: var(--nav-h);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
.hero-text-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeSlideLeft 0.9s ease both;
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-brand {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem; font-weight: 900;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.6rem;
  justify-content: center;
}
.hero-brand::before {
  content: ''; display: inline-block;
  width: 28px; height: 2px; background: var(--green);
}
.hero-text-side h1 { margin-bottom: 1.25rem; }
.hero-text-side h1 em { color: var(--green); font-style: normal; }
.hero-text-side p { font-size: 1rem; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

.hero-stats {
  display: flex; gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 1.75rem; font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.75rem; color: var(--text-light);
  margin-top: 0.2rem; display: block;
}

.hero-image-side {
  position: relative;
  overflow: hidden;
  animation: fadeSlideRight 0.9s ease both;
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-image-side img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image-side::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,188,156,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  bottom: 2rem; left: -1.5rem;
  background: var(--green);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 800; font-size: 0.78rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  animation: badgePop 1s 0.5s ease both;
  line-height: 1.4;
}
@keyframes badgePop {
  from { opacity: 0; transform: scale(0.85) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.hero-badge strong { font-size: 1.5rem; display: block; }

/* ============================================
   SERVICIOS — Lista vertical expandible
   ============================================ */
#servicios {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 0.6rem; }

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.service-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.service-item:last-child { border-bottom: none; }

.service-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 1.75rem;
  cursor: pointer;
  transition: background var(--trans);
  user-select: none;
}
.service-header:hover { background: #1e1e22; }
.service-item.open .service-header { background: #1e1e22; }

.service-num {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem; font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--green);
  flex-shrink: 0; width: 28px;
}
.service-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: var(--text);
  flex: 1;
}
.service-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.2s;
}
.service-item.open .service-chevron {
  transform: rotate(180deg);
  background: var(--green);
  color: #fff;
}

.service-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.service-item.open .service-body { grid-template-rows: 1fr; }
.service-body-inner { overflow: hidden; }

.service-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.service-img {
  overflow: hidden;
  height: 220px;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-item.open .service-img img { transform: scale(1.04); }
.service-text {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  background: #161619;
}
.service-text p { font-size: 0.93rem; line-height: 1.65; }
.service-text ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.25rem; }
.service-text ul li {
  font-size: 0.9rem; color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.service-text ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ============================================
   ¿QUÉ HACEMOS? — mitad imagen / mitad texto
   ============================================ */
#quehacemos {
  padding: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img {
  overflow: hidden;
  position: relative;
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-img:hover img { transform: scale(1.03); }
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  gap: 1.25rem;
}
.split-content h2 { margin-bottom: 0.25rem; }
.split-content p { font-size: 0.97rem; }

/* ============================================
   ¿POR QUÉ ELEGIRNOS?
   ============================================ */
#porqueelegirnos {
  padding: 0;
  background: #161619;
  border-top: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.why-img {
  overflow: hidden; position: relative;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 55%, #161619 100%);
}
.why-content {
  padding: 4rem 3rem 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.why-points { display: flex; flex-direction: column; gap: 1.5rem; }
.why-point {
  display: flex; gap: 1rem; align-items: flex-start;
}
.why-icon {
  width: 42px; height: 42px;
  background: var(--green-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}
.why-point-text { font-size: 0.93rem; color: var(--text-mid); }
.why-point-text strong { display: block; color: var(--text); font-weight: 700; margin-bottom: 0.15rem; }

/* ============================================
   CTA STRIP
   ============================================ */
#cta {
  padding: 5rem 0;
  background: #0a0a0c;
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,188,156,0.14) 0%, transparent 55%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-text h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-text p { color: rgba(255,255,255,0.55); margin-top: 0.4rem; }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: #080809;
  padding: 4rem 0 1.5rem;
  border-top: 3px solid var(--green);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem; font-weight: 900;
  color: #fff; letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--green); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.75; }
.footer-col-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem; font-weight: 900;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  transition: color var(--trans);
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
#contact-hero {
  padding-top: var(--nav-h);
  background: #080809;
  position: relative; overflow: hidden;
  min-height: 42vh;
  display: flex; align-items: flex-end;
}
#contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,188,156,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.contact-hero-inner {
  position: relative; z-index: 1;
  padding: 4rem 1.5rem 3.5rem;
  max-width: 1100px; margin: 0 auto; width: 100%;
}
.contact-hero-inner h1 { color: #fff; }
.contact-hero-inner h1 em { color: var(--green); font-style: normal; }
.contact-hero-inner p { color: rgba(255,255,255,0.6); max-width: 480px; margin-top: 0.75rem; font-size: 1rem; }

#contact-body { padding: 5rem 0 6rem; background: #161619; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem; align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-channels { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.channel-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: #161619;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.channel-card:hover { border-color: var(--green); box-shadow: 0 2px 12px rgba(26,188,156,0.12); }
.ch-icon {
  width: 40px; height: 40px;
  background: var(--green-soft); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); flex-shrink: 0;
}
.ch-icon.wa { background: rgba(37,211,102,0.1); color: #1da851; }
.ch-label { font-size: 0.7rem; color: var(--text-light); font-family: 'Raleway', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.ch-value { font-size: 0.95rem; color: var(--text); font-weight: 700; }
.ch-arr { color: var(--text-light); margin-left: auto; }
.contact-note {
  background: var(--green-soft);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem; color: var(--text-mid);
  display: flex; gap: 0.75rem;
}

.form-wrap {
  background: #161619;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  margin-bottom: 1.75rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem; font-weight: 800;
  color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.07em;
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; color: var(--text);
  background: #0e0e10; outline: none;
  transition: border-color var(--trans);
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,188,156,0.1); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.btn-full { width: 100%; justify-content: center; }

.form-success {
  display: none;
  flex-direction: column; align-items: center; text-align: center;
  padding: 3rem 1.5rem; gap: 1rem;
}
.success-icon {
  width: 56px; height: 56px;
  background: var(--green-soft);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--green);
}
.form-success h3 { font-size: 1.3rem; }
.form-success p { font-size: 0.92rem; }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 52px; height: 52px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900; color: #fff;
  transition: transform var(--trans), box-shadow var(--trans);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ============================================
   ANIMACIONES / REVEAL
   ============================================ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE — TABLET (≤ 960px)
   ============================================ */
@media (max-width: 960px) {
  .nav-left .nav-link,
  .nav-right .nav-link,
  .nav-right .nav-btn-wa { display: none; }
  .nav-right .btn { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-center { justify-content: flex-start; padding-left: 0.5rem; }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text-side { padding: 3.5rem 1.5rem; margin: 0; max-width: 100%; }
  .hero-image-side { height: 320px; }
  .hero-badge { display: none; }

  .split-section { grid-template-columns: 1fr; min-height: auto; }
  .split-section.reverse { direction: ltr; }
  .split-img { height: 260px; }
  .split-content { padding: 2.5rem 1.5rem; }

  .why-grid { grid-template-columns: 1fr; min-height: auto; }
  .why-img { height: 260px; }
  .why-img::after { background: linear-gradient(to bottom, transparent 50%, var(--bg-alt) 100%); }
  .why-content { padding: 2.5rem 1.5rem; }

  .service-content { grid-template-columns: 200px 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================ */
@media (max-width: 600px) {
  :root { --nav-h: 60px; }

  .hero-text-side { padding: 2.5rem 1.25rem 3rem; }
  .hero-image-side { height: 240px; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; }

  .service-content { grid-template-columns: 1fr; }
  .service-img { height: 180px; }
  .service-header { padding: 1.1rem 1.25rem; }

  #servicios { padding: 4rem 0; }
  #quehacemos .split-content,
  #porqueelegirnos .why-content { padding: 2rem 1.25rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-hero-inner { padding: 2.5rem 1.25rem; }
  #contact-body { padding: 3rem 0 4rem; }
  .form-wrap { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
