:root{
  --k-dark:#000000;
  --k-green:#284e31;
  --k-mint:#b4f4d6;
  --k-aqua:#A9D9C2;
  --k-sand:#E8E5DE;

  --fuentePrincipal:"Roboto Condensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --blanco:var(--k-sand);
  --negro:var(--k-dark);
  --colorPrimario:var(--k-green);
  --colorSecundario:var(--k-mint);
  --colorTerceario:var(--k-aqua);

  --nav-h:86px;
}

html{
  box-sizing:border-box;
  scroll-behavior:smooth;
}

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

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation:none !important;transition:none !important;scroll-behavior:auto !important;}
}

body{
  font-family:var(--fuentePrincipal), "Open Sans", sans-serif;
  color:var(--negro);
  background:var(--blanco);
}

section{
  padding:30px 200px 20px 200px;
  margin-bottom:0;
}

@media (max-width:1366px){
  section{padding:30px 100px 20px 100px;}
}

@media (max-width:1200px){
  section{padding:30px 80px 20px 80px;}
}

@media (max-width:992px){
  section{padding:30px 50px 20px 50px;margin-bottom:0;}
}

@media (max-width:767px){
  section{padding:30px 20px 20px 20px;}
}

h1,h2,h3,h4,h5{
  font-family:var(--fuentePrincipal);
}

p{
  font-size:1.25rem;
  line-height:1.65rem;
  font-weight:300;
}

@media (max-width:1200px){
  p{font-size:1.1rem;line-height:1.5rem;}
}

a{
  color:var(--colorPrimario);
}

a:hover{
  color:var(--negro);
  text-decoration:underline;
}

.navbar-custom{
  background:rgba(1,38,25,.92);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid rgba(232,229,222,.12);
}

.navbar-custom.scrolled{
  box-shadow:0 18px 40px rgba(1,38,25,.25);
}

.navbar-custom .navbar-brand{
  display:flex;
  align-items:center;
}

.brand-logo{
  height:62px;
  width:auto;
  margin-right:10px;
}

.brand-text{
  font-family:"Poppins", var(--fuentePrincipal);
  font-weight:900;
  letter-spacing:.5px;
  color:rgba(232,229,222,.96);
}

.brand-text span{
  color:var(--colorPrimario);
}

.navbar-custom .nav-link{
  color:rgba(232,229,222,.90) !important;
  font-size:1rem;
  font-weight:700;
  padding-left:.75rem !important;
  padding-right:.75rem !important;
  text-transform:uppercase;
  letter-spacing:.6px;
}

.navbar-custom .nav-link:hover{
  color:var(--colorPrimario) !important;
}

.navbar-custom .nav-item.active .nav-link{
  color:var(--colorPrimario) !important;
}

.navbar-toggler{
  border:1px solid rgba(232,229,222,.35);
  border-radius:12px;
  padding:.5rem .65rem;
}

.navbar-toggler:focus{
  outline:none;
  box-shadow:0 0 0 4px rgba(169,217,194,.22);
}

.navbar-toggler-icon{
  width:22px;
  height:16px;
  display:inline-block;
  background:
    linear-gradient(rgba(232,229,222,.92), rgba(232,229,222,.92)) 0 0/100% 2px no-repeat,
    linear-gradient(rgba(232,229,222,.92), rgba(232,229,222,.92)) 0 7px/100% 2px no-repeat,
    linear-gradient(rgba(232,229,222,.92), rgba(232,229,222,.92)) 0 14px/100% 2px no-repeat;
}

.btn-contact-header{
  border-color:rgba(232,229,222,.70) !important;
  color:rgba(232,229,222,.95) !important;
}

.btn-contact-header:hover{
  border-color:var(--colorPrimario) !important;
  color:var(--colorPrimario) !important;
  background:transparent !important;
}

.snap-section{
  min-height:100vh;
  scroll-margin-top:calc(var(--nav-h) - 90px);
  padding-top:calc(var(--nav-h) + 24px);
}

@media (max-width:767px){
  .snap-section{
    padding-top:calc(var(--nav-h) + 16px);
  }
}

