
:root {
  --azul: #0F2235;
  --azul2: #1A3A5C;
  --dorado: #ECB42A;
  --naranja: #DB5A2B;
  --blanco: #FFFFFF;
  --negro: #0A0A0A;
  --crema: #F7F4EE;
  --gris: #F2F2F0;
  --texto: #444444;
}

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

html { scroll-behavior: smooth; }

body.incotop-home {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--texto);
  overflow-x: hidden;
}

/* ── NAV ── */
.inc-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }

#the-nav {
  background: transparent;
  transition: background 0.4s, border-color 0.4s;
  padding: 0;
  border-bottom: 1px solid transparent;
}

#the-nav.scrolled-nav {
  background: rgba(10,10,10,0.92) !important;
  backdrop-filter: blur(10px);
  border-color: rgba(236,180,42,0.15);
}

.inc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
}

.inc-brand { text-decoration: none; }

.inc-brand-name {
  font-family: 'Teko', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #fff;
  text-transform: uppercase;
}

.inc-nav-links { display: flex; gap: 36px; }

.inc-nav-links a {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── INTRO HERO ── */
.inc-intro { overflow: hidden; }

.inc-intro-grid {
  display: grid;
  width: 100%;
  position: relative;
}

.grid-1 {
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--azul);
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--crema);
}

.inc-intro-title {
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  z-index: 2;
}

.inc-intro-title h1 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 500;
  line-height: 0.9;
  color: #fff;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.inc-intro-title h1 strong { color: var(--dorado); font-weight: 600; }

.grid-1-hero, .grid-2-hero {
  position: relative;
  overflow: hidden;
}

/* Galería animada al estilo dwpinterics */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  height: 100%;
  padding: 4px;
}

.gallery span {
  overflow: hidden;
  display: block;
  animation: galleryScroll 12s linear infinite;
  animation-delay: calc(var(--i) * -1.5s);
}

.gallery span img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery span:hover img { transform: scale(1.05); }

@keyframes galleryScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

.inc-intro-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.inc-intro-desc p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--texto);
  max-width: 440px;
  font-weight: 300;
  margin-bottom: 32px;
}

.inc-intro-desc .brand-inc {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  color: var(--azul2);
  font-weight: 600;
}

/* ── BOTONES ── */
.btn-bord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid var(--azul);
  color: var(--azul);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.25s;
  font-weight: 500;
  width: fit-content;
}

.btn-bord:hover {
  background: var(--azul);
  color: #fff;
}

.btn-bord.dark {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}

.btn-bord.dark:hover {
  background: var(--dorado);
  border-color: var(--dorado);
  color: var(--azul);
}

.btn.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dorado);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(236,180,42,0.4);
  transition: border-color 0.2s;
}

.btn.btn-text:hover { border-color: var(--dorado); }

/* ── CREDENCIAL / STATS ── */
.inc-credencial {
  background: var(--negro);
  padding: 80px 60px;
}

.inc-credencial-title {
  text-align: center;
  margin-bottom: 60px;
}

.inc-credencial-title h2 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  color: #fff;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}

.inc-credencial-title h2 strong { color: var(--dorado); }
.inc-credencial-title h2 sup { font-size: 14px; color: rgba(255,255,255,0.4); letter-spacing: 3px; text-transform: uppercase; }

.inc-credencial-title p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.inc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.inc-stats > div {
  padding: 40px 32px;
  background: var(--negro);
  text-align: center;
}

.inc-stats h2 {
  font-family: 'Teko', sans-serif;
  font-size: 52px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.inc-stats h2 sup { font-size: 22px; color: var(--dorado); }

.inc-stats p {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── EYEBROW ── */
.eyebrow {
  margin-bottom: 16px;
}

.eyebrow span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dorado);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--dorado);
}

/* ── SERVICIOS ── */
.inc-servicios {
  background: var(--crema);
  padding: 100px 60px;
  position: relative;
}

.inc-servicios-grid { max-width: 1200px; margin: 0 auto; }

.inc-servicios-grid h2 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  color: var(--azul);
  line-height: 0.95;
  margin-bottom: 20px;
}

.inc-servicios-grid h2 strong { color: var(--azul2); font-weight: 700; }

.inc-serv-content {
  max-width: 480px;
  margin-bottom: 40px;
}

.inc-serv-content p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--texto);
  margin-bottom: 8px;
  font-weight: 300;
}

.inc-serv-holder { position: relative; }

.inc-serv-slider .serv-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  margin-right: 24px;
}

.serv-im { overflow: hidden; }
.serv-im img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.6s ease; }
.serv-item:hover .serv-im img { transform: scale(1.04); }

.serv-cap {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.serv-cap h3 {
  font-family: 'Teko', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--azul);
  letter-spacing: 1px;
}

.serv-cap p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}

.serv-navs { margin-top: 24px; }

.hr { height: 2px; background: rgba(0,0,0,0.08); position: relative; }
.hr .bar { height: 100%; background: var(--azul); transition: width 0.4s ease; }

.ars { display: flex; gap: 8px; margin-top: 16px; }

