
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: white;
  background-color: #fff;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 5px 0; /* REDUZI padding vertical */
  transition: all 0.3s ease;
  background-color: transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.scrolled {
  padding: 0.5rem 4rem;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header.scrolled .menu a {
  color: #07152A;
}

header.scrolled nav ul li a:hover {
  color: #093474;
}

header.scrolled .menu a.btn-contacto {
  color: white !important;
}


.logo img {
  max-width: 120px;
  width: auto;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu a {
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #07152A;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 400;
}

.menu a.btn-contacto {
  border: none;
  background-color: #07152A;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s ease; 
  text-decoration: none;
}

.menu a.btn-contacto:hover {
  background-color: #0c1f39; /* tom mais escuro */
  transform: scale(1.05);
}


.hero {
  height: 100vh;
  background-image: url('rivierariver.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.hero {
  position: relative;
  overflow: hidden; /* garante que o overlay não saia do container */
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* ESCURECE: aumenta ou diminui o 0.4 conforme desejado */
  z-index: 1;
}

.hero * {
  position: relative;
  z-index: 2;
}


.hero-content {
  max-width: 800px;
}

.hero-subtitle {

  font-size: 1.2rem;
  margin-top: 120px;
  margin-bottom: 10px;
}

.hero-subtitle1 {

  font-size: 1.2rem;
  margin-bottom: 10px;
}
.hero-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 5.5rem;
  margin: 10px 0;
  margin-top: 40px; /* dá um ENTER visual acima e abaixo */
}

.hero-location {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  background-color: #07152A;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;

}

.btn:hover {
  background-color: #0c1f39;
  animation: pulse 0.6s ease;
}

/* Ajustes de estilo para disp moveis*/
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  } 
  .hero-subtitle {
    font-size: 1rem;
  } 
  .hero-subtitle1 {
    font-size: 1rem;
  } 
  .hero-location {
  font-size: 2rem;
  }
}


.features {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.features h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #07152A;
}

.features .subtitulo {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.feature-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item img {
  width: 60px;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #07152A;
}

.feature-item p {
  font-size: 16px;
  color: #555;
}

.cta-features {
  margin-top: 60px;
}

.cta-features .btn {
  padding: 12px 30px;
  font-weight: bold;
  font-size: 16px;
  background-color: #07152A;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-features .btn:hover {
  background-color: #0c1f39;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  margin-left: auto;
  margin-right: 1rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #07152A;
  border-radius: 2px;
}

header:not(.scrolled) .hamburger span {
    background-color: white;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
  .menu ul {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .menu.active ul {
    display: flex;
  }


  .menu ul li {
    margin: 1rem 0;
  }
}


/* Efeito de fade-up com leve transição */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SLIDER CORRIGIDO */
.slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.caption {
  position: absolute;
  bottom: 50px;
  left: 50px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  border-radius: 8px;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .slide {
    background-size: cover; /* em mobile usa cover pra preencher */
  }
}


.btn-galeria {
  display: inline-block;
  background-color: #07152A;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s;
  animation: pulse 2s infinite;
}

.btn-galeria:hover {
  background-color: #0c1f39;
  transform: scale(1.05);
}

.gallery-button-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.section-plantas {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #07152A;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  justify-content: center;
  gap: 20px;
  transition: transform 0.3s ease-in-out;
  padding: 0 1rem;
}

.carousel-track img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  flex: 0 0 100%;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.carousel-track img:hover {
  transform: scale(1.03);
}

.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background-color: #07152A;
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: #424343;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

@media (max-width: 768px) {
  .carousel-track {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    justify-content: flex-start;
    gap: 0;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-track img {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .carousel-track {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    justify-content: flex-start;
    gap: 0;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-track img {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}


.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.lightbox img:hover {
  transform: scale(1.5);
  cursor: zoom-out;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25D366;
  padding: 0.8rem;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-btn img {
  width: 32px;
  height: 32px;
  display: block;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.gallery-lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-track img {
  max-width: 80vw;
  max-height: 80vh;
  display: none;
  object-fit: contain;
  transition: opacity 0.4s ease;
}

.gallery-track img.active {
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
}

.gallery-nav.prev {
  left: 30px;
}

.gallery-nav.next {
  right: 30px;
}

.close-gallery {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 900px;
  height: 90%;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close {
  color: #333;
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}


.pdf-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 90000;
  font-size: 30px;
  color: white;
  cursor: pointer;
  background-color: rgba(0,0,0,0.4);
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
}

.localizacao-section {
  padding: 6rem 2rem;
  background-color: #f8f8f8;
}

.localizacao-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.localizacao-img img {
  width: 500px;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.localizacao-texto {
  max-width: 550px;
}

.localizacao-texto h2 {
  font-size: 2.2rem;
  color: #07152A;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.localizacao-texto p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .localizacao-container {
    flex-direction: column;
    text-align: center;
  }

  .localizacao-img img {
    width: 100%;
    max-width: 90%;
  }
}

.consultores-section {
  background-color: #f8f8f8;
  padding: 6rem 2rem;
  text-align: center;
}

.consultores-container {
  max-width: 1200px;
  margin: 0 auto;
}

.consultores-texto h2 {
  font-size: 2.4rem;
  color: #07152A;
  margin-bottom: 1rem;
}

.consultores-texto p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 3rem;
}

.consultores-fotos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.consultor-card {
  text-align: center;
}

.consultor-card img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.consultor-card h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #07152A;
}

.consultores-texto h3 {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #07152A;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-whatsapp:hover {
  background-color: #0b1e3a;
}

.site-footer {
  background-color: #07152A;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 14px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 6px;
}
.footer-links ul li a {
  color: #46D6A8;
  text-decoration: none;
}
.footer-links ul li a:hover {
  text-decoration: underline;
}
.footer-contact a {
  color: #46D6A8;
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
  width: 100%;
}
.seo-text {
  margin-top: 5px;
  color: #ccc;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-social a {
  color: #ffffff;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #46D6A8; /* Verde tecnológico da BRANCT ou outra cor de destaque */
}


@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }}