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

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #8e594b;
  color: #fff;
}



.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  background: transparent;
  transition: background 0.4s ease;
}

.nav.scrolled {
  background: rgba(13, 12, 10, 0.88);
  backdrop-filter: blur(12px);
}

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3.5rem;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.nav__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  color: #f8f5f0;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav__link--cta {
  border: 6px solid #8e594b;
  padding: 0.6rem 1.2rem;
}

.nav__toggle {
  display: none;
}


.hero {
  position: relative;
  width: 100%;
  height: 96vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #000;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    background-position: center center;
    padding: 0;
  }

  .hero__media {
    position: absolute;
    inset: 0;
  }

  .hero__image {
    object-fit: cover;
    object-position: center center;
  }
}


.form-section {
  background: #fff;
  padding: 4rem 2rem;
}

.form-container {
  max-width: 1200px;
  margin: 0 auto;
}

.form-title {
  color: #8e594b;
  margin-bottom: 2rem;
}

.gaya-form-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gaya-form-col {
  flex: 1;
  min-width: 240px;
}

.gaya-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #8e594b;
}

.gaya-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
}

.gaya-form-terms {
  margin: 1.5rem 0;
  color: #8e594b;
}

.gaya-submit {
  background: #8e594b;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
}





.banner-section {
  position: relative;
  min-height: 100vh;
  background-image: url("../images/banner-section-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 8rem 2rem;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.banner-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.4);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  max-width: clamp(28rem, 40vw, 44rem);
  width: 100%;
  padding-left: clamp(2rem, 5vw, 5.5rem);
  padding-right: 1rem;
}

.banner-content h2 {
  font-size: clamp(3.4rem, 4.8vw, 5.4rem);
  line-height: 1.02;
  margin: 0;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.banner-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.82;
  margin: 0;
  max-width: 52ch;
}

.banner-content p + p {
  margin-top: 1.25rem;
}



@media (max-width: 1200px) {
  .banner-section { min-height: 85vh; padding: 6.5rem 1.75rem; }
  .banner-content { max-width: clamp(26rem, 46vw, 40rem); }
  .banner-content h2 { font-size: clamp(3.2rem, 5vw, 4.6rem); }
}

@media (max-width: 992px) {
  .banner-section { min-height: 78vh; padding: 5rem 1.5rem; }
  .banner-content { max-width: clamp(24rem, 52vw, 36rem); }
  .banner-content h2 { font-size: clamp(2.8rem, 5.4vw, 3.8rem); }
}

@media (max-width: 720px) {
  .banner-section {
    padding: 3.5rem 1.5rem;
    background-position: top center;
    min-height: 60vh;
  }
  .banner-content {
    align-items: center;
    text-align: center;
    max-width: min(100%, 30rem);
    padding-left: 0;
    padding-right: 0;
  }
  .banner-content h2 {
    font-size: clamp(2.3rem, 8vw, 3.2rem);
    max-width: 18ch;
    letter-spacing: -0.02em;
  }
  .banner-content p {
    font-size: clamp(0.95rem, 3.4vw, 1.02rem);
    line-height: 1.88;
    max-width: 38ch;
  }
}



.gallery-section {
  background: transparent;
  padding: 5rem 2rem;
}

.address-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  background: #895344;
  padding: 4.5rem 2rem 2rem;
}

.address-section .address-card {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}

.address-section .address-copy {
  margin-bottom: 2rem;
}

.address-section h3 {
  margin: 0 0 0.75rem;
  color: #895344;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.address-section p {
  margin: 0;
  color: #4b3b37;
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  line-height: 1.2;
  font-weight: 600;
}

.address-section .address-map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(137,83,68,0.16);
}

.address-section .address-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffffff; 
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.gallery-tab {
  border-bottom: 2px solid rgba(255,255,255,0.18);
  padding-bottom: 0.75rem;
  color: #ffffff; 
}

.gallery-wrapper {width: 95%; max-width: 1500px; margin: 0 auto; }

.gallery-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  position: relative;
}


.gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
  position: relative;
  z-index: 2; 
}

.gallery-track.no-transition { transition: none !important; }

