:root{
      /* Paleta solicitada */
      --navy:#001d37;         /* base y fondos oscuros */
      --aqua:#00cdc6;         /* acentos */
      --gold:#fcbe22;         /* CTAs */
      --ink:#d6e1ea;          /* texto sobre dark */
      --muted:#9fb3c3;        /* texto secundario */
      --bg:#00192f;           /* variación */
      --white:#ffffff;
      --card:#031f3b;         /* cards dark */
      --radius:20px;
      --shadow:0 20px 50px rgba(0,0,0,.35);
      --shadow-soft:0 10px 30px rgba(0,0,0,.25);
      --speed:720ms;
    }

    html,body{height:100%}
    body{
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      color:var(--navy);
      overflow-x:hidden;
    }

    /* Texturas sutiles: grain + grid */
    .texture::before{
      content:""; position:fixed; inset:0; pointer-events:none; z-index:0;
      background:
        linear-gradient(0deg, transparent 24%, rgba(255,255,255,.03) 25%, rgba(255,255,255,.03) 26%, transparent 27%, transparent 74%, rgba(255,255,255,.03) 75%, rgba(255,255,255,.03) 76%, transparent 77%),
        linear-gradient(90deg, transparent 24%, rgba(255,255,255,.03) 25%, rgba(255,255,255,.03) 26%, transparent 27%, transparent 74%, rgba(255,255,255,.03) 75%, rgba(255,255,255,.03) 76%, transparent 77%);
      background-size: 40px 40px, 40px 40px;
      mix-blend-mode: soft-light;
    }
    .texture::after{
      content:""; position:fixed; inset:0; pointer-events:none; z-index:0;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.04"/></svg>');
    }

    a{color:var(--aqua); text-decoration:none}
    a:hover{opacity:.9}

    /* Header */
    .navbar{
        
      --pad: 16px 24px;
      padding:var(--pad);
      background: radial-gradient(1200px 800px at 10% -10%,     rgba(0,205,198,.15), transparent 60%),
                  radial-gradient(1000px 700px at 110% 110%, rgba(252,190,34,.12), transparent 60%),
                  linear-gradient(180deg, var(--navy), var(--bg));
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(255,255,255,.06);
      position:sticky; top:0; z-index:1000;
      transition: background var(--speed) ease, box-shadow var(--speed) ease;
    }
    .navbar.scrolled{ background:rgba(0,0,0,.5); box-shadow: var(--shadow-soft); }
    .brand-logo{ height:36px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }

    .nav-link{ color:var(--ink)!important; font-weight:600; letter-spacing:.2px; position:relative }
    .nav-link::after{ content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:linear-gradient(90deg,var(--aqua),var(--gold)); transition:width .25s ease }
    .nav-link:hover::after{ width:100% }

    /* Buttons */
    .btn-gold{ background:var(--gold); color:#1a1600; font-weight:800; border:none; border-radius:999px; padding:12px 20px; box-shadow:0 8px 20px rgba(252,190,34,.3); transition: transform .2s ease, box-shadow .3s ease }
    .btn-gold:hover{ transform: translateY(-1px); box-shadow:0 14px 28px rgba(252,190,34,.38);color: black; background-color: rgba(255, 255, 255, 1);}
    .btn-outline-aqua{ border:1px solid rgba(0,205,198,.6); color:var(--ink); border-radius:999px; padding:12px 18px; background:rgba(0,205,198,.08); backdrop-filter: blur(6px)}
   
    /* Hero */
 
    .hero{ 
              background: radial-gradient(1200px 800px at 10% -10%,     rgba(0,205,198,.15), transparent 60%),
                  radial-gradient(1000px 700px at 110% 110%, rgba(252,190,34,.12), transparent 60%),
                  linear-gradient(180deg, var(--navy), var(--bg));
        
        position:relative; z-index:1; padding-bottom: 150px;padding-top: 20px;}
    .hero h1{ font-weight:800; letter-spacing:-.02em; line-height:1.05 }
    .badge-aqua{ display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px; font-weight:700; background:rgba(0,205,198,.12); border:1px solid rgba(0,205,198,.45) }
    .spark{ width:8px; height:8px; background:var(--aqua); border-radius:50%; box-shadow:0 0 0 6px rgba(0,205,198,.18) }

    .hero-card{ background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border:1px solid rgba(255,255,255,.12); border-radius:var(--radius); padding:24px; box-shadow: var(--shadow); backdrop-filter: blur(8px); position:relative; overflow:hidden }
    .corner{ position:absolute; inset:auto -30px -30px auto; width:220px; height:220px; background: radial-gradient(closest-side, rgba(0,205,198,.6), rgba(0,205,198,0)); filter: blur(20px); opacity:.25 }

    .kpi{ display:flex; gap:12px; align-items:center; padding:12px 14px; border-radius:14px; background:rgb(3, 31, 59); border:1px solid rgba(255,255,255,.06) }
    .kpi strong{ font-size:1.35rem; color:var(--white) }
    .kpi small{ color:var(--muted) }

    /* Sections */
    section{ position:relative; z-index:1 }
    .section-title{ font-weight:800; letter-spacing:-.02em }
    .lead{ color:var(--ink); opacity:.9 }

    /* Project cards */
    .pro{display: flex; text-align: center; margin-right: 0; justify-content: center;}
    .project-card{ background:var(--card); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-soft);  transition:
      transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);}
    .project-card:hover{   transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.32);}
    .project-media{ aspect-ratio:16/9; background: radial-gradient(120% 120% at 0% 0%, rgba(0,205,198,.18), transparent 60%), linear-gradient(180deg, #052243, #041a33) }
    .project-badge{ position:absolute; top:14px; left:14px; background:var(--card); color:var(--white); border:1px solid var(--aqua); padding:6px 10px; border-radius:999px; font-size:.8rem; font-weight:700 }

    /* Feature list */
    .feature{ display:flex; gap:14px; align-items:flex-start }
    .icon-dot{ width:10px; height:10px; background:var(--aqua); border-radius:50%; box-shadow:0 0 0 6px rgba(0,205,198,.12) }

    /* Contact */
    .contact{       background: radial-gradient(1200px 800px at 10% -10%,     rgba(0,205,198,.15), transparent 60%),
                  radial-gradient(1000px 700px at 110% 110%, rgba(252,190,34,.12), transparent 60%),
                  linear-gradient(180deg, var(--navy), var(--bg)); }
    .form-control{ background:#061e36; color:var(--w); border:1px solid rgba(255,255,255,.1); border-radius:14px }
    .form-control::placeholder{ color:#ffffff }
    .form-control:focus{ background:#081f35; border-color: rgba(0,205,198,.5); box-shadow:0 0 0 4px rgba(0,205,198,.15) }

    /* Footer */
    footer{
              background: radial-gradient(1200px 800px at 10% -10%,     rgba(0,205,198,.15), transparent 60%),
                  radial-gradient(1000px 700px at 110% 110%, rgba(252,190,34,.12), transparent 60%),
                  linear-gradient(180deg, var(--navy), var(--bg));
        color:var(--white); border-top:1px solid rgba(255,255,255,.08) }

    /* Reveal on scroll */
    .reveal{ opacity:0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; will-change: opacity, transform }
    .reveal.reveal-visible{ opacity:1; transform: none }

    /* Utilities */
    .maxw-700{ max-width:700px }
    .maxw-900{ max-width:900px }
    .blur-spot{ position:absolute; filter: blur(40px); opacity:.35; pointer-events:none }
    .ring{ position:absolute; inset:auto auto -80px -80px; width:220px; height:220px; border-radius:50%; border:2px dashed rgba(0,205,198,.35) }

    @media (min-width: 992px){
      .hero h1{ font-size: clamp(2.6rem, 4vw + .5rem, 4.2rem) }
    }

/* Contenedor de imagen */
.project-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

/* Imagen cubre todo */
.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badge arriba */
.project-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
}

/* Título sobre imagen */
.project-title-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  margin: 0;
  padding: 10px 14px;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  border-radius: 12px;
  z-index: 3;
}

/* Parte inferior */
.project-body {
  background: var(--card);
  border-radius: 0 0 20px 20px;
}


/* Tarjeta principal de la sección */
.about-card {
  background: linear-gradient(180deg, #031d34, #021525);
 
  padding: 40px 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}

/* Imagen izquierda */
.about-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* Cajitas internas */
.about-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  padding: 18px 20px;
  border-radius: 16px;
  backdrop-filter: blur(4px);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

/* Puntito Aqua */
.about-dot {
  width: 14px;
  height: 14px;
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(0,205,198,.18);
  flex-shrink: 0;
}

/* Título */
#quienes .section-title {
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
}

/* Contenedor de cada imagen */
.gallery-item {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform .6s cubic-bezier(.16,1,.3,1), 
              box-shadow .6s cubic-bezier(.16,1,.3,1);
}

/* Imagen dentro */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}

/* Hover premium */
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}

/* ==== CONTÁCTANOS ==== */

.contacto-section {
  background: #ffffff; /* Sección clara como en el diseño */
}

/* Cuadro azul detrás del modelo */
.contacto-bg {
  position: absolute;
  top: 150px;
  left: 10px;
  width: 260px;
  height: 260px;
  background: #01263f;
  border-radius: 22px;
  z-index: 1;
}

/* Modelo */
.contacto-img {
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 2;
}

/* Formulario */
.contacto-form .form-control {
  background: #f6f7f8;
  border: none;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 1rem;
  color: #001d37;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.04);
}

.contacto-form .form-control::placeholder {
  color: #8ea0b0;
}

/* Botones (usa tus estilos ya definidos) */
.btn-gold {
  background: var(--gold);
  border-radius: 50px;
  padding: 12px 26px;
  color: #1a1600;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(252,190,34,.3);
  transition: .3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(252,190,34,.38);
}

.btn-outline-aqua {
  border-radius: 50px;
  padding: 12px 26px;
}

/* Responsivo */
@media (max-width: 992px) {
  .contacto-bg {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 200px;
    height: 200px;
  }

  .contacto-img {
    margin: 0 auto;
    display: block;
  }

  .contacto-section {
    text-align: center;
  }
}


/* Caja principal de Quiénes Somos */
.about-wrapper {
  background: linear-gradient(180deg, #07253f, #031a2f);
  border-radius: 28px;
  padding: 50px 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.40);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}

/* Imagen principal */
.about-main-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0,0,0,.30);
}

