/* =========================
   VARIABLES & RESET
========================= */
:root {
  --max: 1800px;
  --glass: rgba(20,20,20,.35);
  --glass2: rgba(10,10,10,.55);
  --border: rgba(255,255,255,.12);
  --muted: rgba(255,255,255,.78);
  --ink: #0b1720;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #0b1720;
  color: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

.container { width: min(var(--max), 92%); margin: 0 auto; padding: 50px; }

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), 94%);
  z-index: 1000;
  border-radius: 30px;
  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    opacity .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.navbar.nav-hidden {
  transform: translateY(-140%);
  opacity: 0;
  pointer-events: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-radius: 30px;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border);
  transition: all .4s cubic-bezier(.16,1,.3,1);
}

.navbar.scrolled .nav-inner {
  background: var(--glass2);
  backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 60px; width: auto; display: block; }

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,.75);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color .3s ease;
}
.nav-links a:hover,
.nav-links a.is-active { color: #fff; }

.nav-indicator {
  position: absolute;
  bottom: -8px;
  height: 2px;
  border-radius: 30px;
  background: #fff;
  opacity: 0;
  transition: all .35s cubic-bezier(.16,1,.3,1);
}

.hamburger {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  cursor: pointer;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: all .3s ease;
}
.hamburger span:first-child { top: 12px; }
.hamburger span:last-child  { top: 20px; }
.hamburger.active span:first-child { top: 16px; transform: translateX(-50%) rotate(45deg); }
.hamburger.active span:last-child  { top: 16px; transform: translateX(-50%) rotate(-45deg); }

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  height: 110vh;
  min-height: 520px;
  background: url("../assets/images/index/banner.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}

.hero-overlay { position: absolute; inset: 0; }

.hero-shell {
  width: min(var(--max), 94%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  top: 50px;
}

.hero-glass {
  
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 28px;
  padding: 42px;
  align-items: center;
  padding-bottom: 30px;
}

/* Copy column */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
  transform: translateY(20px);
}

.hero-copy h1 {
  font-size: clamp(50px, 5.4vw, 65px);
  line-height: 1;
  font-weight: 100;
  text-shadow: 0 10px 22px rgba(0,0,0,.35);
}
.hero-copy h1 strong { font-weight: 650; }

.hero-copy p {
  color: rgba(255,255,255,.86);
  max-width: 380px;
  line-height: 1.6;
  font-size: 19px;
  text-shadow: 0 6px 16px rgba(0,0,0,.25);
}

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }

.hero-mini { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

strong.GALERIA { color: rgba(255,255,255,.7); }

/* Gallery column */
.hero-gallery {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  
}

.gallery-main {
  position: relative;
  z-index: 2;
  margin-top: -30px;
  margin-right: -30px;
  
 
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.12);
}

.gallery-main img {
  width: 100%;
  height: 690px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

.gallery-mainp {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.12);
}
.gallery-mainp img {
  width: 100%;
  height: 1050px;
  object-fit: cover;
  display: block;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -155px;
  position: relative;
  z-index: 5;
  padding: 0 16px;
  margin-right: -28px;
}

.thumb-card {
  position: relative;
  min-height: 136px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 10px 20px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.08);
  transition: all .25s ease;
}


.thumb-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.30);
  box-shadow:
    0 18px 34px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.thumb-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.56), rgba(0,0,0,.10) 58%);
  pointer-events:none;
}

.thumb-card img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-meta{
  position: absolute;
  z-index: 4;
  padding: 10px 12px 9px;
  text-align: left;
}

.thumb-meta strong{
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  display: block;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 700;
  color: rgba(255,255,255,.98);
}

.thumb-meta small{
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: rgba(255,255,255,.76);
}

.thumb-card.is-active{
  border-color: rgba(255,255,255,.38);
  box-shadow:
    0 20px 36px rgba(0,0,0,.26),
    0 0 0 2px rgba(255,255,255,.12) inset;
}



/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 36px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.95);
  text-shadow: 0 6px 16px rgba(0,0,0,.25);
  text-decoration: none;
  font-size: 18px;
  transition: background .2s ease, transform .08s ease;
}
.btn:hover  { background: rgba(255,255,255,.22); }
.btn:active { transform: translateY(1px); }
.btn.ghost  { background: transparent; }
.btn.small  { padding: 10px 14px; font-size: 12px; }

.btn-cta {
  padding: 14px 34px;
  font-size: 18px;
  border-radius: 15px;
  backdrop-filter: blur(20px);
  transition: all .25s ease;
}
.btn-cta i {
  font-size: 20px;
  transition: transform .25s ease, opacity .25s ease;
  opacity: .9;
}
.btn-cta:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-cta:hover i { transform: translateX(4px); opacity: 1; }

