:root {
  --white: #ffffff;
  --black: #070b12;
  --text: #1f2937;
  --grey: #667085;

  --blue: #005eff;
  --electric: #00a6ff;

  --light: #f3f8ff;
  --card: #ffffff;
}

.dark {
  --white: #070b12;
  --black: #ffffff;
  --text: #e5e7eb;
  --grey: #aab2c0;
  --light: #101827;
  --card: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  transition: 0.3s;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 78px;

  padding: 0 7%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255,255,255,0.92);

  backdrop-filter: blur(15px);

  z-index: 1000;

  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.dark .navbar {
  background: rgba(7,11,18,0.92);
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  text-decoration: none;
}

.logo span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.theme-btn {
  width: 42px;
  height: 42px;

  border-radius: 50%;
  border: none;

  background: linear-gradient(
    135deg,
    var(--blue),
    var(--electric)
  );

  color: white;
  cursor: pointer;
}

/* BURGER */

.burger {
  width: 50px;
  height: 50px;

  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 6px;

  background: transparent;

  border: 2px solid rgba(0,0,0,0.15);
  border-radius: 12px;

  cursor: pointer;

  position: relative;
  z-index: 2000;
}

.burger span {
  width: 26px;
  height: 3px;

  background: var(--black);

  border-radius: 10px;

  transition: 0.3s ease;

  margin: 0 auto;
}

/* ANIMATION CROIX */

.burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* HERO */

.hero {
  min-height: 100vh;

  padding: 140px 7% 80px;

  display: grid;
  grid-template-columns: 1.3fr 0.7fr;

  align-items: center;

  gap: 40px;

  background:
  radial-gradient(
    circle at 80% 20%,
    rgba(0,166,255,0.25),
    transparent 30%
  ),
  linear-gradient(
    135deg,
    var(--white),
    var(--light)
  );
}

.badge {
  display: inline-block;

  padding: 10px 18px;

  background: rgba(0,94,255,0.1);

  color: var(--blue);

  border-radius: 50px;

  font-weight: 900;

  margin-bottom: 25px;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);

  line-height: 1;

  color: var(--black);

  margin-bottom: 25px;
}

.hero p {
  font-size: 1.2rem;

  line-height: 1.8;

  color: var(--grey);

  max-width: 680px;

  margin-bottom: 35px;
}

.btn {
  display: inline-block;

  padding: 16px 32px;

  border-radius: 50px;

  background: linear-gradient(
    135deg,
    var(--blue),
    var(--electric)
  );

  color: white;

  text-decoration: none;

  font-weight: 900;

  border: none;

  cursor: pointer;

  box-shadow: 0 15px 35px rgba(0,94,255,0.25);

  transition: 0.3s;
}

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

.hero-card {
  background: var(--card);

  border-radius: 30px;

  padding: 35px;

  box-shadow: 0 25px 60px rgba(0,94,255,0.14);

  border: 1px solid rgba(0,94,255,0.12);
}

.hero-card h3 {
  color: var(--black);

  font-size: 1.8rem;

  margin-bottom: 15px;
}

.hero-card strong {
  color: var(--blue);

  font-size: 1.4rem;
}

/* SECTIONS */

.section,
.comparison-section {
  padding: 100px 7%;
}

.section-title,
.comparison-title {
  text-align: center;

  max-width: 850px;

  margin: 0 auto 55px;
}

.section-title span,
.comparison-title span {
  color: var(--blue);

  text-transform: uppercase;

  font-weight: 900;

  letter-spacing: 2px;
}

.section-title h2,
.comparison-title h2 {
  margin-top: 12px;

  color: var(--black);

  font-size: clamp(2rem, 5vw, 3.3rem);
}

