:root {
  --orange: #FC7603;
  --gray: #736F6E;
  --dark: #011633;
  --white: #FFFFFF;
  --dark2: #021d45;
  --dark3: #010f24;
  --light-gray: #f4f4f2;
  --mid-gray: #e0dedd;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  background: var(--dark3);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}

nav.scrolled {
  background: rgba(1, 9, 24, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, .5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: color .25s;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .3s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .2s;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 90% 100%, 0 100%);
  text-decoration: none;
}

.nav-cta:hover {
  background: #e06a00;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' fill='%23fc7603'%3E%3Cpath d='M0 0l4 6 4-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .3s;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  background: rgba(1, 9, 24, .95);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .08);
  min-width: 230px;
  padding: 8px 0;
  z-index: 100;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu li {
  width: 100%;
}

.nav-dropdown-menu a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: all .25s;
}

.nav-links .nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(252, 118, 3, .1);
  color: var(--orange);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: .3s;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 80px;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(1, 22, 51, .7) 0%, rgba(1, 22, 51, .35) 50%, rgba(1, 22, 51, .55) 100%);
  pointer-events: none;
}

.hero-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-experience-badge {
  position: absolute;
  top: 120px;
  right: 8%;
  z-index: 3;
  background: var(--orange);
  padding: 20px 28px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 85% 100%, 0 100%);
  opacity: 0;
  animation: fadeLeft .8s 1.5s forwards;
}

.hero-experience-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}

.hero-experience-badge-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  margin-top: 2px;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(252, 118, 3, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 118, 3, .06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8% 10%;
  max-width: 1400px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}

.hero-eyebrow-line {
  width: 48px;
  height: 2px;
  background: var(--orange);
}

.hero-eyebrow span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: .95;
  letter-spacing: 2px;
  color: var(--white);
  opacity: 0;
  animation: fadeUp .9s .5s forwards;
}

.hero-title em {
  color: var(--orange);
  font-style: normal;
}

.hero-subtitle {
  margin-top: 20px;
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .7);
  max-width: 520px;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .9s forwards;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 92% 100%, 0 100%);
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #e06a00;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 36px;
  border: 1px solid rgba(255, 255, 255, .4);
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-stats {
  position: absolute;
  right: 8%;
  bottom: 10%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  animation: fadeLeft .8s 1.1s forwards;
  z-index: 2;
}

.hero-stat {
  text-align: right;
}

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.hero-stat-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  margin-left: auto;
  margin-top: 8px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .8s 1.3s forwards;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--orange), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── SECTION COMMON ── */
section {
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6%;
}

.section-pad {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 64px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.section-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.section-eyebrow span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: 2px;
  line-height: .95;
}

.section-title.dark {
  color: var(--dark);
}

.section-subtitle {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  max-width: 560px;
  line-height: 1.7;
}

.section-subtitle.dark {
  color: var(--gray);
}

/* ── ABOUT ── */
#about {
  background: var(--light-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: url('images/HOTELERÍA/2022/HOTEL WYNDHAM GARDEN MARINA MAZATLÁN/WGM 1.jpg') center/cover;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  padding: 28px 32px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}

.about-img-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
}

.about-img-badge-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
}

.about-accent-line {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px solid rgba(252, 118, 3, .3);
  pointer-events: none;
}

.about-text-col .section-header {
  margin-bottom: 36px;
}

.about-body {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 32px;
}

.about-mvv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.mvv-card {
  padding: 24px 20px;
  border-top: 3px solid var(--orange);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.mvv-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.mvv-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ── PRÓXIMOS PROYECTOS ── */
#upcoming {
  background: var(--dark);
  overflow: hidden;
}

.upcoming-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.upcoming-info {
  padding: 80px 60px 80px 0;
}

.upcoming-badge {
  display: inline-block;
  background: var(--orange);
  padding: 6px 16px;
  margin-bottom: 32px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .7;
  }
}

.upcoming-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 70px);
  letter-spacing: 2px;
  line-height: .95;
  color: var(--white);
  margin-bottom: 24px;
}

.upcoming-title em {
  color: var(--orange);
  font-style: normal;
  display: block;
}

.upcoming-subtitle {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
}

.upcoming-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  margin-bottom: 40px;
}

.upcoming-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.feature-tag {
  padding: 10px 16px;
  border: 1px solid rgba(252, 118, 3, .25);
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  flex-shrink: 0;
}