.gallery-item {
  min-width: 100%; 
  flex: 0 0 100%;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

@media (max-width: 980px) {
  .gallery-section {
    padding: 7vh 1.5rem;
  }

  .gallery-wrapper {
    width: 100%;
    padding: 0;
  }

  .gallery-slider {
    width: 100%;
  }

  .gallery-item img {
    width: 100%;
    height: 42vh;
    object-fit: cover;
  }

  .gallery-track {
    gap: 1rem;
  }
}

.gallery-caption {
  position: absolute;
  left: 24px;
  bottom: 18px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}


.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 72px;
  height: 72px;

  border-radius: 50%;
  border: none;

  background: rgba(255,255,255,0.04);
  color: #111;

  cursor: pointer;

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

  font-size: 26px;
  font-weight: 300;

  box-shadow: 0 10px 35px rgba(0,0,0,0.15);

  z-index: 20;

  transition: all 0.25s ease;
}

.gallery-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.gallery-prev {
  left: -36px;
}

.gallery-next {
  right: -36px;
}

.gallery-prev { margin-right: 1rem; }
.gallery-next { margin-left: 1rem; }


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

.gallery-modal.open { display: flex; }

.gallery-modal-image { max-width: 92%; max-height: 92%; border-radius: 8px; }

.gallery-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
}

.gallery-modal-prev,
.gallery-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 64px;
  height: 64px;

  border: none;
  border-radius: 50%;

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

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

  cursor: pointer;

  z-index: 10001;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.12);

  backdrop-filter: blur(10px);
}

.gallery-modal-prev,
.gallery-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255, 0.04);
  color: #080808de;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 10001;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
  transform: translateY(-50%) scale(1.05);
}

.gallery-modal-prev svg,
.gallery-modal-next svg {
  width: 24px;
  height: 24px;

  color: #111;
  stroke-width: 2.5;
}

.gallery-modal-prev {
  left: 24px;
}

.gallery-modal-next {
  right: 24px;
}

.gallery-modal-prev { left: 28px; }
.gallery-modal-next { right: 28px; }

.gallery-modal-caption {
  position: absolute;
  bottom: 20px;

  left: 50%;
  transform: translateX(-50%);

  width: auto;
  max-width: 90%;

  color: #fff;
  font-size: 1rem;
  text-align: center;

  z-index: 10002;

  padding: 0.75rem 1.2rem;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);

  border-radius: 14px;

  line-height: 1.4;
}

.gallery-page {
  width: min(1120px, 100%);
  margin: 0 auto 4rem;
  --bg: #ffffff;
  --card: #ffffff;
  --text: #7e4f42;
  --text-muted: #9f7d6d;
  --border: rgba(126,79,66,0.15);
  --white: #fff;
}



.gallery-page.secondary-gallery {
  background: #FFFFFF;
  width: 100%;
  min-height: auto;
  margin: 0 0 4rem; /* keep spacing below gallery so next section isn't cramped */
  padding: 4rem 1.5rem 5.5rem; /* more breathing room below Plantas */
}
.gallery-page.secondary-gallery .gallery-card {
  background: #fff;
  border: 1px solid rgba(126,79,66,0.12);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(22, 14, 12, 0.08);
  max-width: 980px;
  margin: 0 auto;
}

.gallery-page.secondary-gallery h2 {
  margin: 0 0 28px;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  color: #7e4f42;
}

.gallery-page.secondary-gallery .tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.gallery-page.secondary-gallery .tab {
  background: transparent;
  border: none;
  color: #9f7d6d;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease;
}

.gallery-page.secondary-gallery .tab.active {
  color: #8e594b;
}

.gallery-page.secondary-gallery .tab.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #8e594b;
  border-radius: 999px;
}

.gallery-page.secondary-gallery .tab-group {
  display: flex;
  align-items: center;
  gap: 12px;
}



.gallery-page.secondary-gallery .preview {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(126,79,66,0.08);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-page.secondary-gallery .preview img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  max-height: 420px;
  display: block;
  object-fit: contain;
}

.gallery-page.secondary-gallery .btn-enlarge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 6;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: #a16a5f;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-page.secondary-gallery .btn-enlarge:hover {
  transform: translateY(-1px);
  background: #8f5f54;
}

