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

:root {
  --navy:   #0A1628;
  --navy2:  #0F2040;
  --orange: #F5820A;
  --orange2:#E06A00;
  --white:  #F8F6F1;
  --gray:   #6B7280;
  --light:  #EEF0F5;
  --wa:     #25D366;
}



/* Barlow */

@font-face {
    font-family: 'Barlow';
    src: url('/fonts/Barlow/Barlow-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('/fonts/Barlow/Barlow-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('/fonts/Barlow/Barlow-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('/fonts/Barlow/Barlow-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
  font-family: 'Barlow';
  src: url('/fonts/Barlow/Barlow-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('/fonts/Barlow/Barlow-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('/fonts/Barlow/Barlow-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('/fonts/Barlow/Barlow-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/Barlow_Condensed/BarlowCondensed-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/Barlow_Condensed/BarlowCondensed-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/Barlow_Condensed/BarlowCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/Barlow_Condensed/BarlowCondensed-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/Barlow_Condensed/BarlowCondensed-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}



html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── NAV ───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,130,10,0.2);
  transition: background 0.3s;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.25s;
}
.nav-logo:hover img {
  filter: brightness(0) saturate(100%) invert(55%) sepia(80%) saturate(600%) hue-rotate(5deg) brightness(110%);
}

.nav-links {
  display: flex; gap: 2rem; align-items: center;
  list-style: none;
}
.nav-links a {
  color: rgba(248,246,241,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--wa);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #1ebd5a !important; color: #fff !important; }

.hamburger {
  display: none; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ──────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(10,22,40,0.82) 0%, rgba(10,22,40,0.55) 50%, rgba(10,22,40,0.78) 100%),
    url('/assets/hero.jpg') center/cover no-repeat;
}

/* animated rope line */
.hero-rope {
  position: absolute; top: 0; right: 18%;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(245,130,10,0.4) 30%, rgba(245,130,10,0.7) 70%, transparent 100%);
  animation: ropeSwing 4s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes ropeSwing {
  0%, 100% { transform: rotate(-1.5deg); }
  50%       { transform: rotate(1.5deg); }
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 6% 9vh;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,130,10,0.15);
  border: 1px solid rgba(245,130,10,0.5);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s both;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  animation: fadeUp 0.8s 0.25s both;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
  -webkit-text-stroke: 2px var(--orange);
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(248,246,241,0.82);
  max-width: 520px;
  line-height: 1.6;
  animation: fadeUp 0.8s 0.4s both;
}

.hero-ctas {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: fadeUp 0.8s 0.55s both;
}

.btn-wa {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--wa);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
}
.btn-wa:hover {
  background: #1ebd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
.btn-wa svg { width: 22px; height: 22px; flex-shrink: 0; }

.btn-email {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid rgba(248,246,241,0.4);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-email:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  bottom: 4vh;
  right: 6%;
  display: flex;
  gap: 2.5rem;
  animation: fadeUp 0.8s 0.7s both;
  z-index: 3;
}
.stat {
  text-align: center;
  min-width: 70px;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(248,246,241,0.6);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  display: block;
  line-height: 1.4;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── STRIP ─────────────────────────────────────── */
.strip {
  background: var(--orange);
  padding: 0.85rem 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.strip-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.strip-dot {
  width: 5px; height: 5px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.4;
}

/* ── SECTIONS ──────────────────────────────────── */
section { padding: 6rem 6%; }
section:nth-child(even) { background: var(--light); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--navy);
}

.section-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.7;
}

/* ── SERVICIOS ─────────────────────────────────── */
#servicios { background: var(--navy); }
#servicios .section-title { color: var(--white); }
#servicios .section-label  { color: var(--orange); }
#servicios .section-sub    { color: rgba(248,246,241); }

.services-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
}