.section-title p,
.comparison-title p {
  margin-top: 12px;

  color: var(--grey);

  font-size: 1.1rem;
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.service-card {
  background: var(--card);

  border-radius: 26px;

  padding: 35px;

  box-shadow: 0 20px 45px rgba(0,94,255,0.1);

  border: 1px solid rgba(0,94,255,0.12);

  transition: 0.3s;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  color: var(--blue);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--grey);
  line-height: 1.7;
}


/* ICONES SERVICES ANIMEES */

.service-icon {
  width: 72px;
  height: 72px;

  margin-bottom: 24px;

  border-radius: 22px;

  background: linear-gradient(
    135deg,
    rgba(0,94,255,0.12),
    rgba(0,166,255,0.22)
  );

  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

/* VITRES */

.icon-window::before {
  content: "";
  width: 38px;
  height: 42px;

  border: 3px solid var(--blue);
  border-radius: 8px;

  background:
    linear-gradient(90deg, transparent 48%, var(--blue) 50%, transparent 52%),
    linear-gradient(0deg, transparent 48%, var(--blue) 50%, transparent 52%);
}

.icon-window span {
  position: absolute;

  width: 20px;
  height: 90px;

  background: rgba(255,255,255,0.8);

  transform: rotate(25deg);

  animation: shineWindow 2.5s infinite;
}

@keyframes shineWindow {
  0% {
    left: -40px;
  }

  100% {
    left: 110px;
  }
}

/* VERANDA / SOLEIL */

.icon-sun::before {
  content: "";

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: var(--blue);

  box-shadow: 0 0 25px rgba(0,166,255,0.8);

  animation: sunPulse 2s infinite ease-in-out;
}

.icon-sun span {
  position: absolute;

  width: 54px;
  height: 54px;

  border: 2px dashed var(--electric);
  border-radius: 50%;

  animation: sunRotate 8s linear infinite;
}

@keyframes sunPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes sunRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* PANNEAUX SOLAIRES */

.icon-solar::before {
  content: "";

  width: 46px;
  height: 34px;

  border-radius: 8px;

  background:
    linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.35) 31%, transparent 32%),
    linear-gradient(0deg, transparent 45%, rgba(255,255,255,0.35) 46%, transparent 47%),
    linear-gradient(135deg, var(--blue), var(--electric));

  transform: skewX(-10deg);

  box-shadow: 0 0 20px rgba(0,166,255,0.5);

  animation: solarGlow 2s infinite ease-in-out;
}

.icon-solar span {
  position: absolute;

  bottom: 12px;

  width: 26px;
  height: 4px;

  background: var(--blue);

  border-radius: 10px;
}

@keyframes solarGlow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(0,166,255,0.35);
  }

  50% {
    box-shadow: 0 0 28px rgba(0,166,255,0.9);
  }
}

/* BARDAGES / STORES */

.icon-store::before {
  content: "";

  width: 46px;
  height: 36px;

  border-radius: 8px 8px 4px 4px;

  background: repeating-linear-gradient(
    to bottom,
    var(--blue) 0 6px,
    var(--electric) 6px 12px
  );

  animation: storeMove 2.2s infinite ease-in-out;
}

.icon-store span {
  position: absolute;

  bottom: 13px;

  width: 42px;
  height: 4px;

  border-radius: 10px;

  background: #070b12;
}