.contact-section{
  padding-left:0 !important;
  padding-right:0 !important;
  padding-top:0 !important;
  padding-bottom:0 !important;
  margin-bottom:0 !important;
}

.contact-section.snap-section{
  padding-top:0 !important;
  padding-bottom:0 !important;
}

.hero-section{
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-left:0 !important;
  padding-right:0 !important;
  background:
    radial-gradient(900px 550px at 12% 30%, rgba(120,191,158,.26) 0%, rgba(120,191,158,0) 55%),
    radial-gradient(820px 520px at 90% 22%, rgba(169,217,194,.24) 0%, rgba(169,217,194,0) 60%),
    linear-gradient(180deg, rgba(1,38,25,.90) 0%, rgba(1,38,25,.52) 52%, rgba(232,229,222,1) 100%);
  color:rgba(232,229,222,.96);
}

.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  background:rgba(0,0,0,.22);
}

.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:.22;
  filter:saturate(120%) contrast(110%);
}

.hero-inner{
  width:100%;
  height:100%;
  position:relative;
  z-index:2;
  padding-left:clamp(44px, 8vw, 220px);
  padding-right:clamp(24px, 6vw, 140px);
}

.hero-content{
  max-width:720px;
}

@media (max-width:991.98px){
  .hero-inner{
    padding-left:clamp(18px, 5vw, 42px);
    padding-right:clamp(18px, 5vw, 42px);
  }
  .hero-content{
    max-width:820px;
  }
  .hero-section .row{
    margin-left:0;
    margin-right:0;
  }
}

@media (max-width:767px){
  .hero-content{
    max-width:none;
  }
  .hero-section h1{
    letter-spacing:.3px;
  }
  .hero-cta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
  }
  .hero-cta .btn{
    width:auto;
  }
}

.hero-section::before{
  content:"";
  position:absolute;
  inset:-260px;
  background:
    radial-gradient(520px 420px at 18% 28%, rgba(180,244,214,.22) 0%, rgba(180,244,214,0) 66%),
    radial-gradient(640px 520px at 76% 22%, rgba(40,78,49,.38) 0%, rgba(40,78,49,0) 70%),
    radial-gradient(620px 520px at 54% 82%, rgba(169,217,194,.20) 0%, rgba(169,217,194,0) 72%);
  filter:blur(6px);
  opacity:.95;
  pointer-events:none;
  transform:translate3d(0,0,0);
  animation:heroGlow 18s ease-in-out infinite;
}

.hero-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(232,229,222,.00) 0%, rgba(232,229,222,.06) 32%, rgba(232,229,222,.00) 60%),
    radial-gradient(900px 520px at 50% 10%, rgba(0,0,0,.28) 0%, rgba(0,0,0,0) 70%);
  mix-blend-mode:overlay;
  pointer-events:none;
}

@keyframes heroGlow{
  0%,100%{transform:translate3d(0,0,0) scale(1);}
  50%{transform:translate3d(-14px,10px,0) scale(1.03);}
}

.hero-section .row{
  width:100%;
  position:relative;
  z-index:3;
}

.hero-section h1{
  font-weight:300;
  font-size:clamp(2.8rem, 3.4vw + 1.2rem, 4.8rem);
  line-height:1.02;
  color:rgba(232,229,222,.96);
}

.hero-section h1 .variant-text{
  font-weight:400;
  font-size:clamp(3.1rem, 4.2vw + 1.2rem, 5.8rem);
  border-bottom:2px solid var(--colorPrimario);
  padding-bottom:.2rem;
  color:rgba(232,229,222,.98);
}

@media (max-width:1200px){
  .hero-section h1{font-size:3.5rem;line-height:3.6rem;}
  .hero-section h1 .variant-text{font-size:4.5rem;}
}

@media (max-width:992px){
  .hero-section h1{font-size:3rem;line-height:3.2rem;}
  .hero-section h1 .variant-text{font-size:3.8rem;}
}

@media (max-width:767px){
  .hero-section h1{font-size:2.35rem;line-height:2.45rem;}
  .hero-section h1 .variant-text{font-size:2.8rem;line-height:2.9rem;}
}