/* Cajitas internas */
.about-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 22px 24px;
  border-radius: 18px;
  backdrop-filter: blur(4px);
  transition: transform .45s cubic-bezier(.16,1,.3,1),
              box-shadow .45s cubic-bezier(.16,1,.3,1);
}

.about-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

/* Dot Aqua */
.about-dot {
  width: 14px;
  height: 14px;
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0,205,198,.18);
  flex-shrink: 0;
}

/* Título dentro del card */
.about-wrapper .section-title {
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 800;
}

.quienesss{ background: linear-gradient(180deg, #07253f, #031a2f);}

/* ==== FOOTER INVIERSIS ==== */

.footer-inviersis {
  background: linear-gradient(180deg, #022238, #001829);
  color: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-logo {
  width: 180px;
  filter: brightness(1.3);
}

.footer-desc {
  font-size: .95rem;
  color: #c9d6e2;
  line-height: 1.4;
}

.footer-desc strong {
  color: var(--white);
}

/* Redes */
.social-icon {
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
  transition: .3s ease;
}

.social-icon:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-3px);
}

/* Títulos */
.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Listas */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
  color: #c7d6e2;
  font-size: .92rem;
}

.footer-list a {
  color: #c7d6e2;
  transition: .2s ease;
}

.footer-list a:hover {
  color: var(--aqua);
}

/* Libro de reclamaciones */
.libro-icon {
  width: 80px;
  filter: brightness(1.3);
}

.footer-desc-sm {
  font-size: .8rem;
  color: #c9d6e2;
}

/* Línea divisoria */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-inviersis {
    text-align: center;
  }

  .libro-icon {
    margin: 0 auto;
  }

  .footer-title {
    margin-top: 20px;
  }
}
.btnnn{
background:var(--bg); color:#ffffff; font-weight:800; border:none; border-radius:999px; padding:12px 20px; box-shadow:0 8px 20px var(--bg); transition: transform .2s ease, box-shadow .3s ease 

}
.btnnn:hover{ transform: translateY(-1px); box-shadow:0 14px 28px var(--bg);color: rgb(255, 255, 255); background-color: var(--card);}
.btn2{
   background: var(--gold);
  border-radius: 50px;
  padding: 12px 26px;
  color: #1a1600;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(252,190,34,.3);
  transition: .3s ease;
  border-color: var(--gold);
}
.btn2:hover{
  transform: translateY(-1px); box-shadow:0 14px 28px rgba(252,190,34,.38);color: black; background-color: var(--gold);
}

