/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: 'Inter', sans-serif;
  color: #1B3C30;
  margin: 0;
}

html,
body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
}

p:last-child {
  margin-bottom: 0px;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== BOX ===== */
.box {
  --content-width: 1480px;
  width: var(--content-width);
  max-width: calc(100% - 160px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1366px) and (min-width: 767px) {
  .box {
    --content-width: 90vw !important;
  }
}

@media screen and (max-width: 767px) {
  .box {
    --content-width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 40px;
  padding: 12px 26px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn--primary {
  background: #D4894F;
  color: #fff;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid #D4894F;
  color: #D4894F;
}

.btn--dark {
  background: #1A5C50;
  color: #fff;
  border: none;
  padding: 17px 52px;
  font-size: 14px;
  letter-spacing: 0.16em;
  border-radius: 12px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #1B3C30;
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}

.header__logo {
  position: relative;
  z-index: 10;
  background: #fff;
  border-radius: 0 0 16px 16px;
  padding: 10px 52px 20px;
  align-self: flex-start;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.header__logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-left: auto;
  margin-right: auto;
}

.nav-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  user-select: none;
}

.header__nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.header__nav a:hover {
  color: #fff;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #D4894F;
  transition: width 0.25s;
}

.header__nav a:hover {
  color: #fff;
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  margin-left: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__mobile-nav {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: #1B3C30;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  max-height: 0;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s;
}

.header__mobile-nav.open {
  max-height: 400px;
  padding: 16px 20px 24px;
}

.header__mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__mobile-nav .btn {
  margin-top: 20px;
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to left,
    rgba(12, 35, 25, 0.65) 0%,
    rgba(12, 35, 25, 0.45) 45%,
    rgba(12, 35, 25, 0.05) 100%
  );
}

.hero__box {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding-top: 100px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
}

.hero__spacer {
  display: none;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 500px;
  width: 100%;
  margin-left: 60%;
}

.hero__tag {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 8px;
}

.hero__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(32px, 3.8vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.hero__title em {
  font-style: normal;
  color: #D4894F;
}

.hero__info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero__badge {
  background: #D4894F;
  border-radius: 16px;
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex-shrink: 0;
}

.hero__badge-label {
  font-size: 14px;
  font-weight: 700;
  color: #1B3C30;
  letter-spacing: 0.02em;
}

.hero__badge-value {
  font-family: 'Lato', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #1B3C30;
  line-height: 1;
}

.hero__desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.hero__desc strong {
  color: #D4894F;
  font-weight: 600;
}

.hero__btn {
  letter-spacing: 0.16em;
}

.hero__waves {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 500px;
  height: 500px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero__waves svg {
  width: 100%;
  height: 100%;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1B3C30;
  opacity: 0.5;
  margin-bottom: 12px;
}

/* ===== SOBRE ===== */
.sobre {
  background: #fff;
  overflow: hidden;
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.sobre__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 100px 80px 100px max(80px, calc((100vw - 1480px) / 2 + 80px));
}


.sobre__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #1B3C30;
  margin: 0;
}

.sobre__title em {
  font-style: normal;
  color: #D4894F;
}

.sobre__desc {
  font-size: 15px;
  line-height: 1.75;
  color: #4a5a52;
  margin: 0;
  max-width: 420px;
}

.sobre__line {
  width: 48px;
  height: 2px;
  background: #D4894F;
  margin-top: 4px;
}

.sobre__image {
  display: flex;
  align-items: stretch;
}

.sobre__img-wrap {
  flex: 1;
  min-width: 0;
  padding: 110px 0;
}

.sobre__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.sobre__accent-bar {
  width: 22px;
  flex-shrink: 0;
  background: #D4894F;
  padding: 110px 0;
  background-clip: content-box;
}

.sobre__teal-panel {
  width: 130px;
  flex-shrink: 0;
  background: #1A6B60;
  padding: 110px 0;
  background-clip: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sobre__teal-panel svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .sobre {
    padding: 0;
    overflow: visible;
    background: transparent;
    position: relative;
    z-index: 1;
    margin-bottom: -60px;
  }

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

  .sobre__text-col {
    padding: 32px 20px;
    gap: 12px;
    background: #fff;
  }

  .sobre__img-wrap {
    padding: 0;
  }

  .sobre__image img {
    height: 400px !important;
    min-height: unset;
  }

  .sobre__accent-bar,
  .sobre__teal-panel {
    padding: 0;
  }

  .sobre__image img {
    min-height: 300px;
  }

  .sobre__accent-bar,
  .sobre__teal-panel {
    display: none;
  }
}

/* ===== DESTAQUES ===== */
.destaques {
  background: #fff;
  padding: 0 0 80px;
  overflow: hidden;
}

.destaques__card {
  background: #F7BA83;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 52px 64px;
}

.destaques__border {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 25px;
  background: #024443;
  border-radius: 24px 0 0 24px;
}

.destaques__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.destaques__col-label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.destaques__col-label .section-label {
  opacity: 0.6;
  color: #1B3C30;
}

.destaques__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: #024443;
  margin: 0;
}

.destaques__col-size {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.destaques__size-label {
  font-size: 14px;
  font-weight: 500;
  color: #1B3C30;
}

.destaques__size-value {
  font-family: 'Lato', sans-serif;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 900;
  color: #1B3C30;
  line-height: 1.1;
}

.destaques__col-cta {
  flex-shrink: 0;
}

.btn--green {
  background: #024443;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.1em;
  gap: 8px;
}

.destaques__icons {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.destaques__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 80px;
  text-align: center;
}

.destaques__icon-box {
  width: 53px;
  height: 53px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 13px;
}

.destaques__icon-box img {
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  margin: -4px;
  object-fit: cover;
}

.destaques__icon-item span {
  font-size: 11px;
  font-weight: 500;
  color: #1B3C30;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .destaques {
    padding: 0 0 60px;
    margin-top: 0;
    position: relative;
    z-index: 3;
    background: transparent;
    overflow: visible;
  }

  .destaques .box {
    position: relative;
    z-index: 3;
  }

  .destaques__card {
    padding: 36px 24px 32px 40px;
  }

  .destaques__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }

  .destaques__col-size {
    order: 2;
  }

  .destaques__col-cta {
    order: 3;
    width: 100%;
  }

  .destaques__col-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .destaques__icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px;
  }

  .destaques__icon-item {
    flex: none;
    min-width: unset;
  }
}

/* ===== GALERIA ===== */
.galeria {
  background: #024443;
  padding: 80px 0 100px;
  overflow: hidden;
}

.galeria__header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.galeria__label {
  color: rgba(255,255,255,0.55);
}

.galeria__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.galeria__line {
  width: 80px;
  height: 2px;
  background: #D4894F;
}

.galeria__carousel-wrap {
  position: relative;
  overflow: hidden;
}

.galeria__track {
  display: flex;
  gap: 16px;
  padding: 0 6vw;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.galeria__track::-webkit-scrollbar {
  display: none;
}

.galeria__slide {
  flex: 0 0 calc(26vw - 16px);
  scroll-snap-align: center;
  border-radius: 20px;
  overflow: hidden;
}

.galeria__slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.galeria__slide:hover img {
  transform: scale(1.04);
}

.galeria__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #024443;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}

.galeria__btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
}

.galeria__btn--prev {
  left: 20px;
}

.galeria__btn--next {
  right: 20px;
}

@media (max-width: 767px) {
  .galeria__track {
    padding: 0 20px;
    gap: 12px;
  }

  .galeria__slide {
    flex: 0 0 85%;
    min-width: unset;
  }

  .galeria__slide img {
    height: 240px;
  }
}

/* ===== LOCALIZAÇÃO ===== */
.localizacao {
  background: #fff;
  padding: 80px 0 100px;
}

.localizacao__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.localizacao__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 900;
  color: #024443;
  margin: 0;
  line-height: 1.1;
}