.hero-section p{
  margin-top:20px;
  font-size:clamp(1.15rem, .85vw + 1rem, 1.55rem);
  line-height:1.9rem;
  font-weight:300;
  color:rgba(232,229,222,.90);
  max-width:720px;
}

@media (max-width:1200px){
  .hero-section p{font-size:1.2rem;line-height:1.6rem;max-width:100%;}
}

.hero-cta .btn{
  font-weight:700;
  border-radius:999px;
  padding:.7rem 1.2rem;
}

.btn-primary{
  background:var(--colorPrimario) !important;
  border-color:var(--colorPrimario) !important;
  color:var(--negro) !important;
}

.btn-primary:hover{
  background:transparent !important;
  color:var(--colorPrimario) !important;
}

.btn-outline-light{
  border-color:rgba(232,229,222,.75) !important;
  color:rgba(232,229,222,.95) !important;
}

.btn-outline-light:hover{
  border-color:var(--colorPrimario) !important;
  color:var(--colorPrimario) !important;
  background:transparent !important;
}

.hero-logo-container{
  width:320px;
  height:320px;
  max-width:72vw;
  max-height:72vw;
  border-radius:50%;
  border:1px solid rgba(232,229,222,.18);
  background:rgba(232,229,222,.10);
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow:0 28px 80px rgba(1,38,25,.30);
}

.hero-visual{
  width:62%;
  height:auto;
  filter:drop-shadow(0 26px 50px rgba(1,38,25,.40));
  transform:translate3d(0,0,0);
  animation:heroFloat 7.5s ease-in-out infinite;
}

@keyframes heroFloat{
  0%,100%{transform:translate3d(0,0,0) rotate(-1deg);}
  50%{transform:translate3d(0,-10px,0) rotate(1deg);}
}

.services-section.snap-section{
  padding-top:var(--nav-h) !important;
  padding-left:0 !important;
  padding-right:0 !important;
  padding-bottom:0 !important;
  min-height:auto;
  scroll-margin-top:calc(var(--nav-h) - 90px);
}

.services-section .row.my-5{
  border-radius:18px;
  margin-top:0 !important;
  margin-bottom:14px !important;
  min-height:auto;
}

.services-section .row.my-5:last-of-type{
  margin-bottom:0 !important;
}

.services-section .col-12.col-md-6.p-0{
  height:100%;
}

.services-section .image-1-service,
.services-section .image-2-service{
  width:100%;
  height:100%;
  max-height:420px;
  min-height:240px;
  object-fit:cover;
  display:block;
}

.services-section{
  margin-bottom:0 !important;
  padding-bottom:0 !important;
}

.services-section .hr-service{
  display:none;
}

.services-section .row.my-5{
  border:0;
  border-radius:0;
  background:transparent;
  margin:0 !important;
  height:calc(100vh - var(--nav-h));
  overflow:hidden;
}

.services-section .image-1-service,
.services-section .image-2-service{
  max-height:none;
  min-height:0;
}

@media (max-width:992px){
  .services-section .row.my-5{
    height:auto;
  }
  .services-section .image-1-service,
  .services-section .image-2-service{
    height:auto;
    max-height:360px;
    min-height:220px;
  }
}

.services-section .text-service-web-1,
.services-section .text-service-web-2{
  display:flex;
  flex-direction:column;
  justify-content:center;
  height:100%;
}

.services-section p{
  font-size:clamp(1.05rem, .55vw + 1rem, 1.25rem);
  line-height:1.65rem;
}

.values-section{
  display:flex;
  align-items:center;
}

.values-wrap{
  width:100%;
}

.values-head{
  text-align:center;
  margin:0 auto 22px;
  max-width:920px;
}

.values-title{
  font-size:clamp(2.2rem, 2.2vw + 1.1rem, 3.6rem);
  line-height:1.05;
  margin:0 0 8px;
}

.values-subtitle{
  margin:0;
  font-size:clamp(1.05rem, .6vw + 1rem, 1.3rem);
  line-height:1.6rem;
  color:rgba(1,38,25,.72);
}

.container-box{
  border-radius:18px;
  position:relative;
}