.gallery-page.secondary-gallery .nav.prev,
.gallery-page.secondary-gallery .nav.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255, 0.04);
  color: #080808de;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 6;
}

.gallery-page.secondary-gallery .nav.prev {
  left: 18px;
  right: auto;
}
.gallery-page.secondary-gallery .nav.next {
  left: auto;
  right: 18px;
}

.gallery-page.secondary-gallery .nav.prev:hover,
.gallery-page.secondary-gallery .nav.next:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(126,79,66,0.24);
}

.gallery-page.secondary-gallery .thumbnails {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.gallery-page.secondary-gallery .thumb {
  width: 98px;
  height: 70px;
  border: 1px solid rgba(126, 79, 66, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-page.secondary-gallery .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-page.secondary-gallery .thumb.active {
  border-color: #8e594b;
  box-shadow: 0 14px 35px rgba(126, 79, 66, 0.12);
  transform: translateY(-1px);
}

.gallery-page.secondary-gallery .caption {
  margin-top: 18px;
  text-align: center;
  color: #9f7d6d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.gallery-page .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(126,79,66,0.14);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 5;
}

.gallery-page .nav:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(126,79,66,0.22);
}

.gallery-page .nav.prev { left: 24px; }
.gallery-page .nav.next { right: 24px; }

.gallery-page .caption {
  margin-top: 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gallery-page .modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 20;
}

.gallery-page .modal.active {
  display: flex;
}

.gallery-page .modal-content {
  position: relative;
  width: min(980px, 100%);
  max-height: 90vh;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 32px 80px rgba(13, 13, 13, 0.2);
}

.gallery-page .modal-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  max-height: 76vh;
  object-fit: contain;
}

.gallery-page .modal-content p {
  margin: 16px 0 0;
  color: var(--text);
  text-align: center;
  font-size: 0.98rem;
}

.gallery-page .modal .close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(126,79,66,0.12);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 820px) {
  .gallery-page.secondary-gallery .gallery-card {
    padding: 20px;
  }

  .gallery-page.secondary-gallery .preview {
    min-height: 300px;
  }

  .gallery-page.secondary-gallery .nav.prev,
  .gallery-page.secondary-gallery .nav.next {
    width: 38px;
    height: 38px;
  }

  .gallery-page.secondary-gallery .nav.prev {
    left: 14px;
  }

  .gallery-page.secondary-gallery .nav.next {
    right: 14px;
  }
}

@media (max-width: 600px) {
  .gallery-page.secondary-gallery {
    padding: 3rem 1rem 2rem;
  }

  .gallery-page.secondary-gallery .gallery-card {
    padding: 18px;
  }

  .gallery-page.secondary-gallery .tabs {
    gap: 14px;
  }

  .gallery-page.secondary-gallery .btn-enlarge {
    padding: 9px 10px;
    top: 14px;
    left: 14px;
  }

  .gallery-page.secondary-gallery .preview {
    min-height: 260px;
  }

  .gallery-page.secondary-gallery .thumb {
    width: 84px;
    height: 62px;
  }

  .gallery-page.secondary-gallery .nav.prev {
    left: 10px;
  }

  .gallery-page.secondary-gallery .nav.next {
    right: 10px;
  }
}


@media (max-width: 992px) {
  .gallery-item img { height: 480px; }
}

@media (max-width: 720px) {
  .gallery-item img { height: 320px; }
  .gallery-arrow { width: 48px; height: 48px; }
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 9999;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 72%;
  height: 72%;
  display: block;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 56px;
    height: 56px;
  }
}


.site-footer {
  background: #ffffff;
  color: #111111;
  padding: 56px 16px;
  font-family: 'Montserrat', sans-serif;
}