.btn.azul {
  background: #3D6CAD;
  border: 1px solid #3D6CAD;
  color: #fff;
  text-shadow: none;
}
.btn.azul:hover  { background: #345E97; border-color: #345E97; }
.btn.azul:active { background: #2C507F; transform: translateY(1px); }

/* =========================
   MINI PILLS
========================= */
.mini-pill {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 10px 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.mini-pill span  { font-weight: 900; font-size: 16px; }
.mini-pill small { color: rgba(255,255,255,.75); }

/* =========================
   DECORATIVE LINES
========================= */
.line {
  width: 64px;
  height: 7px;
  background: #fff;
  border-radius: 999px;
  margin: 36px 0 12px;
  opacity: .9;
}

/* line-wrapper / line-fill (hero) */
.line-wrapper {
  width: 100%;
  max-width: 150px;
  height: 9px;
  margin: 20px 0;
  background: #BFC7D3;
  border-radius: 30px;
  box-shadow: 0 50px 90px rgba(0,0,0,.15);
  overflow: hidden;
}
.line-fill {
  width: 60%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
}

.line-wrappera {
  width: 100%;
  max-width: 80px;
  height: 5px;
  margin: auto 0 0;
  background: #BFC7D3;
  border-radius: 30px;
  overflow: hidden;
}
.line-filla {
  width: 60%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
}

/* section decorators */
.line-wrappers {
  width: 100%;
  max-width: 130px;
  height: 7px;
  margin: 10px auto 20px;
  background: #BFC7D3;
  border-radius: 999px;
  overflow: hidden;
}
.line-fills {
  width: 60%;
  height: 100%;
  background: #3B66A9;
  border-radius: 999px;
}

.line-wrappersf {
  width: 100%;
  max-width: 130px;
  height: 7px;
  margin: 20px auto;
  background: #BFC7D3;
  border-radius: 999px;
  overflow: hidden;
}
.line-fillsf {
  width: 60%;
  height: 100%;
  background: #fff;
  border-radius: 999px;
}

/* mini-line (cards) */
.mini-line {
  width: 75px;
  height: 4px;
  background: #D9DDE4;
  border-radius: 999px;
  margin: 8px 0 14px 20px;
  overflow: hidden;
}
.mini-line span {
  display: block;
  width: 55%;
  height: 100%;
  background: #3D6CAD;
  border-radius: 999px;
}

.mini-line1 {
  width: 75px;
  height: 4px;
  background: #D9DDE4;
  border-radius: 999px;
  margin: 8px 0 14px;
  overflow: hidden;
}
.mini-line1 span {
  display: block;
  width: 55%;
  height: 100%;
  background: #3D6CAD;
  border-radius: 999px;
}

.mini-line2 {
  width: 75px;
  height: 4px;
  background: #D9DDE4;
  border-radius: 999px;
  margin: 8px 0 14px;
  overflow: hidden;
}

.mini-line2 span {
  display: block;
  width: 55%;
  height: 100%;
  background: #fff;
  border-radius: 999px;
}



.mini-line3 {
  width: 75px;
  height: 4px;
  background: #D9DDE4;
  border-radius: 999px;
  margin: 8px 0 14px;
  overflow: hidden;
}
.mini-line3 span {
  display: block;
  width: 55%;
  height: 100%;
  background: #3D6CAD;
  border-radius: 999px;
}

/* =========================
   SECTIONS
========================= */
.section { padding: 80px 0; background: #fff; }
.section.soft  { background: #0a1720; }
.section.final { background: #0a1720; }

.section-head { text-align: center; margin-bottom: 22px; }
.section-head h2 { font-size: clamp(28px, 3vw, 40px); letter-spacing: .4px; font-weight: 200; color: #333; }
.section-head strong { font-weight: 650; font-size: clamp(28px, 3vw, 40px); letter-spacing: .4px; color: #333; }
.section-head p { margin-top: 4px; line-height: 2; font-size: 20px; letter-spacing: .6px; color: #333; }

.section-head2 { text-align: center; margin-bottom: 22px; }
.section-head2 h2 { font-size: clamp(20px, 2.5vw, 32px); letter-spacing: .2px; font-weight: 200; color: #fff; }
.section-head2 strong { font-weight: 650; font-size: clamp(20px, 2.5vw, 32px); letter-spacing: .2px; color: #fff; }
.section-head2 p { margin-top: 1px; line-height: 1.6; font-size: 17.5px; color: #fff; }

.section-cta { display: flex; justify-content: center; margin-top: 18px; position: relative; color: #333; }

/* =========================
   CARDS (servicios)
========================= */
.cards-grid {
  padding-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.cards-grid.four  { grid-template-columns: repeat(4, 1fr); }

.card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,.14), 0 4px 10px rgba(0,0,0,.08);
}
.card-wide { grid-column: span 2; }
.card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.card-body { padding: 14px; }
.card-body h3 { font-size: 22px; font-weight: 650; color: #333; margin-left: 20px; }
.card-body p  { font-size: 16px; line-height: 1.2; color: #333; margin: 0 20px 20px; }

/* =========================
   CARDS SM1 (premium)
========================= */
.cardsm1-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cardsm1-grid.four { grid-template-columns: repeat(4, 1fr); }

.cardsm1 {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.cardsm1:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,.14), 0 4px 10px rgba(0,0,0,.08);
}
.cardsm1 img { width: 100%; height: 330px; object-fit: cover; display: block; }
.cardsm1-body { padding: 18px 16px; }
.cardsm1-body h3 { font-size: 18px; margin-bottom: 10px; color: #333; font-weight: 800; }
.cardsm1-body p  { font-size: 13px; line-height: 1.65; color: rgba(28,27,23,.78); }

/* =========================
   CARDS PROYECT (carrusel, versión compacta)
========================= */
.cardsproyect-grid.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cardsproyect-grid       { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.cardsproyect {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  
  overflow: hidden;
  padding: 5px;
  transition: transform .18s ease;
  gap: 40px;
}
.cardsproyect:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 24px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.08);
}
.cardsproyect img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  display: block;
}




.cardsproyect-body { padding: 25px 18px 18px; }
.cardsproyect-body h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 650;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cardsproyect-body p { margin-top: 10px; font-size: 16px; line-height: 1.2; color: #333; }



/* =========================
   CARDS PROYECT1 (versión grande)
========================= */
.cardsproyect1-grid.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cardsproyect1-wide { grid-column: span 2; }

.cardsproyect1 {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
  overflow: hidden;
  padding: 5px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cardsproyect1:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,.14), 0 4px 10px rgba(0,0,0,.08);
}
.cardsproyect1 img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  display: block;
}
.cardsproyect1-body { padding: 16px 18px 18px; }
.cardsproyect1-body h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 650;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cardsproyect1-body p { margin-top: 10px; font-size: 16px; line-height: 1.2; color: #333; }

/* =========================
   CARRUSEL PROYECTOS (compartido)
========================= */
.proy-carousel { position: relative; margin-top: 22px; }

.proy-track {
  display: grid;
  grid-auto-flow: column;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 56px 16px;
  scrollbar-width: none;
 
  position: relative;
  z-index: 1;
}
.proy-track::-webkit-scrollbar { display: none; }


.proy-track > .cardsproyect,
.proy-track > .cardsproyect1 { scroll-snap-align: start; }

.proy-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
  cursor: pointer;
  z-index: 9999;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  pointer-events: auto;
}
.proy-prev { left: 8px; }
.proy-next { right: 8px; }
.proy-nav:hover  { transform: translateY(-50%) scale(1.05); }
.proy-nav:active { transform: translateY(-50%) scale(.98); }

/* =========================
   BAND (razones)
========================= */
.band {
  position: relative;
  padding: 172px 0;
  background: url("../assets/images/hero1.jpg") center/cover no-repeat;
}
.band-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }

.band-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 1px;
  align-items: start;
}

.band-left h2 { font-size: clamp(30px, 2.5vw, 42px); letter-spacing: .1px; font-weight: 200; margin-top: 70px; }
.band-left strong { font-weight: 650;  }
.band-left p {
  font-size: 19px;
  margin-top: 10px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  text-shadow: 0 6px 16px rgba(0,0,0,.25);
  max-width: 380px;
}

.band-left h1 { font-size: clamp(50px,  5.4vw, 65px); line-height: 1.1;  font-weight: 100; margin-top: 70px;  text-shadow: 0 10px 22px rgba(0,0,0,.35); }

.band-right { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; padding-top: 90px; }

.reason-card {
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  padding: 20px;
  
}
.reason-card .icon { font-size: 70px; margin-bottom: 18px; opacity: .95; }
.reason-card h3 { font-size: 22px; margin-bottom: 9px; font-weight: 650; margin-top: -5%; }
.reason-card p  { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.2; }

.circle-arrow {
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all .25s ease;
  margin-top: 20px;
}
.circle-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-60%, -50%) rotate(-45deg);
}
.circle-arrow:hover { background: rgba(255,255,255,.08); transform: scale(1.05); }


.kpis { margin-top: 25px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.kpi {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.18);
  padding: 14px 12px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.kpi strong { display: block; font-weight: 900; font-size: 17px; color: #fff; }
.kpi span   { color: rgba(255,255,255,.78); font-size: 13px; }

/* =========================
   CONTACT
========================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  padding: 16px;
}
.contact-card h3 { margin-bottom: 10px; }
.contact-card ul { list-style: none; display: grid; gap: 8px; color: var(--muted); }
.contact-card strong { color: #fff; }

.form { display: grid; gap: 12px; }
.form label { display: grid; gap: 6px; font-size: 12px; color: rgba(255,255,255,.78); }
input, select, textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  padding: 10px 12px;
  color: #fff;
  outline: none;
}
textarea { resize: vertical; }
.form-note { min-height: 16px; color: rgba(255,255,255,.75); font-size: 12px; }

.contact-left { display: flex; flex-direction: column; gap: 14px; min-height: 100%; }
.contact-left__top h3 { margin-bottom: 10px; }
.contact-lines p { margin: 0 0 8px; color: rgba(255,255,255,.82); line-height: 1.55; }
.contact-lines strong { color: #fff; font-weight: 700; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

.contact-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  min-height: 320px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: saturate(1.05) contrast(1.05);
}
.contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.05) 45%, rgba(0,0,0,.22) 100%);
  pointer-events: none;
}

.map-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.map-badge small { color: rgba(255,255,255,.88); font-size: 12px; }
.map-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3D6CAD;
  box-shadow: 0 0 0 4px rgba(61,108,173,.18);
}

/* =========================
   FINAL BAND
========================= */
.final-band {
  position: relative;
  background: url("../assets/images/index/banner.png") center/cover no-repeat;
  padding: 60px 0 0;
}



.final-overlay {
  position: absolute;
  inset: 0;
 
}
.final-content { position: relative; z-index: 2; }
.section.final { background: transparent; }
.section.final .section-head h2 { color: rgba(255,255,255,.95); }
.section.final .section-head p  { color: rgba(255,255,255,.75); }

/* =========================
   FOOTER
========================= */
.footer {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 34px 0 0;
}
.footer .container { max-width: 1300px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  column-gap: 80px;
  row-gap: 40px;
}
.footer-grid > div { max-width: none; min-width: 0; }
.footer-grid > div:nth-child(3) { padding-left: 80px; }
.footer-grid p { max-width: 280px; }

.footer-logo { font-weight: 900; letter-spacing: 2px; margin-bottom: 10px; }
.footer h4 { margin-bottom: 10px; font-size: 19px; }
.footer a { display: block; color: rgba(255,255,255,.82); text-decoration: none; margin: 6px 0; font-size: 13px; }
.footer a:hover { opacity: .8; }
.footer p { color: rgba(255,255,255,.75); line-height: 1.6; font-size: 13px; }

.footer-bottom {
  margin-top: 18px;
  padding: 14px 0;
  text-align: center;
  color: rgba(255,255,255,.60);
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  opacity: .8;
  transition: .2s ease;
}
.footer-title:hover .footer-arrow { opacity: 1; transform: translateX(3px); }

.footer-menu {
  margin-top: 30px;
  padding: 18px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.footer-menu a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .6px;
  text-transform: uppercase;
  transition: .2s ease;
  position: relative;
}
.footer-menu a:not(:last-child)::after { content: "|"; margin-left: 18px; color: rgba(255,255,255,.35); }
.footer-menu a:hover { color: #fff; }

.social-list { list-style: none; padding: 0; margin: 10px 0 0; display: flex; flex-direction: column; gap: 8px; }
.social-list a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); text-decoration: none; font-size: 13px; }
.social-list a:hover { opacity: .85; }

.s-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}

/* =========================
   MODAL
========================= */
.modal { position: fixed; inset: 0; display: none; z-index: 2000; }
.modal.is-open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.65); }
.modal-panel {
  position: relative;
  width: min(920px, 92%);
  margin: 80px auto 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,10,10,.75);
  backdrop-filter: blur(16px);
  padding: 14px;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}
.modal video { width: 100%; border-radius: 12px; display: block; }

/* =========================
   RESPONSIVE
========================= */

/* --- Tablet / medium --- */
@media (max-width: 980px) {
  /* Hero */
  .hero {
    height: auto;
    min-height: unset;
    padding: 96px 0 28px;
  }
  .hero-glass { border-radius: 28px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
  .hero-copy {
    transform: none;
    padding: 0;
  }
  .hero-copy p { max-width: none; }
  .gallery-main img { height: clamp(220px, 45vw, 320px); }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .thumb-card img { height: 90px; }

  /* Band */
  .band { padding: 110px 0; }
  .band-grid { grid-template-columns: 1fr; gap: 20px; }
  .band-left p { max-width: none; }
  .band-right { grid-template-columns: 1fr 1fr; gap: 16px; }
  .reason-card h3 { font-size: 20px; }

  /* Cards */
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid.four { grid-template-columns: repeat(2, 1fr); }
  .cardsm1-grid { grid-template-columns: repeat(2, 1fr); }
  .cardsm1-grid.four { grid-template-columns: repeat(2, 1fr); }
  .cardsproyect-grid,
  .cardsproyect-grid.three { grid-template-columns: repeat(2, 1fr); }

  /* Misc */
  .video-cover { height: 320px; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Hamburger breakpoint --- */
@media (max-width: 860px) {
  .hamburger { display: inline-block; }
  .nav-indicator { display: none; }
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: min(260px, calc(100vw - 40px));
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(15,15,15,.78);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.10);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all .35s cubic-bezier(.16,1,.3,1);
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
}

/* --- card-wide collapses --- */
@media (max-width: 768px) {
  .card-wide,
  .cardsproyect1-wide { grid-column: span 1; }
  .hero-grid { grid-template-columns: 1fr; }
}

/* --- Contact map --- */
@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map,
  .contact-map iframe { min-height: 280px; }
}

/* --- Carousel narrow --- */
@media (max-width: 699px) {
  .proy-track { grid-auto-columns: 86%; gap: 14px; padding: 6px 44px 14px; }
  .proy-nav { width: 40px; height: 40px; font-size: 26px; }
  .cardsproyect img,
  .cardsproyect1 img { height: 300px; }
}

/* --- Footer menu grid --- */
@media (max-width: 600px) {
  .footer-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    justify-items: center;
  }
  .footer-menu a:not(:last-child)::after { content: ""; margin: 0; }
}

/* --- Mobile --- */
@media (max-width: 560px) {
  /* Hero */
  .hero { padding: 92px 0 22px; }
  .hero-copy h1 { font-size: clamp(22px, 6.2vw, 30px); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-gallery { gap: 16px; }
  .gallery-main { border-radius: 14px;    margin-top: 1px;
  margin-right: 1px;}
  .gallery-main img { height: 230px; }
  .gallery-thumbs { grid-template-columns: 1fr; gap: 12px; }
  .thumb-card { flex-direction: row; align-items: stretch; border-radius: 12px; }
  .thumb-card img { width: 120px; height: 78px; flex: 0 0 120px; }
  .thumb-meta { padding: 12px; display: flex; flex-direction: column; justify-content: center; }
  .thumb-meta strong { font-size: 12px; }
  .thumb-meta small  { font-size: 11px; }

  /* Band */
  .band { padding: 92px 0; }
  .band-left h2,
  .band-left strong { font-size: clamp(26px, 8vw, 34px); line-height: 1.05; }
  .band-right { grid-template-columns: 1fr; gap: 14px; }
  .reason-card { padding: 14px; }
  .reason-card .icon { font-size: 26px; margin-bottom: 12px; }
  .reason-card p { font-size: 12.5px; }

  /* Cards */
  .cards-grid,
  .cards-grid.four,
  .cardsm1-grid { grid-template-columns: 1fr; }
  .cardsm1 img { height: 210px; }
  .cardsproyect-grid.three { grid-template-columns: 1fr; }

  /* Misc */
  .contact-grid { grid-template-columns: 1fr; }
  .final-band { padding-top: 40px; }
  .video-cover { height: 260px; }
  .kpis { grid-template-columns: 1fr; }
}


@media (max-width:767px){
  .gallery-thumbs .thumb-card:nth-child(n+3){
    display:none;
  }
}

/* =========================================
   TV / LAPTOP 1200–1440 x ≤900px
========================================= */
@media screen and (min-width: 1200px) and (max-width: 1440px) and (max-height: 900px) {
  :root { --max: 1280px; }

  .navbar { top: 12px; width: min(1280px, 96%); }
  .nav-inner { padding: 12px 18px; }
  .logo img { height: 40px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 12px; }

  .hero { height: 100vh; min-height: 720px; padding: 90px 0 30px; }
  .hero-grid { grid-template-columns: .75fr 1.25fr; gap: 16px; padding: 22px; align-items: center; }
  .hero-copy h1 { font-size: clamp(34px, 3vw, 48px); line-height: 1.05; }
  .hero-copy p { font-size: 15px; line-height: 1.8; max-width: 420px; margin-top: 18px; }
  .hero-actions { margin-top: 18px; }
  .btn { padding: 11px 24px; font-size: 12px; }
  .mini-pill { padding: 8px 10px; }
  .mini-pill span { font-size: 15px; }

  .gallery-main img { height: 410px; }
  .gallery-mainp img { height: 420px; }
  .gallery-thumbs { gap: 6px; }
  .thumb-card img { height: 64px; }
  .thumb-meta { padding: 8px; }
  .thumb-meta strong { font-size: 11px; }
  .thumb-meta small  { font-size: 10px; }

  .section { padding: 65px 0; }
  .section-head h2, .section-head strong,
  .section-head2 h2, .section-head2 strong { font-size: clamp(28px, 2.3vw, 40px); }
  .section-head p, .section-head2 p { font-size: 13px; }

  .cards-grid, .cardsm1-grid { gap: 14px; }
  .card img { height: 220px; }
  .cardsm1 img { height: 280px; }
  .cardsproyect img, .cardsproyect1 img { height: 300px; }
  .card-body h3, .cardsm1-body h3 { font-size: 15px; }
  .card-body p, .cardsm1-body p { font-size: 12px; }

  .band { padding: 120px 0; }
  .band-grid { gap: 24px; align-items: center; }
  .band-left { padding-right: 20px; }
  .band-left h2, .band-left strong { font-size: clamp(34px, 3vw, 48px); }
  .band-left p { font-size: 14px; max-width: 400px; }
  .reason-card { padding: 14px; }
  .reason-card .icon { font-size: 42px; }
  .reason-card h3 { font-size: 20px; }
  .reason-card p  { font-size: 12px; }

  .video-cover { height: 460px; }
  .kpis { gap: 10px; }
  .kpi  { padding: 12px; }
  .contact-map iframe { min-height: 480px; }

  .footer-grid { column-gap: 50px; }
  .footer h4 { font-size: 17px; }
  .footer a, .footer p { font-size: 12px; }
  .footer-menu { gap: 14px; }
}

/* =========================================
   LAPTOP 1450–1680 x ≤950px
========================================= */
@media screen and (min-width: 1450px) and (max-width: 1680px) and (max-height: 950px) {
  :root { --max: 1450px; }

  .navbar { top: 18px; width: min(1450px, 95%); }
  .nav-inner { padding: 13px 24px; }
  .logo img { height: 52px; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 12.5px; letter-spacing: 1px; }

  .hero { height: 100vh; min-height: 860px; padding: 110px 0 40px; }
  .hero-shell { top: 10px; }
  .hero-glass { border-radius: 28px; }
  .hero-grid { grid-template-columns: .72fr 1.28fr; gap: 22px; padding: 28px; align-items: center; }
  .hero-copy { transform: translateY(0); padding: 0 8px; }
  .hero-copy h1 { font-size: clamp(46px, 4vw, 60px); line-height: 1.02; }
  .hero-copy p { font-size: 17px; line-height: 1.7; max-width: 440px; margin-top: 14px; }
  .hero-actions { margin-top: 22px; }
  .btn { padding: 12px 28px; font-size: 13px; }
  .btn-cta { padding: 13px 28px; font-size: 16px; }
  .mini-pill { padding: 9px 12px; }
  .mini-pill span  { font-size: 15px; }
  .mini-pill small { font-size: 11px; }

  .gallery-main { border-radius: 26px; }
  .gallery-main img { height: 560px; border-radius: 26px; }
  .gallery-mainp img { height: 560px; }
  .gallery-thumbs { margin-top: -120px; gap: 14px; padding: 0 16px; }
  .thumb-card { border-radius: 14px; }
  .thumb-card img { height: 92px; }
  .thumb-meta { padding: 10px; }
  .thumb-meta strong { font-size: 11px; }
  .thumb-meta small  { font-size: 10px; }

  .section { padding: 72px 0; }
  .section-head h2, .section-head strong,
  .section-head2 h2, .section-head2 strong { font-size: clamp(30px, 2.3vw, 42px); }
  .section-head p, .section-head2 p { font-size: 14px; }

  .cards-grid, .cardsm1-grid { gap: 18px; }
  .card img { height: 240px; }
  .cardsm1 img { height: 300px; }
  .cardsproyect img, .cardsproyect1 img { height: 330px; }
  .card-body h3, .cardsm1-body h3 { font-size: 16px; }
  .card-body p, .cardsm1-body p { font-size: 13px; }

  .band { padding: 140px 0; }
  .band-grid { gap: 30px; align-items: center; }
  .band-left h2, .band-left strong { font-size: clamp(36px, 3vw, 50px); }
  .band-left p { font-size: 15px; max-width: 420px; }
  .reason-card { padding: 18px; }
  .reason-card .icon { font-size: 52px; }
  .reason-card h3 { font-size: 22px; }
  .reason-card p  { font-size: 13px; }

  .video-cover { height: 500px; }
  .video-play { width: 72px; height: 72px; }
  .kpis { gap: 12px; }
  .kpi  { padding: 14px; }
  .contact-map iframe { min-height: 540px; }

  .footer-grid { column-gap: 60px; }
  .footer h4 { font-size: 18px; }
  .footer a, .footer p { font-size: 13px; }
  .footer-menu { gap: 16px; }
}

/* carrusel — tamaños de columna por viewport */
@media (min-width: 1100px) {
  .proy-track { grid-auto-columns: calc((100% - 52px) / 3); }
}
@media (min-width: 700px) and (max-width: 1099px) {
  .proy-track { grid-auto-columns: calc((100% - 26px) / 2); }
}


/* =========================
   SCROLL REVEAL ANIMATION
========================= */

.reveal{
  opacity: 0;
  transform: translateY(70px) scale(.96);
  filter: blur(8px);
  transition:
    opacity 1s cubic-bezier(.16,1,.3,1),
    transform 1s cubic-bezier(.16,1,.3,1),
    filter 1s cubic-bezier(.16,1,.3,1);
  will-change: transform, opacity;
}

.reveal.active{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Variantes opcionales */
.reveal-left{
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s cubic-bezier(.16,1,.3,1);
}

.reveal-left.active{
  opacity: 1;
  transform: translateX(0);
}

.reveal-right{
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s cubic-bezier(.16,1,.3,1);
}

.reveal-right.active{
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom{
  opacity: 0;
  transform: scale(.85);
  transition: all 1s cubic-bezier(.16,1,.3,1);
}

.reveal-zoom.active{
  opacity: 1;
  transform: scale(1);
}

.reveal:nth-child(1){ transition-delay: .1s; }
.reveal:nth-child(2){ transition-delay: .2s; }
.reveal:nth-child(3){ transition-delay: .3s; }
.reveal:nth-child(4){ transition-delay: .4s; }



/* =========================================
   HERO RESPONSIVE LIMPIO
========================================= */

/* TABLET LANDSCAPE (iPad horizontal) */
@media (min-width: 768px) and (max-width: 1024px){

  .hero{
    height:auto;
    padding:120px 0 40px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:20px;
    padding:20px;
  }

  .hero-copy{
    text-align:left;
  }

  .hero-copy h1{
    font-size:clamp(38px,5vw,52px);
    line-height:1.05;
  }

  .gallery-main img{
    height:420px;
  }

  .gallery-thumbs{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
  }

  .thumb-card img{
    height:90px;
  }
}

/* MOBILE */
@media (max-width:767px){

  .navbar{
    width:94%;
  }

  .nav-inner{
    padding:14px 16px;
  }

  .logo img{
    height:32px;
  }

  .hero{
    padding:95px 0 25px;
    height:auto;
  }

  .hero-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
    padding:16px;
  }

  .hero-copy h1{
    font-size:clamp(28px,8vw,38px);
    line-height:1.05;
  }

  .hero-copy p{
    font-size:14px;
  }

  .hero-actions .btn{
    width:100%;
  }

  .gallery-main img{
    height:240px;
  }

  .gallery-thumbs{
    display:flex;
    flex-direction:column;
    gap:8px;
  }

  .thumb-card{
    display:flex;
    flex-direction:row;
    align-items:center;
    min-height:80px;
  }

  .thumb-card img{
    width:95px;
    height:80px;
    flex-shrink:0;
  }

  .thumb-meta{
    padding:10px;
  }

  .thumb-meta strong{
    font-size:13px;
  }

  .thumb-meta small{
    font-size:11px;
  }
}

/* MOBILE PEQUEÑO */
@media (max-width:390px){

  .hero-copy h1{
    font-size:30px;
  }

  .gallery-main img{
    height:220px;
  }

  .thumb-card img{
    width:85px;
    height:70px;
  }
}


@media (max-width:768px){

  .gallery-thumbs{
    margin-top:0 !important;
    position:relative;
    z-index:2;

    display:flex;
    flex-direction:column;
    gap:8px;
  }

  .thumb-card{
    height:72px;
    overflow:hidden;
  }

  .thumb-card img{
    width:90px;
    height:72px;
    object-fit:cover;
  }

  .thumb-meta{
    padding:8px 10px;
  }

  .thumb-meta strong{
    font-size:12px;
    line-height:1.2;
  }

  .thumb-meta small{
    font-size:10px;
  }
}

@media (max-width:768px){

  .gallery-main img{
    height:180px;
    object-fit:cover;
     border-radius: 1px;
  }
}
@media (max-width:768px){

  .kpis{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .kpi{
    min-height:10px !important;
    padding:18px 10px !important;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
  }

  .kpi strong{
    font-size:22px;
    margin-bottom:8px;
  }

  .kpi span{
    font-size:12px;
    line-height:1.4;
  }
}

@media (max-width:768px){

  .kpis{
    overflow:visible !important;
  }

  .kpi{
    overflow:visible !important;
  }
}

@media (max-width:768px){



  .hero{
    height:auto !important;
    min-height:auto !important;
   
  }

  .hero-shell{
    top:0 !important;
  }

  
}
@media (max-width:768px){

  .hero-gallery{
    margin-top:10px !important;
    gap:10px !important;
  }

  .gallery-main{
    margin:0 !important;
    border-radius:18px !important;
    overflow:hidden !important;
  }

  .gallery-main img{
    height:190px !important;
    border-radius:18px !important;
    object-fit:cover;
  }

  .gallery-thumbs{
    margin:0 !important;
    padding:0 14px 0 !important;
    display:flex !important;
    flex-direction:column !important;
    gap:8px !important;
  }

  .thumb-card{
    height:68px !important;
    min-height:68px !important;
    border-radius:12px !important;
  }

  .thumb-card img{
    width:88px !important;
    height:68px !important;
    position:relative !important;
    flex:0 0 88px !important;
  }

  .thumb-meta{
    position:absolute !important;
    left:92px !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    padding:0 8px !important;
  }
}

@media (max-width:768px){

  .section-head p{
    font-size:14px !important;
    line-height:1.2 !important;
    letter-spacing:0 !important;
    padding:0 25px;
  }

  .section-head h2,
  .section-head strong{
    font-size:clamp(24px,6vw,32px) !important;
    line-height:1.15;
  }

}

@media (max-width:768px){

  .cardsproyect1-body h3{
    font-size:18px !important;
    line-height:1.2;
  }

  .cardsproyect1-body p{
    font-size:13px !important;
    line-height:1.5;
  }

  .mini-line1{
    margin:6px 0 10px;
  }
}
@media (max-width:768px){

  .band-left h1{
    font-size:42px !important;
    line-height:1.05;
  }

  .band-left h1 strong{
    font-size:50px !important;
    font-weight:700;
    display:inline-block;
    line-height:0.95;
  }
}

@media (max-width:768px){

  .cardsm1-grid.four{
    grid-template-columns:1fr !important;
    gap:22px !important;
  }

  .cardsproyect1{
    width:100% !important;
    max-width:430px;
    margin:0 auto;
    border-radius:20px;
  }

  .cardsproyect1 img{
    width:100%;
    height:260px !important;
    object-fit:cover;
    border-radius:16px 16px 0 0;
  }

  .cardsproyect1-body{
    padding:18px 20px 22px !important;
  }

  .cardsproyect1-body h3{
    font-size:24px !important;
    line-height:1.1;
  }

  .cardsproyect1-body p{
    font-size:15px !important;
    line-height:1.55 !important;
  }
}

@media (max-width:768px){

  .proy-carousel{
    margin-top:18px;
  }

  .proy-track{
    display:grid !important;
    grid-auto-flow:unset !important;
    grid-auto-columns:unset !important;
    grid-template-columns:1fr !important;

    overflow:visible !important;
    gap:22px !important;
    padding:0 !important;
  }

  .proy-nav{
    display:none !important;
  }

  .cardsproyect{
    width:100% !important;
    max-width:430px;
    margin:0 auto;
    border-radius:20px;
    padding:6px;
  }

  .cardsproyect img{
    width:100%;
    height:250px !important;
    object-fit:cover;
    border-radius:16px 16px 0 0;
  }

  .cardsproyect-body{
    padding:18px 20px 22px !important;
  }

  .cardsproyect-body h3{
    font-size:24px !important;
    line-height:1.1;
  }

  .cardsproyect-body p{
    font-size:15px !important;
    line-height:1.55 !important;
  }

  .mini-line3{
    margin:8px 0 14px;
  }
}