/* ─── TIPOGRAFÍA ───────────────────────────── */
@font-face {
  font-family: 'AvenirLTPro';
  src: url('fonts/AvenirLTProLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirLTPro';
  src: url('fonts/AvenirLTProMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirLTPro';
  src: url('fonts/AvenirLTProHeavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirLTPro';
  src: url('fonts/AvenirLTProBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

/* ─── RESET ───────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── VARIABLES ───────────────────────── */

:root {
  --navy: #163240;
  --blue: #6294AD;
  --light: #EEF4F5;
  --mid: #B2BDC3;
  --gray: #8E959B;
  --white: #ffffff;

  --font: 'AvenirLTPro', sans-serif;
}

/* ─── BASE ────────────────────────────── */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
}

/* ─── NAV ─────────────────────────────── */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 5%;
  height: 72px;

  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);

  border-bottom: 1px solid #dde8ec;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;

  list-style: none;
}

.nav-links a {
  text-decoration: none;
  text-transform: uppercase;

  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .06em;

  color: var(--navy);

  transition: .2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;

  padding: 9px 22px;
  border-radius: 2px;
}

.nav-cta:hover {
  background: var(--blue);
}

@media(max-width:720px){
  .nav-links{
    display:none;
  }
}

/* ─── HERO ────────────────────────────── */

#inicio {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;

  padding-top: 72px;

  background: var(--navy);
}

.hero-logo{
    width: min(500px, 90vw);
    height: auto;
}

.hero-photo {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(22,50,64,0.5),
      rgba(22,50,64,0.78)
    ),
    url(img/Captura\ de\ pantalla\ 2026-05-06\ 105348.png)
    center/cover no-repeat;
}

.hero-content {
  position: relative;
  text-align: center;

  max-width: 860px;
  padding: 0 5%;
}

.hero-title {
  font-size: clamp(2.2rem,5vw,3.8rem);
  font-weight: 300;
  line-height: 1.2;

  color: var(--white);

  margin-bottom: 1.5rem;
}

.hero-title strong {
  font-weight: 900;
}

.hero-sub {
  max-width: 580px;

  margin: 0 auto 2.5rem;

  color: var(--mid);

  line-height: 1.8;
}

.btn {
  display: inline-block;

  padding: 13px 34px;

  text-decoration: none;
  text-transform: uppercase;

  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .1em;

  border-radius: 2px;

  transition: .25s;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);

  border: 2px solid var(--blue);
}

.btn-primary:hover {
  background: var(--blue);
}

.btn-outline-w {
  margin-left: 1rem;

  border: 2px solid rgba(255,255,255,.3);

  color: var(--white);
}

.btn-outline-w:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;

  margin-top: 2rem;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;

  color: var(--white);
}

.stat-label {
  margin-top: 5px;

  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;

  color: var(--gray);

  margin-bottom: 2rem;
}

/* ─── SECTIONS ────────────────────────── */

.sec {
  padding: 100px 5%;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

.stag {
  margin-bottom: .7rem;

  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;

  color: var(--blue);
}

.stitle {
  font-size: clamp(1.7rem,3vw,2.5rem);
  font-weight: 300;

  margin-bottom: 1rem;
}

.stitle strong {
  font-weight: 900;
}

.sdiv {
  width: 40px;
  height: 3px;

  margin: 1rem 0;

  background: var(--blue);
}

.ssub {
  max-width: 560px;

  color: var(--gray);
  line-height: 1.8;
}

/* ─── PROYECTOS ───────────────────────── */

/* ─── INVERSIÓN / COMERCIALIZACIÓN ───────────────── */

#inversion {
  background: var(--navy);
}

#inversion .stitle {
  color: var(--white);
}

#inversion .stag {
  color: var(--blue);
}

#inversion .sdiv {
  background: var(--blue);
}

#inversion .ssub {
  color: var(--mid);
  max-width: 600px;
}

.oport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));

  gap: 1px;

  margin-top: 3.5rem;

  background: rgba(255,255,255,0.06);
}

.ocard {
  background: rgba(22,50,64,0.8);

  padding: 2.4rem 2rem;

  transition: background .3s;
}

.ocard:hover {
  background: rgba(98,148,173,0.15);
}

.oicon {
  display: block;

  margin-bottom: 1rem;

  font-size: 1.8rem;
}

.otitle {
  margin-bottom: .7rem;

  font-size: 1rem;
  font-weight: 800;

  color: var(--white);
}

.odesc {
  font-size: .9rem;
  line-height: 1.8;

  color: var(--gray);
}

.octa {
  margin-top: 3rem;
  text-align: center;
}

.octa p {
  margin-bottom: 1.5rem;

  color: var(--mid);
}

#proyectos {
  background: var(--light);
}

.proyectos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
  gap: 24px;

  margin-top: 3rem;
}

.pcard {
  overflow: hidden;

  background: var(--white);

  box-shadow: 0 2px 16px rgba(22,50,64,.07);

  transition: .3s;
}

.pcard:hover {
  transform: translateY(-6px);
}

.pimg {
  height: 220px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg,var(--navy),#1e4a62);
}
.pimg-photo { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}

.pimg-num {
  font-size: 5rem;
  font-weight: 900;

  color: rgba(255,255,255,.05);
}