.site-footer__inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__logo {
  margin: 0 auto 18px;
  width: 88px;
  height: 88px;
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__brand {
  margin-bottom: 20px;
}

.site-footer__brand .brand-top {
  font-size: 2rem;
  letter-spacing: 0.35em;
  color: #111111;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer__brand .brand-sub {
  font-size: 1rem;
  color: #111111;
  letter-spacing: 0.35em;
  margin-top: 8px;
}

.site-footer__legal {
  max-width: 920px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #111111;
}

.site-footer__legal p {
  margin: 0;
}

@media (max-width: 720px) {
  .site-footer {
    padding: 40px 14px;
  }

  .site-footer__logo {
    width: 72px;
    height: 72px;
  }

  .site-footer__brand .brand-top {
    font-size: 1.65rem;
    letter-spacing: 0.3em;
  }

  .site-footer__brand .brand-sub {
    font-size: 0.95rem;
  }

  .site-footer__legal {
    font-size: 0.82rem;
    padding: 0 12px;
  }
}



.diferenciais {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  background-color: #8e594b;
  padding: 6rem 2rem 6rem; /* increased top padding to add separation from previous section */
  margin-top: 3.5rem; /* elegant separation from Plantas */
  overflow: hidden;
}


.diferenciais .tracos {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}

.diferenciais .tracos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.diferenciais::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 1;
}


.diferenciais__container {
  position: relative;
  z-index: 5; /* raised so title and content sit above transformed/stacked elements */
  max-width: 1200px;
  margin: 0 auto;
}

.diferenciais__intro {
  margin: 0 auto 2rem;
  text-align: center;
}

.diferenciais__titulo {
  position: relative; /* ensure z-index works */
  z-index: 10; /* keep the heading above overlays */
  font-size: 2.8rem;
  margin: 0;
  color: #ffffff !important;
  font-weight: 600;
}


.diferenciais-panel {
  position: relative;
  z-index: 3;

  width: min(860px, 100%);
  margin: 0 auto;
  padding: 2.8rem 2.6rem 2rem;

  border-radius: 32px;

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

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.18);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.diferenciais-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.8rem;
}

.diferenciais-panel__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 0.8rem 0;
}

.diferenciais-panel__icon {
  width: 72px;
  min-width: 72px;
  height: 72px;

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

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
}

.diferenciais-panel__icon img {
  width: 40px;
  height: auto;
  display: block;
}

.diferenciais-panel__item strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
  color: #ffffff;
}

.diferenciais-panel__item span {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}

.diferenciais-panel__footer {
  margin: 1.75rem 0 0;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {

  .diferenciais {
    padding: 3rem 1rem 4rem;
  }

  .diferenciais-panel {
    padding: 1.8rem 1.2rem;
    border-radius: 24px;
  }

  .diferenciais-panel__item {
    gap: 1rem;
    text-align: center;
  }

  .diferenciais__titulo {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .diferenciais-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .diferenciais-panel p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 280px;
    margin: 0 auto;
  }

}
.diferenciais-panel p {
   text-align: left;
}


@media (max-width: 768px) {

  .gallery-wrapper {
    width: 100%;
  }

  .gallery-item img {
    height: 420px;
    border-radius: 14px;
  }

  .gallery-arrow {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }
}

@media (max-width: 768px) {

  .nav__container {
    padding-inline: 1.5rem;
    padding-top: calc(1.5rem + env(safe-area-inset-top));
    padding-bottom: 1rem;
    justify-content: space-between;
    position: relative;
  }

  .nav__toggle {
    display: none;
  }

  .nav__toggle-line {
    display: none;
  }

  .nav__toggle-line + .nav__toggle-line {
    display: none;
  }

  .nav__menu {
    display: none;
  }

  .nav.open .nav__menu {
    display: none;
  }

  .nav.open .nav__toggle-line:first-child {
    display: none;
  }

  .nav.open .nav__toggle-line:last-child {
    display: none;
  }

  .nav__menu li {
    width: 100%;
  }

  .nav__menu a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    text-align: left;
  }

  .nav__link {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    padding: 0;
  }

  .nav__link--cta {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    text-align: center;
    margin-top: 0.75rem;
    box-sizing: border-box;
  }

  .nav.scrolled,
  .nav.open {
    background: rgba(13, 12, 10, 0.92);
  }

  .nav__menu a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    text-align: left;
  }

  .nav__link {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    padding: 0;
  }

  .nav__link--cta {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    text-align: center;
    margin-top: 0.75rem;
    box-sizing: border-box;
  }

  .nav.scrolled,
  .nav.open {
    background: rgba(13, 12, 10, 0.92);
  }
}
