@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;

}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 200vh;
}

.inicio {
  padding-top: 90px;
  min-height: 115vh;
  background-image: url(imgamb/fundocerto.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.barra-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 5rem;
  min-height: 90px;
  background-color: black;
  color: #fff;
}

.barra-nav h1 {
  position: relative;
  padding-left: 16px;
  font-size: 3.7rem;
  font-weight: 800;
}

.barra-nav h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 40px;
  background: #fff;
}

nav {
  margin-left: auto;
  padding-right: 2rem;
}

nav ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.botao-inicial {
  text-decoration: none;
  padding: 0.5rem 2.2rem;
  color: #fff;
  background-color: #25D366;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  font-weight: 600;
  white-space: nowrap;
}

.botao-inicial img {

  position: relative;
  top: 3px;
  left: 10px;


}

.botao-iniciall {
  display: none;
  padding: 0.5rem 2.2rem;
  color: #fff;
  background-color: #25D366;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  font-weight: 600;
  white-space: nowrap;
}

.botao-inicial:hover {
  transition: .3s ease-in-out;
  transform: translateY(-5px);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  width: 26px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

/* vira X */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.titulos-iniciais {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  min-height: 100vh;
  color: #fff;

}

.titulos-iniciais h1 {
  margin-top: 6rem;
  font-size: 6rem;
}

.titulos-iniciais p {
  color: #fff;
  letter-spacing: 2px;
  margin-top: -1rem;
}

.newsletter {
  width: 100%;
  margin-top: -18rem;

  display: flex;
  justify-content: center;
}

.newsletter .form-container {
  width: 100%;
  max-width: 620px;

  background: #ffffff;
  padding: 2rem;

  box-sizing: border-box;
  border-radius: 7px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.newsletter h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #000;
}

.newsletter form {
  width: 100%;
}

.newsletter .linha {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;

  margin-bottom: 1rem;
}

.newsletter input,
.newsletter select,
.newsletter textarea {
  width: 100%;
  padding: .7rem;

  border: 1px solid #ccc;
  font-size: .9rem;

  box-sizing: border-box;
}

.newsletter textarea {
  resize: none;
  height: 130px;
  margin-bottom: -1.2rem;
}

.newsletter button {
  width: 100%;
  padding: .8rem;
  margin-top: 30px;

  background: #000;
  color: #ffd600;
  border: 2px solid #ffd600;

  font-weight: 500;
  cursor: pointer;
}

.newsletter button:hover {
  background: #ffd600;
  color: #000000;
  transform: scale(1);
  transform: translateY(-5px);
}

.redes {
  position: relative;
  top: 100px;
  font-size: 1.9rem;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* ou center */
  gap: 1.5rem;
  margin-top: 12rem;
  padding-right: 2rem;
  font-weight: bold;



}

.redes span {
  font-weight: 200;
}

.redes-icons {
  position: relative;
  top: 100px;
  display: flex;
  justify-content: flex-end;
  padding: 0 10rem;
  gap: 1.5rem;
  cursor: pointer;

}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  transform: translateY(20px);
  z-index: 9999;
}

.whatsapp-float.show {
  opacity: 1;
  pointer-events: auto;
  animation: float 1s ease-in-out infinite;
}

/* animação suave */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

.ambiente {
  background: #000;
  color: #fff;
  padding: 5rem 3rem;
}

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

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ambiente-texto h2 {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  margin-left: -260px;
}


.ambiente-texto p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-left: -260px;
}

.ambiente-texto button {
  margin-top: 1.5rem;
  padding: 0.9rem 1.5rem;
  margin-left: -260px;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.ambiente-img img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.ambiente-img img {
  width: 140%;
  border-radius: 6px;
  display: block;
  margin-left: 50px;

}

.galeria {
  padding: 3rem 2rem;
}

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  height: 304px;
  overflow: hidden;
  border-radius: 10px;
}

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

.footer {
  background: #000;
  color: #fff;
  margin-top: 8rem;
  height: auto;
}

.footer-top {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  padding-right: 14px;
  border-right: 1px solid #fff;
}

.video-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.video-container iframe {
  width: 99%;
  max-width: 2300px;
  height: 600px;
  border-radius: 12px;
}

.footer-brand h1 {
  font-size: 5rem;
  font-weight: 800;
  margin: 0;
}

.footer-brand p {
  font-size: 1.6rem;
  font-weight: 200;
  margin: 0;
}

.social-icons {
  position: absolute;
  top: 100px;
  right: 20px;
  display: flex;
  gap: .7rem;
  z-index: 10;
}

.social-icons img {
  width: 28px;
  height: 28px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #fff;
  margin-top: 5rem;
}

.footer-col.contato {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col.sub-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col h3 {
  font-size: 32px;
  font-weight: 500;
  transform: translateY(-4.6rem);
}

.footer-col p {

  transform: translateY(-3.6rem);
}

.grupo-menu li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  font-size: 1.2rem;
  top: -3.5rem;
}