.service-card {
  background: var(--navy2);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--orange);
  transition: height 0.35s;
}
.service-card:hover { background: #162945; border-color: rgba(245,130,10,0.2); }
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 50px; height: 50px;
  background: rgba(245,130,10,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.25s;
}
.service-card:hover .service-icon { background: rgba(245,130,10,0.22); }
.service-icon svg { width: 26px; height: 26px; color: var(--orange); }

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(248,246,241);
  line-height: 1.65;
}

/* ── POR QUÉ ───────────────────────────────────── */
#porque {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.porque-visual {
  position: relative;
  height: 520px;
  border-radius: 6px;
  overflow: hidden;
}
.porque-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.porque-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: var(--orange);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}

.diferenciadores {
  display: flex; flex-direction: column; gap: 2rem;
  margin-top: 2.5rem;
}
.dif-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.dif-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--orange);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.dif-icon svg { width: 22px; height: 22px; color: var(--navy); }
.dif-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.dif-desc {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 0.25rem;
}

/* ── PROCESO ───────────────────────────────────── */
#proceso { background: var(--light); text-align: center; }

.steps {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 3.2rem; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 16px);
}

.step {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  position: relative; z-index: 1;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.step-desc {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 220px;
}

/* ── GALERÍA ───────────────────────────────────── */
#galeria { background: var(--navy); padding-bottom: 5rem; }
#galeria .section-title { color: var(--white); }
#galeria .section-sub   { color: rgba(248,246,241); }

/* Filter tabs */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 2.5rem; margin-bottom: 2rem;
}
.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 3px;
  border: 1px solid rgba(248,246,241,0.15);
  background: transparent;
  color: rgba(248,246,241,0.5);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--navy);
}