@keyframes storeMove {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* HOVER CARDS */

.service-card:hover .service-icon {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(0,166,255,0.25);
}

.service-icon {
    margin-left: auto;
  margin-right: auto;
  transition: 0.3s ease;
}



/* SECTION SECTEURS */

.sectors {
  background: var(--light);
}

.sector-checker {
  max-width: 950px;
  margin: auto;
}

.sector-card {
  background: var(--card);

  border-radius: 30px;

  padding: 40px;

  text-align: center;

  border: 1px solid rgba(0,94,255,0.12);

  box-shadow: 0 25px 60px rgba(0,94,255,0.12);
}

.sector-card h3 {
  color: var(--black);

  font-size: 2rem;

  margin-bottom: 15px;
}

.sector-card p {
  color: var(--grey);

  line-height: 1.7;

  margin-bottom: 30px;
}

.sector-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.sector-actions span {
  color: var(--grey);
  font-weight: 800;
}

.address-box {
  width: 100%;

  display: flex;

  gap: 15px;
}

.address-box input {
  flex: 1;

  padding: 18px;

  border-radius: 50px;

  border: 1px solid rgba(0,94,255,0.2);

  background: var(--white);

  color: var(--text);

  font-size: 1rem;

  outline: none;
}

.sector-result {
  margin-top: 30px;

  padding: 20px;

  border-radius: 20px;

  font-weight: 900;

  background: rgba(0,94,255,0.08);

  color: var(--text);
}

.sector-result.success {
  background: rgba(34,197,94,0.15);
  color: #16a34a;
}

.sector-result.error {
  background: rgba(239,68,68,0.15);
  color: #dc2626;
}



/* LOADER VITRE */

.loader-text {
  margin-bottom: 14px;
  font-weight: 900;
}

.window-loader {
  position: relative;
  width: 220px;
  height: 90px;
  margin: 0 auto;
  overflow: hidden;

  border-radius: 18px;
  background: linear-gradient(135deg, #dff3ff, #ffffff);
  border: 2px solid rgba(0,94,255,0.18);
}

.window-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,166,255,0.18);
  animation: cleanGlass 1.6s infinite linear;
}

.squeegee {
  position: absolute;
  top: 10px;
  left: -40px;

  width: 18px;
  height: 70px;

  background: #070b12;
  border-radius: 8px;

  animation: squeegeeMove 1.6s infinite linear;
}

.squeegee::after {
  content: "";
  position: absolute;
  top: 28px;
  left: -12px;

  width: 42px;
  height: 10px;

  background: var(--blue);
  border-radius: 10px;
}

@keyframes squeegeeMove {
  from {
    left: -40px;
  }

  to {
    left: 240px;
  }
}

@keyframes cleanGlass {
  from {
    clip-path: inset(0 0 0 0);
  }

  to {
    clip-path: inset(0 0 0 100%);
  }
}



/* RESPONSIVE */

@media(max-width:768px) {

  .address-box {
    flex-direction: column;
  }

}

/* TABLEAU */

/* SECTION POURQUOI */

.comparison-section {
  padding: 100px 7%;
  background: var(--light);
}

.comparison-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 55px;
}

.comparison-title span {
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 3px;
}

.comparison-title h2 {
  margin-top: 12px;
  color: var(--black);
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.15;
}

.comparison-title p {
  margin-top: 12px;
  color: var(--grey);
  font-size: 1.1rem;
}

.comparison-table {
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  border-radius: 26px;
  background: var(--card);
  box-shadow: 0 25px 60px rgba(0,94,255,0.14);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.comparison-row div {
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-row div:first-child {
  justify-content: flex-start;
  font-weight: 900;
  color: var(--black);
}

.comparison-head {
  background: linear-gradient(135deg, #dff3ff, #ccecff);
  font-weight: 900;
}

.comparison-head div {
  color: #000 !important;
}

.comparison-row:nth-child(odd):not(.comparison-head) {
  background: rgba(0,94,255,0.04);
}

/* VERSION MOBILE */

@media(max-width: 768px) {

  .comparison-section {
    padding: 80px 5%;
  }

  .comparison-title {
    margin-bottom: 35px;
  }

  .comparison-title span {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .comparison-title h2 {
    font-size: 2rem;
    line-height: 1.18;
  }

  .comparison-title p {
    font-size: 1rem;
  }

  .comparison-table {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    display: grid;
    gap: 18px;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--card) !important;
    border-radius: 22px;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(0,94,255,0.12);
    box-shadow: 0 15px 35px rgba(0,94,255,0.08);
  }

  .comparison-row div {
    padding: 16px 20px;
    justify-content: flex-start;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .comparison-row div:last-child {
    border-bottom: none;
  }

  .comparison-row div:nth-child(1) {
    background: rgba(0,94,255,0.08);
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--black);
  }

  .comparison-row div:nth-child(2)::before {
    content: "Vous-même : ";
    font-weight: 900;
    color: var(--blue);
    margin-right: 6px;
  }

  .comparison-row div:nth-child(3)::before {
    content: "Rovclean : ";
    font-weight: 900;
    color: var(--blue);
    margin-right: 6px;
  }

}

/* REFERENCES LOGOS */

.references-section {
  overflow: hidden;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 40px;

  width: max-content;

  animation: scrollLogos 30s linear infinite;
}

.logo-item {
  width: 240px;
  height: 140px;

  flex-shrink: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background: var(--card);

  border-radius: 24px;

  border: 1px solid rgba(0,94,255,0.08);

  box-shadow: 0 15px 35px rgba(0,94,255,0.08);

  transition: 0.3s;

  overflow: hidden;
}


.logo-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 24px;
}

@keyframes scrollLogos {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-220px * 7 - 40px * 7));
  }

}