.container-box::before{
  content:"";
  position:absolute;
  top:14px;
  left:14px;
  width:46px;
  height:3px;
  background:var(--colorPrimario);
  border-radius:999px;
  opacity:.85;
}

.container-text-box{
  padding-top:10px;
}

.form-group h2{
  font-size:1.55rem;
  font-weight:800;
  letter-spacing:.2px;
}

.form-control{
  font-size:1.18rem;
}
.services-section{
  background:var(--blanco);
  color:var(--negro);
}

.services-section h2{
  position:relative;
  font-size:3.6rem;
  line-height:3.6rem;
  font-weight:400;
}

@media (max-width:1366px){
  .services-section h2{font-size:3rem;line-height:3rem;}
}

@media (max-width:992px){
  .services-section h2{font-size:2.2rem;line-height:2.2rem;}
}

.services-section h2 span{
  position:relative;
  display:inline-block;
}

.services-section h2 span::after{
  content:"";
  position:absolute;
  display:block;
  background-color:var(--colorPrimario);
  width:40%;
  height:2px;
  top:-6px;
  right:0;

}

.text-service-web-1 h2 span::after{
  left:0;
  right:auto;
}

.text-service-web-1 p{
  padding-right:18%;
}

.text-service-web-2 p{
  padding-left:18%;
}

@media (max-width:992px){
  .text-service-web-1 p,
  .text-service-web-2 p{
    padding-left:0;
    padding-right:0;
  }
}

.services-section .row.my-5{
  overflow:hidden;
  background:transparent;
  border:0;
  border-radius:0;
  margin:0 !important;
  height:calc(100vh - var(--nav-h));
}

.hr-service{
  border-top:1px solid rgba(1,38,25,.18);
  width:30%;
}

.values-section{
  background:var(--blanco);
}

.container-box{
  background:rgba(232,229,222,.70);
  border:1px solid rgba(1,38,25,.08);
  padding:22px 22px 18px;
  height:100%;
  transition:transform .25s ease;
}

.container-box:hover{
  transform:translateY(-4px);
}

.container-text-box h1{
  font-size:2.4rem;
  line-height:2.4rem;
  font-weight:400;
}

@media (max-width:992px){
  .container-text-box h1{font-size:2rem;line-height:2rem;}
}

.cases-section{
  background:var(--negro) !important;
  margin-bottom:0 !important;
  padding-left:0 !important;
  padding-right:0 !important;
  padding-bottom:0 !important;
}

.cases-section.snap-section{
  min-height:100vh;
  padding-top:var(--nav-h) !important;
  padding-bottom:0 !important;
}

.section-cases-success{
  overflow:hidden;
  border:0;
  background:var(--negro);
  height:calc(100vh - var(--nav-h));
}

.cases-section .images-cases-success{
  position:relative;
  width:100%;
  height:100%;
  padding:0;
  overflow:hidden;
  background:var(--negro);
  margin-right:-1px;
}

.cases-section .image-success{
  position:absolute;
  top:0;
  bottom:0;
  overflow:hidden;
  cursor:pointer;
  border:0;
  transition:transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .55s cubic-bezier(.2,.8,.2,1);
  width:38%;
  transform-origin:center center;
  z-index:2;
  box-shadow:0 10px 24px rgba(1,38,25,.14);
}

.cases-section .image-success:nth-child(1){left:0;}
.cases-section .image-success:nth-child(2){left:31%;}
.cases-section .image-success:nth-child(3){left:62%;}

.cases-section .image-success:hover,
.cases-section .image-success:focus{
  transform:scale(1.08);
  z-index:6;
  box-shadow:0 32px 70px rgba(1,38,25,.28);
}

.cases-section .case-overlay{
  display:none;
}

.cases-section .text-service-web-2 h3{
  font-size:clamp(2.4rem, 2.6vw + 1.1rem, 4.6rem);
  line-height:1.05;
  letter-spacing:.2px;
  margin:0;
}

.cases-section .text-service-web-2 #cases-text-container p{
  font-size:clamp(1.2rem, 1vw + .95rem, 1.75rem);
  line-height:1.95rem;
  color:rgba(232,229,222,.90);
}