.upcoming-visual {
  position: relative;
  overflow: hidden;
  background: url('images/PRÓXIMOS PROYECTOS/SOHO RESIDENCIAL/SOHO NOCTURNO 1.png') center/cover;
}

.upcoming-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 40%);
}

.upcoming-visual-tag {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: var(--orange);
  padding: 16px 24px;
}

.upcoming-visual-tag strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
}

.upcoming-visual-tag span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

/* ── OBRAS EN PROCESO ── */
#obras {
  background: #09111f;
}

.obras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.obra-card {
  background: #09111f;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: default;
}

.obra-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.obra-card:hover::before {
  transform: scaleX(1);
}

.obra-card:hover {
  background: #0c1929;
}

.obra-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: rgba(252, 118, 3, .1);
  line-height: 1;
  margin-bottom: 16px;
  transition: color .3s;
}

.obra-card:hover .obra-card-num {
  color: rgba(252, 118, 3, .3);
}

.obra-card-location {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
}

.obra-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}

.obra-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.obra-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.obra-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .45);
}

.obra-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 16px;
}

.obra-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: statusBlink 2s infinite;
}

@keyframes statusBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

/* ── PORTAFOLIO ── */
#portfolio {
  background: var(--light-gray);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.portfolio-card-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

.portfolio-card:hover .portfolio-card-bg {
  transform: scale(1.08);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(1, 22, 51, .95) 0%, rgba(1, 22, 51, .3) 60%, transparent 100%);
  transition: opacity .4s;
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  transform: translateY(12px);
  transition: transform .4s;
}

.portfolio-card:hover .portfolio-card-info {
  transform: translateY(0);
}

.portfolio-card-category {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  font-family: 'Barlow Condensed', sans-serif;
}

.portfolio-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.1;
}

.portfolio-card-detail {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin-top: 6px;
  opacity: 0;
  transition: opacity .4s .1s;
}

.portfolio-card:hover .portfolio-card-detail {
  opacity: 1;
}

/* ── SERVICIOS ── */
#services {
  background: var(--dark3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 40px 28px;
  border: 1px solid rgba(255, 255, 255, .07);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(252, 118, 3, .1);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
}

.service-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  color: rgba(255, 255, 255, .03);
  line-height: 1;
  pointer-events: none;
}

/* ── POR QUÉ ELEGIRNOS ── */
#why {
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  overflow: hidden;
  background: url('images/VIVIENDA VERTICAL Y USOS MIXTOS/2024/OPEN SKIES TORRE I/OPEN SKIES 25.jfif') center/cover;
  aspect-ratio: 4/5;
}

.why-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252, 118, 3, .3), rgba(1, 22, 51, .8));
}

.why-visual-quote {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  padding: 28px 32px;
  background: rgba(1, 22, 51, .85);
  backdrop-filter: blur(12px);
  border-left: 4px solid var(--orange);
}

.why-visual-quote p {
  font-size: 16px;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}

.why-visual-quote cite {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-item {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background .25s;
}

.why-item:hover {
  background: rgba(255, 255, 255, .02);
}

.why-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(252, 118, 3, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}

.why-item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.why-item-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
}

/* ── ESTADÍSTICAS ── */
#stats {
  background: var(--orange);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--white);
}

.stat-suffix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: rgba(255, 255, 255, .7);
}

.stat-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin-top: 10px;
}

/* ── CONTACTO ── */
#contact {
  background: var(--dark3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info-group {
  margin-bottom: 40px;
}

.contact-info-label {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
}

.contact-info-value {
  font-size: 16px;
  color: var(--white);
  line-height: 1.7;
}

.contact-info-value a {
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}

.contact-info-value a:hover {
  color: var(--orange);
}

.contact-director {
  padding: 28px 28px;
  background: rgba(252, 118, 3, .08);
  border-left: 4px solid var(--orange);
  margin-bottom: 32px;
}

.contact-director-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  font-family: 'Barlow Condensed', sans-serif;
}

.contact-director-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-director-role {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .25s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  align-self: flex-start;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 92% 100%, 0 100%);
  transition: background .25s, transform .2s;
}

.form-submit:hover {
  background: #e06a00;
  transform: translateY(-2px);
}

/* ── MAP BANNER ── */
.map-banner {
  background: var(--dark2);
  padding: 40px 6%;
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.map-icon {
  color: var(--orange);
  font-size: 24px;
  flex-shrink: 0;
}

.map-address {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
}

.map-address strong {
  color: var(--white);
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  background: var(--dark3);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: 14px;
  transition: border-color .2s, color .2s, background .2s;
}

.social-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: 1px;
}