/* Masonry grid */
.masonry-grid {
  columns: 4 220px;
  column-gap: 8px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  display: block;
}
.masonry-item img {
  width: 100%; display: block;
  transition: transform 0.5s, filter 0.4s;
  filter: brightness(0.82) saturate(0.9);
}
.masonry-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}
.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1rem;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.2rem;
}
.masonry-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--white); line-height: 1.2;
}
.masonry-zoom {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 32px; height: 32px;
  background: rgba(245,130,10,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.masonry-item:hover .masonry-zoom { opacity: 1; }
.masonry-zoom svg { width: 16px; height: 16px; color: #fff; }

/* hidden items */
.masonry-item.hidden { display: none; }

/* Vorher/Nachher Slider */
.before-after-section {
  margin-top: 4rem;
}
.ba-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.6rem;
}
.ba-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.8rem;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 2rem;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.ba-item {
  border-radius: 6px; overflow: hidden;
  position: relative; user-select: none;
}
.ba-container {
  position: relative; width: 100%; height: 280px; overflow: hidden;
}
.ba-after {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.ba-before {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 50%;
  background-size: cover; background-position: center;
  overflow: hidden;
  transition: none;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  width: 3px; background: #fff;
  left: 50%; transform: translateX(-50%);
  cursor: ew-resize; z-index: 5;
}
.ba-handle::before {
  content: '◀ ▶';
  position: absolute; top: 50%; transform: translateY(-50%);
  left: 50%; transform: translate(-50%, -50%);
  background: #fff;
  color: var(--navy);
  font-size: 0.65rem; font-weight: 900;
  padding: 0.4rem 0.5rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.ba-labels {
  display: flex; justify-content: space-between;
  padding: 0.6rem 1rem;
  background: rgba(10,22,40,0.8);
}
.ba-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.ba-tag.antes { color: #ff6b6b; }
.ba-tag.despues { color: var(--wa); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(6,13,24,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner {
  position: relative;
  max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox-img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.lightbox-caption {
  margin-top: 1rem; text-align: center;
}
.lightbox-caption .masonry-cat { font-size: 0.75rem; }
.lightbox-caption .masonry-title { font-size: 1.2rem; }
.lightbox-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(245,130,10,0.9);
  border: none; border-radius: 50%;
  color: #fff; font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: var(--orange2); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(245,130,10,0.5); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* gallery counter */
.gallery-count {
  font-size: 0.8rem;
  color: rgba(248,246,241,0.3);
  margin-top: 1.5rem;
  text-align: right;
}

@media (max-width: 900px) {
  .masonry-grid { columns: 2 160px; }
  .ba-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .masonry-grid { columns: 2 120px; }
}

/* ── CTA BAND ──────────────────────────────────── */
#cta-band {
  background: var(--orange);
  padding: 5rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.0;
}

.cta-band-sub {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(10,22,40,0.7);
}

.cta-band-btns {
  display: flex; flex-wrap: wrap; gap: 1rem;
  flex-shrink: 0;
}

.btn-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-dark:hover { background: #162945; transform: translateY(-2px); }

.btn-wa-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--wa);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-wa-dark:hover { background: #1ebd5a; transform: translateY(-2px); }
.btn-wa-dark svg { width: 20px; height: 20px; }

/* ── CONTACTO ──────────────────────────────────── */
#contacto {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
#contacto .section-title { color: var(--white); }
#contacto .section-label  { color: var(--orange); }
#contacto .section-sub    { color: rgba(248,246,241,0.5); }

.contact-channels {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}

.channel {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.channel:hover { transform: translateX(6px); }

.channel-wa { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); }
.channel-wa:hover { background: rgba(37,211,102,0.18); }

.channel-email { background: rgba(245,130,10,0.1); border: 1px solid rgba(245,130,10,0.3); }
.channel-email:hover { background: rgba(245,130,10,0.18); }

.channel-phone { background: rgba(248,246,241,0.05); border: 1px solid rgba(248,246,241,0.1); }
.channel-phone:hover { background: rgba(248,246,241,0.1); }

.channel-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.channel-ico svg { width: 24px; height: 24px; }
.channel-wa .channel-ico { background: var(--wa); }
.channel-email .channel-ico { background: var(--orange); }
.channel-phone .channel-ico { background: rgba(248,246,241,0.15); }

.channel-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.45);
  margin-bottom: 0.15rem;
}
.channel-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* form */
.contact-form { display: flex; flex-direction: column; gap: 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-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.45);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--navy2); }

.btn-submit {
  background: var(--orange);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-submit:hover { background: var(--orange2); transform: translateY(-2px); }

/* ── FOOTER ────────────────────────────────────── */
footer {
  background: #060d18;
  padding: 2.5rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(245,130,10,0.15);
}

/* footer-logo via img */

.footer-copy {
  font-size: 0.8rem;
  color: rgba(248,246,241);
}

.footer-links {
  display: flex; gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(248,246,241);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

/* ── FLOATING WA ───────────────────────────────── */
.float-wa {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 60px; height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  animation: pulse 2.5s infinite;
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.1); animation: none; }
.float-wa svg { width: 32px; height: 32px; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 5% 2rem;
    border-bottom: 1px solid rgba(245,130,10,0.2);
    gap: 1.2rem;
  }
  .hamburger { display: flex; }

  #porque { grid-template-columns: 1fr; }
  .porque-visual { height: 320px; }

  #contacto { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; height: 240px; }

  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }

  .hero-stats { position: static; margin-top: 2rem; gap: 1.5rem; display: block; }
  #hero { align-items: center; }
  .hero-content { padding: 9rem 6% 4rem; }

  .form-row { grid-template-columns: 1fr; }

  #cta-band { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
}

@media (max-width: 500px) {
  section { padding: 4rem 5%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .hero-ctas { flex-direction: column; }
}


.mailform .sub{
	font-size:0.78rem;color:rgba(248,246,241,0.7);text-align:center;margin-top:0.5rem;
}

.climber {
	position: absolute;
	right: 2px;
	top: 100px;
	opacity: 0.5;
}	

@media (max-width: 900px) {
	.climber {		
		opacity: 0.25;
		max-height: 400px;
	}
}