.pbadge {
  position: absolute;
  top: 16px;
  left: 16px;

  padding: 4px 12px;

  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pdatos {
  display: flex;
  flex-direction: column;

  gap: .9rem;

  margin-bottom: 1.5rem;
  padding: 1.2rem 0;

  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}

.pdato {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 1rem;
}

.dlabel {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;

  color: var(--mid);
}

.dval {
  font-size: .95rem;
  font-weight: 700;

  color: var(--navy);
}

.plink {
  color: var(--navy);
}

.b-active {
  background: var(--blue);
  color: var(--white);
}

.b-soon {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
}

.pbody {
  padding: 2rem;
}

.pname {
  margin-bottom: .7rem;

  font-size: 1.3rem;
  font-weight: 800;
}

.pdesc {
  margin-bottom: 1.4rem;

  color: var(--gray);
  line-height: 1.8;
}

.stitle1 {
  padding-top: 2rem;
  font-size: clamp(1.5rem,2.5vw,2.3rem);
  font-weight: 300;

  margin-bottom: 1rem;
}

.stitle1 strong {
  font-weight: 800;
}

.pcategorias {
  padding-top: 2rem;
  font-size: 2rem;
  font-weight: 400;
  align-content: center;
}

/* ─── NOSOTROS ───────────────────────────── */

#nosotros {
  background: var(--white);
}

.nos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 5rem;
  align-items: center;
}

@media(max-width:768px){
  .nos-inner{
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.nos-visual {
  height: 480px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      160deg,
      var(--light) 0%,
      #d4e5ed 100%
    );
}

.nos-lb {
  margin-top: .5rem;

  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;

  color: rgba(22,50,64,.09);
}

.nos-badge {
  display: inline-block;

  padding: 6px 18px;

  border: 1.5px solid var(--blue);

  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;

  color: var(--blue);
}

.nos-quote {
  margin: 1.8rem 0;
  padding: 1.2rem 1.5rem;

  border-left: 3px solid var(--blue);

  background: var(--light);

  font-size: .92rem;
  line-height: 1.75;
  font-style: italic;

  color: var(--navy);
}

.nos-list {

list-style: circle;
}

.nos-list li {
  display: flex;
  align-items: center;
  gap: .8rem;

  padding: .82rem 0;

  border-bottom: 1px solid var(--light);

  font-size: .93rem;

  color: #444;
}

.nos-list li::before {
  content: '';

  width: 7px;
  height: 7px;

  flex-shrink: 0;

  background: var(--blue);
}
.sstitle {
  font-weight: 300;
  padding: .5rem;
font-size: 2rem;
}
/* ─── CONTACTO ────────────────────────── */

/* ─── CONTACTO / HABLEMOS ───────────────────────────── */

#contacto {
  background: var(--light);
}

.cnt-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;

  gap: 5rem;

  margin-top: 3.5rem;
}

@media(max-width:768px){
  .cnt-wrap{
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.cnt-info h3 {
  margin-bottom: .5rem;

  font-size: 1.1rem;
  font-weight: 800;

  color: var(--navy);
}

.cnt-info p {
  margin-bottom: 2rem;

  font-size: .92rem;
  line-height: 1.8;

  color: var(--gray);
}

.cnt-items {
  display: flex;
  flex-direction: column;

  gap: 1.2rem;
}

.cnt-item {
  display: flex;
  align-items: flex-start;

  gap: 1rem;
}

.cnt-ico {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: var(--mid);

  font-size: 1rem;

  color: var(--blue);
}

.cnt-text label {
  display: block;

  margin-bottom: 2px;

  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;

  color: var(--mid);
}

.cnt-text span {
  font-size: .95rem;
  font-weight: 600;

  color: var(--navy);
}

/* ─── FORM ───────────────────────── */

.fgroup {
  margin-bottom: 1.3rem;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 1.2rem;
}

@media(max-width:480px){
  .frow{
    grid-template-columns: 1fr;
  }
}

.flabel {
  display: block;

  margin-bottom: .4rem;

  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;

  color: var(--navy);
}

input,
textarea,
select {
  width: 100%;

  padding: 11px 14px;

  border: 1.5px solid #cdd8de;
  border-radius: 2px;

  outline: none;

  background: var(--white);

  font-family: var(--font);
  font-size: .93rem;

  color: var(--navy);

  transition: border-color .2s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.fsub {
  width: 100%;

  padding: 14px;

  border: none;
  border-radius: 2px;

  cursor: pointer;

  background: var(--navy);

  font-family: var(--font);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;

  color: var(--white);

  transition: background .2s;
}

.fsub:hover {
  background: var(--blue);
}

#contacto {
  background: var(--white);
}

.cnt-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;

  margin-top: 3rem;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fgroup {
  margin-bottom: 1.2rem;
}

.flabel {
  display: block;

  margin-bottom: .5rem;

  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;

  padding: 12px 14px;

  border: 1.5px solid #cdd8de;

  font-family: var(--font);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.fsub {
  width: 100%;

  padding: 14px;

  border: none;

  background: var(--navy);
  color: var(--white);

  text-transform: uppercase;
  font-weight: 700;

  cursor: pointer;
}

.fsub:hover {
  background: var(--blue);
}

/* ─── FOOTER ──────────────────────────── */

footer {
  padding: 3rem 5%;

  text-align: center;

  background: var(--navy);

  color: rgba(255,255,255,.4);
}

.ft-ig {
  padding: .5rem;
}
.ft-a {
  color: var(--blue);
  text-decoration: none;
}

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;

    width:65px;
    height:65px;

    background:#25D366;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 4px 12px rgba(0,0,0,.25);
    z-index:9999;

    transition:all .3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

.whatsapp-float img{
    width:55px;
    height:55px;
}