/* ── PRESENCIA NACIONAL ── */
#presencia {
  background: var(--dark);
}

.presencia-map-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.presencia-map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 620;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  overflow: hidden;
}

.presencia-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.map-pin {
  cursor: pointer;
}

.map-pin:hover .pin-dot {
  fill: #ff9a3c;
}

.pin-dot {
  fill: var(--orange);
  stroke: var(--white);
  stroke-width: 2;
  transition: fill .3s;
  animation: pinPulse 2s ease-in-out infinite;
}

.pin-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  fill: var(--white);
  paint-order: stroke;
  stroke: rgba(1, 22, 51, .9);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  dominant-baseline: auto;
  text-anchor: middle;
}

@keyframes pinPulse {

  0%,
  100% {
    opacity: .8;
  }

  50% {
    opacity: 1;
  }
}

.presencia-tooltip {
  position: absolute;
  background: rgba(1, 22, 51, .95);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
  border: 1px solid rgba(252, 118, 3, .3);
  z-index: 10;
}

.presencia-tooltip.visible {
  opacity: 1;
}

/* ── CARRUSEL ── */
.carrusel-wrap {
  position: relative;
  overflow: hidden;
}

.carrusel-track {
  display: flex;
  gap: 24px;
  animation: marquee 8s linear infinite;
}

.carrusel-wrap:hover .carrusel-track {
  animation-play-state: paused;
}

.carrusel-slide {
  flex: 0 0 calc(25% - 18px);
  min-width: 200px;
  aspect-ratio: 16/9;
  background: #f8f8f8;
  border: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: border-color .3s, background .3s;
}

.carrusel-slide:hover {
  border-color: var(--orange);
  background: #fff5ec;
}

.carrusel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .7;
  transition: filter .4s, opacity .4s;
}

.carrusel-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carrusel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--white);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s;
  z-index: 2;
}

.carrusel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.carrusel-btn-prev {
  left: 0;
}

.carrusel-btn-next {
  right: 0;
}

/* ── CV FEEDBACK ── */
.cv-feedback {
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 1.6;
}

.cv-feedback a {
  color: var(--orange);
  text-decoration: underline;
}

.cv-success {
  background: rgba(74, 222, 128, .1);
  border: 1px solid rgba(74, 222, 128, .25);
  color: #4ade80;
}

.cv-error {
  background: rgba(255, 68, 68, .1);
  border: 1px solid rgba(255, 68, 68, .25);
  color: #ff6b6b;
}

/* ── BOLSA DE TRABAJO ── */
.bolsa-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.bolsa-info {
  padding: 32px;
  background: rgba(252, 118, 3, .05);
  border: 1px solid rgba(252, 118, 3, .12);
}

.bolsa-icon {
  margin-bottom: 20px;
}

.bolsa-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
}

.bolsa-form .form-group {
  margin-bottom: 28px;
}

.bolsa-file-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bolsa-file-btn {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  padding: 10px 20px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .25s, border-color .25s;
}

.bolsa-file-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.bolsa-file-name {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s, transform .7s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark3);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .4s;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
}

.mobile-menu a:hover {
  color: var(--orange);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 6%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

  .about-grid,
  .why-grid,
  .contact-grid,
  .bolsa-grid {
    grid-template-columns: 1fr;
  }

  .carrusel-slide {
    flex: 0 0 calc(33.33% - 16px);
  }

  .obras-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding-bottom: 32px;
  }

  .stat-item:last-child,
  .stat-item:nth-child(2) {
    border-bottom: none;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .upcoming-inner {
    grid-template-columns: 1fr;
  }

  .upcoming-visual {
    min-height: 300px;
  }

  .hero-stats,
  .hero-experience-badge {
    display: none;
  }

  .about-img-badge {
    right: 0;
    bottom: -16px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .obras-grid,
  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .carrusel-slide {
    flex: 0 0 calc(50% - 12px);
  }

  .about-mvv {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .map-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-pad {
    padding: 64px 0;
  }

  .upcoming-info {
    padding: 60px 24px;
  }
}

/* ── Toast ── */
.toast-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .5px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  transform: translateX(120%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), opacity .4s;
  max-width: 380px;
}
.toast.show {
  transform: translateX(0);
  opacity: 1;
}
.toast-success {
  background: #1a7a3a;
  border-left: 4px solid #2ecc71;
}
.toast-error {
  background: #b33a3a;
  border-left: 4px solid #ff6b6b;
}