/* === NAVBAR CÁPSULA === */

.nav-wrapper {
  padding-top: 20px;
  padding-bottom: 20px;
 
}

.nav-capsule {
  background: linear-gradient(180deg, #062338, #031a2f);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  transition: all .4s ease;
}

/* Cuando haces scroll: más compacta */
.nav-wrapper.scrolled .nav-capsule {
  backdrop-filter: blur(12px);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

/* Links */
.nav-capsule .nav-link {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 4px;
}

.nav-capsule .nav-link:hover {
  color: var(--white);
}

.nav-capsule .nav-link::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,var(--aqua),var(--gold));
  transition:width .25s ease;
}

.nav-capsule .nav-link:hover::after {
  width:100%;
}

/* Botón dentro del nav */
.nav-cta {
  padding: 10px 26px !important;
  border-radius: 50px !important;
  font-size: 0.95rem;
}

/* Ajustes responsive */
@media (max-width: 992px) {
  .nav-capsule {
    padding: 18px 20px;
    border-radius: 30px;
  }
}
.libro{
  display: flex;
  margin-top: 80px;
  cursor: pointer;
}

/* ============================================================
   ===============   MEDIA QUERIES RESPONSIVE   ===============
   ============================================================ */

/* ==== TABLET (≤ 992px) ==== */
@media (max-width: 992px) {

  /* NAV */
  .nav-capsule {
    padding: 16px 22px;
    border-radius: 30px;
  }

  .nav-capsule .nav-link {
    padding: 8px 0;
    font-size: 1rem;
  }

  .nav-wrapper.scrolled .nav-capsule {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(0,0,0,.35);
  }

  /* HERO */
  .hero {
    text-align: center;
    padding-top: 60px;
  }

  .hero .d-flex {
    justify-content: center;
  }
.kpi{
    justify-content: center;
  }
  .hero-card {
    margin-top: 30px;
  }

  /* PROYECTOS */
  .project-card {
    transform: none !important;
  }

  /* QUIÉNES SOMOS */
  .about-wrapper {
    padding: 40px 26px;
  }

  .about-main-img {
    border-radius: 16px;
  }

  .about-box {
    padding: 18px 20px;
  }

  /* GALERÍA */
  .gallery-item {
    border-radius: 18px;
  }

  /* CONTACTO */
  .contacto-section {
    text-align: center;
    padding-top: 50px;
     margin-bottom: 30px;
  }

  .contacto-bg {
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    width: 180px;
    height: 180px;
  }

  .contacto-img {
    max-width: 380px;
    margin: 0 auto;
  }
  .img-des{
    display: none;
  }
  .contacto-form .form-control {
    font-size: 0.9rem;
  }

  /* FOOTER */
  .footer-inviersis {
    text-align: center;
  }

  .libro {
    justify-content: center;
    margin-top: 20px;
  }
   .icons{
    display: flex;
    justify-content: center;
  }
}