.cases-section .text-service-web-2 .hr-service{
  border-top:1px solid rgba(232,229,222,.20);
  width:48%;
}

.cases-section .image-success img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@media (max-width:992px){
  .cases-section .images-cases-success{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
    padding:12px;
    height:auto;
  }

  .cases-section .image-success{
    position:relative;
    top:auto;
    bottom:auto;
    left:auto;
    width:auto;
    height:240px;
    transform:none;
  }
}

@media (max-width:767px){
  .cases-section .images-cases-success{
    grid-template-columns:repeat(1, minmax(0, 1fr));
  }
}

.cases-section .text-service-web-2{
  width:100%;
  height:100%;
  background:var(--negro);
  color:rgba(232,229,222,.94);
  padding:60px 60px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  margin-left:-1px;
}

@media (max-width:1200px){
  .cases-section .text-service-web-2{padding:48px 42px;}
}

@media (max-width:992px){
  .cases-section .text-service-web-2{padding:28px 22px;}
}

.cases-section .text-service-web-2 h3,
.cases-section .text-service-web-2 p{
  color:rgba(232,229,222,.94);
}

@media (max-width:767px){
  .cases-section .images-cases-success{
    grid-template-columns:repeat(1, minmax(0, 1fr));
  }
}

.case-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(1,38,25,0) 0%, rgba(1,38,25,.55) 60%, rgba(1,38,25,.78) 100%);
  display:flex;
  align-items:flex-end;
  padding:14px;
}

.case-title{
  color:rgba(232,229,222,.98);
  font-weight:700;
  letter-spacing:.2px;
}

.form-contacto-home{
  background-color:var(--negro);
  color:rgba(232,229,222,.96);
  width:100%;
  min-height:100vh;
  padding-top:calc(var(--nav-h) + 24px);
  padding-bottom:24px;
  display:flex;
  align-items:center;
}

.form-contacto{
  padding:40px 30px !important;
}

.form-contacto .text{
  display:flex;
  align-items:center;
}

.form-contacto .text h3{
  font-size:clamp(3.2rem, 4.1vw + 1.2rem, 6.4rem);
  line-height:1.02;
  font-weight:500;
  text-align:right;
  padding:0 60px 0 0;
  margin:0;
}

.form-contacto .text h3 span{
  position:relative;
}

.form-contacto .text h3 span::after{
  content:"";
  position:absolute;
  display:block;
  background-color:var(--colorPrimario);
  width:100%;
  height:2px;
  top:-6px;
  right:0;
  border-radius:3px;
}

@media (max-width:992px){
  .form-contacto{padding:18px 18px !important;}
  .form-contacto .text h3{font-size:2.2rem;line-height:2.6rem;padding:0 0 16px 0;text-align:left;}
}

.form-group h2{
  font-size:1.35rem;
  font-weight:700;
  margin:0 0 .4rem;
  color:rgba(232,229,222,.92);
}

.form-control{
  border-radius:12px;
  border:1px solid rgba(232,229,222,.22);
  background:rgba(232,229,222,.06);
  color:rgba(232,229,222,.96);
  font-size:1.1rem;
  padding:.9rem 1rem;
}

.form-control::placeholder{
  color:rgba(232,229,222,.55);
}

.form-control:focus{
  border-color:rgba(78,166,100,.75);
  box-shadow:0 0 0 4px rgba(120,191,158,.22);
  background:rgba(232,229,222,.08);
  color:rgba(232,229,222,.96);
}

.footer-custom{
  padding:1.4rem 0;
  background:rgba(1,38,25,.95);
  color:rgba(232,229,222,.92);
}

.footer-custom a{
  color:rgba(232,229,222,.92);
}