/* RESPONSIVE */

@media(max-width:768px) {

  .logo-item {
    width: 150px;
    height: 110px;
  }

  .logo-item img {
    max-width: 100%;
  }
.logo-track {
  display: flex;
  align-items: center;
  gap: 40px;

  width: max-content;

  animation: scrollLogos 20s linear infinite;
}
}

/* CONTACT */

.contact-form {
  max-width: 750px;

  margin: auto;

  display: grid;

  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 18px;

  border-radius: 18px;

  border: 1px solid rgba(0,94,255,0.2);

  background: var(--card);

  color: var(--text);

  font-size: 1rem;
}

.contact-form textarea {
  min-height: 170px;
  resize: none;
}

/* FOOTER */

footer {
  padding: 45px 7%;
  text-align: center;
  background: #070b12;
  color: #ffffff;
}

footer p {
  margin: 10px 0;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
}

.footer-logo span {
  color: var(--blue);
}

.footer-logo span {
  color: var(--blue);
}
/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s;
}

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

/* RESPONSIVE */

@media(max-width:1050px) {

  .services-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .hero {
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px) {

  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;

    top: 78px;
    right: -100%;

    width: 100%;
    height: calc(100vh - 78px);

    background: var(--white);

    flex-direction: column;
    justify-content: center;

    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    margin-bottom: 14px;
  }

  .comparison-row div {
    justify-content: flex-start;
  }

}


/* BANNIERE COOKIES */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 25px;

  transform: translateX(-50%);

  width: calc(100% - 40px);
  max-width: 850px;

  background: var(--card);
  color: var(--text);

  border: 1px solid rgba(0,94,255,0.15);
  border-radius: 24px;

  padding: 22px;

  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  box-shadow: 0 20px 60px rgba(0,94,255,0.18);

  z-index: 5000;
}

.cookie-banner.show {
  display: flex;
}

.cookie-text strong {
  color: var(--black);
  font-size: 1.1rem;
}

.cookie-text p {
  margin-top: 6px;
  color: var(--grey);
  line-height: 1.5;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  cursor: pointer;

  padding: 13px 22px;

  border-radius: 999px;

  font-weight: 900;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--blue), var(--electric));
  color: white;
}

.cookie-btn.refuse {
  background: rgba(0,94,255,0.08);
  color: var(--text);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

/* MOBILE */

@media(max-width: 768px) {

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 15px;
    padding: 20px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

}




.manage-cookies {
  margin-top: 15px;

  background: transparent;
  border: none;

  color: var(--grey);

  cursor: pointer;

  font-size: 0.95rem;
}

.manage-cookies:hover {
  color: var(--blue);
}

.footer-links {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-link {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--blue);
}

/* MODALS */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
}

.modal.show {
  display: flex;
}