.grupo-menu ul {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-col {
  position: relative;
  padding: 30px;

}

.grupo-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.footer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -26%;
  right: 0;
  width: 1px;
  height: 126%;
  background: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6vh;
  font-size: 1rem;
}

.footer-col.destaquee button {
  margin-top: -.5rem;
  padding: .6rem 3rem;
  background: #fff;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(255, 246, 0, 0.3);
  /* sombra discreta embaixo */
  transition: transform .2s ease, box-shadow .2s ease;
}

.footer-col.destaquee button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 246, 0, 0.35);
  /* leve aumento no hover */
}

.footer-col.destaquee button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 246, 0, 0.25);
  /* ainda mais suave ao clicar */
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

.modal.ativo {
  opacity: 1;
  visibility: visible;
}

/* IMAGEM */
.modal-img {
  width: 70%;
  max-width: 900px;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: 0.3s ease;
}

.modal.ativo .modal-img {
  transform: scale(1);
}

/* BOTÃO FECHAR */
.fechar {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.fechar:hover {
  transform: rotate(90deg);
  opacity: 0.7;
}

/* SETAS */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: 0.3s ease;
  backdrop-filter: blur(4px);
}

.prev {
  left: 120px;
}

.next {
  right: 120px;
}

.prev:hover,
.next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

@media (min-width: 1367px) and (max-width: 1625px) {
  .barra-nav h1 {
    font-size: 2rem;
  }

  nav ul {
    display: flex;
    gap: 2.9rem;
    list-style: none;

    margin: 0;
    padding: 0;
  }


  nav a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    margin-left: -2rem;
  }

  .redes {
    position: relative;
    top: 60px;
    font-size: 1.5rem;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* ou center */
    gap: 1.5rem;
    margin-top: 12rem;
    padding-right: 2rem;
    font-weight: bold;



  }

  .redes-icons img {
    position: relative;
    left: 40px;
    top: -20px;
    height: 65px;
  }

  .ambiente-texto h2 {
    margin-left: -100px;
  }

  .ambiente-texto p {
    margin-left: -100px;
  }

  .ambiente-texto button {
    margin-left: -100px;
  }

  .ambiente {
    padding: 3rem 1.5rem;
  }

  .ambiente-img img {
    width: 100%;
    border-radius: 6px;
    display: block;
  }

  .ambiente-img img {
    width: 110%;
    border-radius: 6px;
    display: block;
    margin-left: 0px;

  }

  .footer-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: -25%;
    right: 0;
    width: 1px;
    height: 124%;
    background: #fff;
  }


}

@media (min-width: 1422px) {}

@media (max-width: 1421px) {
  .footer-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: -20%;
    right: 0;
    width: 1px;
    height: 120%;
    background: #fff;
  }


}