/* Slick custom arrows */
.slick-prev, .slick-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(15,34,53,0.3);
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.slick-prev:hover, .slick-next:hover { background: var(--azul); border-color: var(--azul); }
.slick-prev::before, .slick-next::before { color: var(--azul); }
.slick-prev:hover::before, .slick-next:hover::before { color: #fff; }

/* ── PROYECTOS ── */
.inc-proyectos {
  background: var(--negro);
  padding: 100px 0 0;
}

.inc-proy-head {
  padding: 0 60px 60px;
}

.inc-proy-head h2 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: #fff;
  line-height: 0.95;
  margin-top: 8px;
}

.inc-proy-head h2 strong { color: var(--dorado); font-weight: 700; }

/* Cards estilo dwpinterics con scroll stack */
.inc-proy-cards { padding: 0 60px; }

.cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.card-wrapper { position: relative; }

.card-blank {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--azul2);
  border-radius: 0;
  height: 380px;
  margin-bottom: 3px;
}

.card-blank:hover { }

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.5s ease, transform 0.8s ease;
}

.card-blank:hover .card-image {
  opacity: 0.4;
  transform: scale(1.04);
}

.card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 40px;
  background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.card-title {
  font-family: 'Teko', sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
  flex: 1;
}

.card-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dorado);
  padding: 5px 12px;
  border: 1px solid rgba(236,180,42,0.4);
}

.card-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.card-number {
  font-family: 'Teko', sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  line-height: 1;
}

.inc-proy-more {
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 40px;
}

.inc-proy-more h2 {
  font-family: 'Teko', sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}

.inc-proy-more h2 strong { color: #fff; font-weight: 700; }

/* ── NOSOTROS / PROCESO ── */
.inc-nosotros {
  padding: 80px 60px 40px;
  background: var(--crema);
}

.inc-nos-grid { margin-top: 16px; }

.inc-nos-grid h2 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--azul);
  line-height: 0.95;
  margin-bottom: 16px;
}

.inc-nos-grid h2 strong { font-weight: 700; }

.inc-nos-grid p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--texto);
  font-weight: 300;
  max-width: 520px;
}

/* ── PROOF / PROCESO SLIDER ── */
.inc-nos-proof { background: var(--crema); padding: 0 60px 80px; }

.proof-slider .proof-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 480px;
  overflow: hidden;
  margin-right: 3px;
}

.proof-item .bk {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.proof-content.grey { background: #E8E6E0; }
.proof-content.dark { background: var(--azul); }
.proof-content.gold { background: var(--dorado); }

.proof-content .no {
  font-family: 'Teko', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(0,0,0,0.3);
  font-weight: 400;
}

.proof-content.dark .no { color: rgba(255,255,255,0.3); }

.proof-content h3 {
  font-family: 'Teko', sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--azul);
  letter-spacing: 1px;
}

.proof-content.dark h3 { color: #fff; }
.proof-content.gold h3 { color: var(--azul); }

.proof-content p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(0,0,0,0.5);
  font-weight: 300;
  max-width: 320px;
}

.proof-content.dark p { color: rgba(255,255,255,0.5); }

#proof-nav {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

/* ── CTA ── */
.inc-cta {
  background: var(--azul);
  padding: 80px 60px;
}

.inc-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.inc-cta h3 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 32px;
}

.inc-cta h3 strong { color: var(--dorado); font-weight: 700; }
.inc-cta h3 sup { font-size: 18px; color: var(--dorado); }

.inc-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--dorado);
  color: var(--azul);
  text-decoration: none;
  font-family: 'Teko', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}

.inc-cta a:hover { background: #F5C340; transform: translateY(-2px); }

/* ── FOOTER ── */
.inc-footer {
  background: var(--negro);
  padding: 60px 60px 32px;
  border-top: 1px solid rgba(236,180,42,0.12);
}

.inc-footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.inc-footer-brand strong {
  font-family: 'Teko', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.inc-footer-brand {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}

.inc-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.inc-footer-links h6 {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 16px;
  font-weight: 400;
}

.inc-footer-links ul { list-style: none; }

.inc-footer-links ul li {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
  font-weight: 300;
  line-height: 1.5;
}

.inc-footer-links ul li a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.inc-footer-links ul li a:hover { color: rgba(255,255,255,0.8); }

.inc-footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  letter-spacing: 1px;
}

.inc-footer-bottom a { color: var(--dorado); text-decoration: none; }

/* ── SCROLL REVEAL ── */
.noshow {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.noshow.show {
  opacity: 1;
  transform: translateY(0);
}

.novis { visibility: hidden; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .inc-nav-inner { padding: 16px 24px; }
  .inc-nav-links { display: none; }
  .grid-1, .grid-2 { grid-template-columns: 1fr; }
  .inc-intro-title { padding: 80px 32px 48px; }
  .inc-intro-desc { padding: 40px 32px; }
  .inc-stats { grid-template-columns: 1fr 1fr; }
  .inc-servicios { padding: 60px 32px; }
  .inc-serv-slider .serv-item { grid-template-columns: 1fr; }
  .inc-proy-head, .inc-proy-cards, .inc-proy-more { padding-left: 32px; padding-right: 32px; }
  .inc-nosotros, .inc-nos-proof { padding-left: 32px; padding-right: 32px; }
  .proof-slider .proof-item { grid-template-columns: 1fr; }
  .inc-cta { padding: 60px 32px; }
  .inc-footer { padding: 48px 32px 24px; }
  .inc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .inc-credencial { padding: 60px 32px; }
}