.modal-content {
  max-width: 750px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--card);
  color: var(--text);
  border-radius: 26px;
  padding: 38px;
  position: relative;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.modal-content h2 {
  color: var(--black);
  margin-bottom: 22px;
  font-size: 2rem;
}

.modal-content p {
  line-height: 1.7;
  margin-bottom: 14px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: none;
  background: transparent;
  color: var(--black);
  font-size: 2rem;
  cursor: pointer;
}




/* GALERIE PHOTO */

.gallery {
  background: var(--white);
  overflow: hidden;
}

.gallery-masonry {
  max-width: 1200px;
  margin: auto;

  column-count: 4;
  column-gap: 22px;
}

.g-item {
  display: inline-block;
  width: 100%;

  margin-bottom: 22px;

  position: relative;

  overflow: hidden;

  border-radius: 22px;

  box-shadow: 0 20px 45px rgba(0,94,255,0.12);

  border: 1px solid rgba(0,94,255,0.10);

  cursor: pointer;

  break-inside: avoid;

  transform: translateY(14px);

  opacity: 0;

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.3s ease;
}

.g-item.in {
  opacity: 1;
  transform: translateY(0);
}

.g-item img {
  width: 100%;
  height: auto;

  display: block;

  transform: scale(1);

  transition: transform 0.5s ease;
}

.g-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 18px;

  color: #ffffff;

  font-weight: 900;

  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0,0,0,0.65) 90%
  );

  pointer-events: none;
}

@media (hover:hover) and (pointer:fine) {
  .g-item:hover img {
    transform: scale(1.06);
  }

  .g-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(0,94,255,0.18);
  }
}

/* BADGE VIDEO */

.g-item.video .g-play {
  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  display: grid;
  place-items: center;

  width: 64px;
  height: 64px;

  border-radius: 999px;

  background: rgba(0,0,0,0.45);

  color: #ffffff;

  font-size: 26px;

  box-shadow: 0 8px 18px rgba(0,0,0,0.25);

  z-index: 2;
}

@media (hover:hover) and (pointer:fine) {
  .g-item.video:hover .g-play {
    background: rgba(0,0,0,0.6);
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;

  display: none;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.78);

  z-index: 9999;

  padding: 20px;
}

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

.lb-figure {
  max-width: min(92vw, 1200px);
  max-height: 86vh;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;
}

.lb-figure img,
.lb-figure video {
  max-width: 100%;
  max-height: 76vh;

  width: auto;
  height: auto;

  border-radius: 14px;

  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

.lb-figure video {
  display: block;
  object-fit: contain;
  background: #000000;
}

.lb-figure .is-hidden {
  display: none !important;
}

.lb-figure figcaption {
  color: #ffffff;
  text-align: center;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* CONTROLES LIGHTBOX */

.lb-close {
  position: absolute;
  top: 14px;
  right: 16px;

  background: rgba(255,255,255,0.15);

  color: #ffffff;

  border: none;

  width: 44px;
  height: 44px;

  border-radius: 999px;

  font-size: 30px;

  cursor: pointer;

  backdrop-filter: blur(4px);
}

.lb-nav {
  position: absolute;
  top: 50%;

  transform: translateY(-50%);

  width: 52px;
  height: 52px;

  border-radius: 999px;

  border: none;

  cursor: pointer;

  background: rgba(255,255,255,0.18);

  color: #ffffff;

  font-size: 34px;

  backdrop-filter: blur(4px);
}

.lb-nav.prev {
  left: 16px;
}

.lb-nav.next {
  right: 16px;
}

.lb-nav:hover,
.lb-close:hover {
  background: rgba(255,255,255,0.28);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .gallery-masonry {
    column-count: 3;
  }
}

@media (max-width: 560px) {
  .gallery-masonry {
    column-count: 2;
    column-gap: 14px;
  }

  .g-item {
    margin-bottom: 14px;
    border-radius: 18px;
  }

  .g-cap {
    padding: 12px;
    font-size: 0.85rem;
  }

  .lb-nav {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
}