/* ==== MOBILE LARGE (≤ 768px) ==== */
@media (max-width: 768px) {

  /* HERO */
  .hero h1 {
    font-size: 2.2rem !important;
    line-height: 1.15;
    
  }

  .badge-aqua {
    margin-bottom: 10px;
  }

  /* QUIÉNES SOMOS */
  .about-wrapper {
    padding: 32px 20px;
  }

  .about-box {
    padding: 16px 18px;
  }
.kpi{
    justify-content: center;
  }
  .about-dot {
    width: 12px;
    height: 12px;
  }

  /* GALERÍA */
  .gallery-item {
    border-radius: 16px;
  }

  /* CONTACTO */
  .contacto-bg {
    width: 160px;
    height: 160px;
  }
  .img-des{
    display: none;
  }
  .contacto-img {
    max-width: 330px;
  }
 .contacto-section{
 margin-bottom: 30px;
  }
  /* FOOTER */
  .footer-logo {
    width: 160px;
  }

  .social-icon {
    width: 34px;
    height: 34px;
  }
   .icons{
    display: flex;
    justify-content: center;
  }
}

/* ==== MOBILE SMALL (≤ 576px) ==== */
@media (max-width: 576px) {

  /* NAV */
  .nav-capsule {
    border-radius: 22px;
    padding: 14px 18px;
  }

  .brand-logo {
    height: 30px;
  }

  /* HERO */
  .hero {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .kpi{
    justify-content: center;
  }
  .hero h1 {
    font-size: 1.9rem !important;
  }

  /* PROYECTOS */
  .project-title-overlay {
    font-size: 1.05rem;
    padding: 8px 12px;
  }

  /* QUIÉNES SOMOS */
  .about-wrapper {
    padding: 26px 18px;
  }

  h2.section-title {
    font-size: 1.7rem !important;
  }

  .about-box {
    padding: 14px 16px;
  }

  /* CONTACTO */
  .contacto-bg {
    width: 130px;
    height: 130px;
   
  }

  .img-des{
    display: none;
  }

  .contacto-img {
    max-width: 280px;
  }
  .contacto-section{
 margin-bottom: 30px;
  }

  /* FOOTER */
  .footer-title {
    margin-top: 25px;
  }

  .footer-desc {
    font-size: 0.85rem;
  }
  .icons{
    display: flex;
    justify-content: center;
  }
}

.hambur{filter: invert(100%);}