.footer-custom a:hover{
  color:var(--colorPrimario);
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .45s ease, transform .45s ease;
  transition-delay:calc(var(--d, 0) * 70ms);
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

@media (max-width:767px){
  .brand-logo{height:52px;}
  #navbarNav{display:none !important;}
  .navbar-custom .navbar-nav{display:none !important;}

  .hero-inner{
    padding-left:18px;
    padding-right:18px;
  }

  .hero-section p{
    max-width:none;
  }

  .services-section.snap-section{
    padding-top:var(--nav-h) !important;
  }

  .services-section .row.my-5{
    height:auto !important;
  }

  .services-section .col-12.col-md-6.p-0{
    height:auto !important;
  }

  .services-section .image-1-service,
  .services-section .image-2-service{
    height:auto !important;
    max-height:320px !important;
    min-height:220px !important;
  }

  .services-section .text-service-web-1,
  .services-section .text-service-web-2{
    padding:22px 18px !important;
    height:auto !important;
  }

  .values-section{
    min-height:auto;
    padding-top:calc(var(--nav-h) + 18px);
    padding-bottom:22px;
  }

  .box-service{padding:10px;}
  .container-box{padding:18px 16px 16px;}

  .cases-section.snap-section{
    min-height:auto;
    padding-top:0 !important;
    padding-bottom:18px !important;
  }

  .cases-section{
    padding-top:0 !important;
  }

  .section-cases-success{
    height:auto !important;
  }

  .cases-section .section-cases-success > .col-12.col-md-5{
    order:1;
  }

  .cases-section .section-cases-success > .col-12.col-md-7{
    order:2;
  }

  .cases-section .text-service-web-2{
    height:auto;
    padding:26px 18px;
    margin-left:0;
  }

  .cases-section .images-cases-success{
    height:auto;
    padding:12px;
    gap:12px;
  }

  .cases-section .image-success{
    height:230px;
  }

  .cases-carousel{
    background:var(--negro);
    color:rgba(232,229,222,.94);
    padding-top:calc(var(--nav-h) + 10px);
    padding-bottom:14px;
  }

  .cases-carousel-header{
    padding:0 18px 10px;
  }

  .cases-carousel-title{
    margin:0 0 10px;
    font-size:clamp(1.9rem, 4.6vw + .9rem, 2.7rem);
    line-height:1.05;
    letter-spacing:.2px;
  }

  .cases-carousel-subtitle{
    margin:0;
    color:rgba(232,229,222,.80);
    font-size:1.05rem;
    line-height:1.5rem;
  }

  .cases-track{
    display:flex;
    gap:14px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding:10px 18px 6px;
  }

  .cases-track::-webkit-scrollbar{display:none;}
  .cases-track{-ms-overflow-style:none;scrollbar-width:none;}

  .cases-slide{
    flex:0 0 86%;
    scroll-snap-align:center;
    border-radius:18px;
    overflow:hidden;
    background:rgba(232,229,222,.08);
    border:1px solid rgba(232,229,222,.14);
  }

  .cases-slide img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
  }

  .cases-slide-body{
    padding:14px 14px 16px;
  }

  .cases-slide-body h4{
    margin:0 0 6px;
    font-size:1.25rem;
    font-weight:800;
    color:rgba(232,229,222,.96);
  }

  .cases-slide-body p{
    margin:0;
    font-size:1.05rem;
    line-height:1.55rem;
    color:rgba(232,229,222,.82);
  }

  .contact-section.snap-section{
    min-height:auto;
  }

  .form-contacto-home{
    padding-top:calc(var(--nav-h) + 18px);
    padding-bottom:18px;
    min-height:auto;
  }

  .form-group h2{
    font-size:1.2rem;
  }

  .form-control{
    font-size:1.05rem;
  }
}

.lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index:2000;
}

.lightbox.is-open{
  display:block;
}

.lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.82);
}

.lightbox-img{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  max-width:min(1200px, 94vw);
  max-height:92vh;
  width:auto;
  height:auto;
  border-radius:14px;
  box-shadow:0 30px 90px rgba(0,0,0,.55);
  background:#000;
}

.lightbox-close{
  position:absolute;
  top:14px;
  right:14px;
  z-index:1;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(232,229,222,.22);
  background:rgba(0,0,0,.55);
  color:rgba(232,229,222,.92);
  font-size:26px;
  line-height:1;
}

.lightbox-close:focus{
  outline:none;
  box-shadow:0 0 0 4px rgba(180,244,214,.18);
}