.localizacao__title span {
  color: #024443;
}

.localizacao__lines {
  display: flex;
  gap: 0;
}

.localizacao__line {
  height: 3px;
  width: 120px;
}

.localizacao__line--green  { background: #024443; }
.localizacao__line--orange { background: #D4894F; width: 60px; }

.localizacao__map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.localizacao__map {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.localizacao__map-btns {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.btn--map {
  background: #fff;
  color: #024443;
  border: none;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
}

.btn--map:hover {
  background: #f5f5f5;
}

@media (max-width: 767px) {
  .localizacao__map {
    height: 320px;
  }

  .localizacao__map-btns {
    flex-direction: column;
  }
}

/* ===== CONTATO ===== */
.contato {
  position: relative;
  background: linear-gradient(120deg, #024443 0%, #0a7a6e 50%, #2ABFAD 100%);
  padding: 100px 0;
  overflow: hidden;
}

.contato__waves {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 400px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
}

.contato__waves svg { width: 100%; height: 100%; }

.contato__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.contato__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contato__label { color: rgba(255,255,255,0.5); }

.contato__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(26px, 2.8vw, 44px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.contato__desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin: 0;
  max-width: 420px;
}

.contato__whatsapp {
  background: transparent;
  border: 1.5px solid #D4894F;
  color: #D4894F;
  padding: 14px 28px;
  font-size: 14px;
  gap: 10px;
  align-self: flex-start;
  border-radius: 40px;
}

.contato__whatsapp:hover { background: rgba(212,137,79,0.1); }

.contato__line {
  width: 80px;
  height: 2px;
  background: #D4894F;
}

.contato__form-wrap {
  background: rgba(2, 40, 38, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 36px 40px;
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 520px;
  justify-self: end;
}

.contato__form-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0 0 28px;
}

.contato__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contato__field label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.contato__field input {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
}

.contato__field input::placeholder { color: rgba(255,255,255,0.35); }
.contato__field input:focus { border-color: rgba(255,255,255,0.5); }

.contato__submit {
  background: #D4894F;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 4px;
  width: 100%;
}

.contato__submit:hover { opacity: 0.9; }

.contato__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.contato__check input { margin-top: 2px; accent-color: #2ABFAD; flex-shrink: 0; }

.contato__check span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.contato__check a { color: rgba(255,255,255,0.75); text-decoration: underline; }

@media (max-width: 900px) {
  .contato__inner { grid-template-columns: 1fr; gap: 40px; }
  .contato__form-wrap { padding: 24px 20px; }
}

/* ===== FOOTER ===== */
.footer {
  background: #024443;
  padding: 48px 0 0;
}

@media (max-width: 767px) {
  .footer {
    padding: 48px 24px 0;
  }

  .footer__mid {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.footer__top {
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
}

.footer__logo {
  background: #fff;
  border-radius: 20px;
  padding: 16px 24px;
}

.footer__logo img {
  height: 80px;
  width: auto;
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0;
}

.footer__mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer__address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer__instagram {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__instagram:hover { color: #fff; }

.footer__disclaimer {
  padding: 24px 0;
}

.footer__disclaimer p {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__bottom span,
.footer__bottom a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}

.footer__bottom a:hover { color: rgba(255,255,255,0.8); }

.footer__credits {
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.footer__balzani-logo {
  height: 20px;
  width: auto;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: default;
  animation: lbFadeIn 0.25s ease;
}

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

.galeria__slide { cursor: pointer; }

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 900px) {

  .header__nav,
  .header__cta {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  .header__inner {
    justify-content: space-between;
    height: 60px;
  }

  .header__mobile-nav {
    display: flex;
  }

  .header__logo {
    padding: 8px 28px 18px;
  }

  .header__logo img {
    height: 75px;
  }
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 767px) {
  .hero__bg {
    background-image: url('assets/hero-bg.avif');
    background-size: 420%;
    background-position: 40% 65%;
    background-repeat: no-repeat;
  }

  .hero__bg img {
    display: none;
  }

  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(12, 35, 25, 0.88) 0%,
      rgba(12, 35, 25, 0.70) 45%,
      rgba(12, 35, 25, 0.20) 70%,
      rgba(12, 35, 25, 0.05) 100%
    );
  }

  .hero__box {
    padding-top: 190px;
    padding-bottom: 60px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 900px;
  }

  .hero__spacer {
    display: none;
  }

  .hero__content {
    max-width: 100%;
    gap: 24px;
    margin-left: 0 !important;
    align-items: flex-start;
  }

  .hero__badge-value {
    font-size: 36px;
  }

  .hero__badge {
    padding: 12px 20px;
  }

  .hero__info {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .hero__btn {
    width: 100%;
    justify-content: center;
  }

  .hero__waves {
    display: none;
  }
}