@media (max-width: 1366px) {
  .barra-nav h1 {
    font-size: 1.6rem;
  }

  nav ul {
    display: flex;
    gap: 2.9rem;
    list-style: none;

    margin: 0;
    padding: 0;
  }

  nav a {
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    margin-left: -2rem;
  }

  .ambiente-container {
    grid-template-columns: 1fr;
  }

  .ambiente {
    padding: 3rem 1.5rem;
  }

  .ambiente-img img {
    width: 100%;
    border-radius: 6px;
    display: block;
  }

  .ambiente-img img {
    width: 100%;
    border-radius: 6px;
    display: block;
    margin-left: 0px;

  }

  .ambiente-texto h2 {
    margin-left: 0px;
  }

  .ambiente-texto p {
    margin-left: 0px;
  }

  .ambiente-texto button {
    margin-left: 0px;
  }

  .grid-galeria {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1218px) {
  .menu-btn {
    display: flex;
    margin-left: auto;
    margin-right: -4rem;
  }

  nav {
    position: fixed;

    top: 0;
    left: 0;
    height: 100vh;
    width: 360px;
    background: #000000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding-top: 6rem;
  }

  .botao-iniciall {
    margin-top: 2rem;
    margin-left: 1.2rem;
    display: flex;
  }

  nav.active {
    transform: translateX(0);
  }

  nav ul {
    flex-direction: column;
    gap: 1.8rem;
    padding-left: 4rem;
  }


  .botao-inicial {
    display: none;
  }

  .newsletter {
    margin-top: 12rem;
  }

  .redes {
    color: #fff;
    align-items: center;
    text-align: center;
    margin-top: 1rem;
    padding-right: 0;
    font-size: 2rem;
  }

  .redes-icons {
    justify-content: center;
    padding: 0;
  }

  .grid-galeria {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1054px) {
  .ambiente-container {
    grid-template-columns: 1fr;
  }

  .ambiente {
    padding: 3rem 1.5rem;
  }

  .ambiente-img img {
    width: 100%;
    border-radius: 6px;
    display: block;
  }

  .ambiente-img img {
    width: 100%;
    border-radius: 6px;
    display: block;
    margin-left: 0px;

  }

  .ambiente-texto h2 {
    margin-left: 0px;
  }

  .ambiente-texto p {
    margin-left: 0px;
  }

  .ambiente-texto button {
    margin-left: 0px;
  }

  .grid-galeria {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {

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

  .footer-col {
    border-right: none;
    border-bottom: 1px solid #fff;
  }

  .footer-col.destaquee {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col.destaquee h3 {

    margin-top: 5.6rem;

  }

  .social-icons {
    position: absolute;
    top: 140px;
    right: 20px;
    display: flex;
    gap: .7rem;
    z-index: 10;
  }

  .footer-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: -22%;
    right: 0;
    width: 1px;
    height: 122%;
    background: #fff;
  }

}

@media (max-width: 884px) {

  .botao-iniciall {
    margin-top: 2rem;
    margin-left: 1.2rem;
    display: flex;
  }

  .titulos-iniciais {
    margin-top: 12rem;
  }

  .newsletter {
    margin-top: 15rem;
  }

  .redes {
    color: #fff;
    align-items: center;
    text-align: center;
    margin-top: 1rem;
    padding-right: 0;
    font-size: 2rem;
  }

  .redes-icons {
    justify-content: center;
    padding: 0;
  }

  .ambiente-container {
    grid-template-columns: 1fr;
  }

  .ambiente {
    padding: 3rem 1.5rem;
  }

  .ambiente-img img {
    width: 100%;
    border-radius: 6px;
    display: block;
  }

  .ambiente-img img {
    width: 100%;
    border-radius: 6px;
    display: block;
    margin-left: 0px;

  }

  .ambiente-texto h2 {
    margin-left: 0px;
  }

  .ambiente-texto p {
    margin-left: 0px;
  }

  .ambiente-texto button {
    margin-left: 0px;
  }

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

  .footer {
    height: auto;
    margin-top: 4rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;

    gap: 1.6rem;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
  }

  .footer-brand img {
    padding-right: 0;

  }

  .footer-brand h1 {
    font-size: 3.2rem;
  }

  .footer-col h3 {

    transform: translateY(-12.6rem);
  }

  .social-icons {
    position: static;
    margin-top: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .grupo-menu {
    text-align: center;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }

  .footer-col.contato {
    padding-top: 4rem;
    padding-bottom: 4rem;

  }

  .footer-col.destaquee {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col.destaquee button {
    margin-top: 1.6rem;
  }

  .footer-col {
    padding: 24px 16px;
  }

  .footer-col h3,
  .footer-col p {
    transform: none;
  }

  .grupo-menu li {
    top: 0;
    font-size: 1.3rem;
  }

  .footer-col::after {
    display: none;
  }

  .footer-bottom {
    font-size: .9rem;
    padding: 1.2rem;
    text-align: center;
  }

  .modal-img {
    width: 85%;
  }

  .prev,
  .next {
    width: 40px;
    height: 40px;
    font-size: 22px;

  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

}



@media (max-width: 700px) {

  .barra-nav h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-align: center;
  }

  .botao-iniciall {
    margin-top: 2rem;
    margin-left: 1.2rem;
    display: flex;
  }

  .titulos-iniciais h1 {
    font-size: 5rem;
  }

  .newsletter {
    padding: 0 1rem;
  }

  .newsletter .form-container {
    padding: 1.2rem;
  }




  .newsletter button {
    padding: 0.9rem;
  }

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

  .footer {
    height: auto;
    margin-top: 4rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
  }

  .footer-brand img {
    padding-right: 0;
    border-right: none;
  }

  .footer-brand h1 {
    font-size: 3.2rem;
  }

  .footer-col h3 {

    transform: translateY(-12.6rem);
  }

  .social-icons {
    position: static;
    margin-top: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .grupo-menu {
    text-align: center;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }

  .footer-col.contato {
    padding-top: 4rem;
    padding-bottom: 4rem;

  }

  .footer-col.destaquee {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col.destaquee button {
    margin-top: 1.6rem;
  }

  .footer-col {
    padding: 24px 16px;
  }

  .footer-col h3,
  .footer-col p {
    transform: none;
  }

  .grupo-menu li {
    top: 0;
    font-size: 1.3rem;
  }

  .footer-col::after {
    display: none;
  }

  .footer-bottom {
    font-size: .9rem;
    padding: 1.2rem;
    text-align: center;
  }

}


@media (max-width: 580px) {
  .titulos-iniciais {
    margin-top: 4rem;
  }

  .barra-nav img {
    height: 60px;

    margin-left: -4rem;
  }

  .titulo-amplo h2 {
    font-size: 2.2rem;
    text-align: center;

  }

  .titulo-amplo img {
    position: absolute;


  }

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

}


@media (max-width: 502px) {
  .barra-nav h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    text-align: center;
  }

  .titulos-iniciais h1 {
    font-size: 4rem;
  }
}

@media (max-width: 416px) {
  .ambiente-img img {
    width: 92%;
    border-radius: 6px;
    display: block;
    margin-left: 0px;

  }

  .barra-nav h1 {
    font-size: 1.9rem;
  }

  .titulo-central {
    font-size: 2.6rem;
  }

  nav {
    width: 80%;
  }
}