* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column {
  flex-basis: 48%;
  margin-bottom: 20px;
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease-in;
}
.container-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.row-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column-gallery {
  flex-basis: 48%;
  margin-bottom: 20px;
}
header {
  position: fixed;
  width: 100%;
  background-color: #f4f4f4;
  color: #000;
  padding: 20px 0;
  z-index: 9999;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
nav ul li {
  margin-left: 25px;
}
nav ul li a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #7c9e52;
}
#home {
  background-color: #f4f4f4;
  padding: 150px 0 20px 0;
  text-align: center;
}
#home h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
#home .logoMarca {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 44px;
  color: #000;
  height: 25vh;
}
#home .logoMarca img {
  width: auto;
  height: 35%;
  margin: 0 0 16px 0;
}
#home .logoMarca h1 {
  font-size: 39px;
  font-weight: 300;
}
#home .logoMarca h3 {
  font-size: 20px;
  font-weight: 100;
  letter-spacing: 8px;
  margin-left: 7px;
}
#home img {
  height: auto;
  width: 90%;
  padding: 0 10px;
}
#home .capa img {
  border-radius: 5%;
}
#home .complemento {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .complemento p {
  color: #000;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75rem;
  width: 300px;
}
section {
  padding: 40px 0;
  text-align: justify;
}
section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
section p {
  font-size: 16px;
  margin-bottom: 20px;
}
#projects {
  background-color: #f5f5dc;
}
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Se adapta automaticamente ao tamanho da tela */
  gap: 10px; /* Espaçamento entre imagens */
  justify-content: center;
}
.image-gallery img {
  width: 100%;
  height: auto; /* Mantém a proporção original da imagem */
  object-fit: cover; /* Mantém a imagem centralizada e sem distorções */
  border-radius: 5px; /* Cantos arredondados opcionais */
  aspect-ratio: 4 / 3; /* Mantém a proporção das imagens */
  transition: transform 0.3s ease-in-out;
}

.image-gallery img:hover {
  cursor: pointer;
  transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}

.carousel {
  position: relative;
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
}

.carousel-slide {
  display: none;
}

.carousel-slide img {
  width: 100%;
}

.carousel-navigation {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 89.5%;
  display: flex;
  justify-content: space-between;
}

.carousel-prev,
.carousel-next {
  padding: 10px;
  color: #414e31;
  cursor: pointer;
  font-size: 30px;
}

.carousel-indicators {
  text-align: center;
  margin-top: 10px;
}

.carousel-indicator {
  display: inline-block;
  width: 25px;
  height: 5px;
  background-color: #ccc;

  margin: 0 5px;
  cursor: pointer;
}

.carousel-indicator.active {
  background-color: #566840;
}


#about {
  background-color: #566840;
  color: #fff;
}
#about img {
  width: 100%;
  border-radius: 2.5%;
}
#about .button-81 {
  width: 100%;
  margin-top: 20px;
  background-color: #566840;
  border: 1px solid #e2e8f0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(166, 175, 195, 0.25);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
#about .button-81:hover {
  background-color: #fff;
  color: #414e31;
  cursor: pointer;
}
#services {
  background-color: #414e31;
  color: #fff;
}
#services .row {
  display: flex;
  flex-wrap: wrap;
}
.accordion {
  margin: 0 auto;
}
.accordion-item {
  margin-bottom: 10px;
  width: 100%;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.accordion-header:hover{
  background-color: #566840;
  transition: 0.2s;
  border-radius: 5px;
}
.accordion-title {
  margin: 0;
}
.accordion-icon {
  width: 10px;
  height: 10px;
  border: solid #7c9e52;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content p {
  padding: 0 10px;
}
.active .accordion-icon {
  transform: rotate(-135deg);
}
.active .accordion-content {
  max-height: 500px;
}
#testimonial {
  background-color: #f4f4f4;
  padding: 40px 0;
  text-align: center;
}
.testimonial-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.testimonial {
  max-width: 300px;
  margin: 0 10px;
  text-align: center;
}
.testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.client-name {
  font-weight: bold;
  margin: 10px 0 0 0;
  font-size: 16px;
}
.client-local {
  font-weight: 200;
  margin: 0;
  font-size: 14px;
}
#contact h2,
h3 {
  text-align: center;
  margin: 0;
}
#contact h3 {
  font-weight: 300;
}

.contact-bar {
    padding: 10px;
    text-align: center;
  }
  
  .contact-bar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .contact-bar li {
    font-family: Arial;
    display: inline-block;
    margin-right: 5px;
    font-size: 15px;
  }
  
  .contact-bar i {
    margin-right: 5px;
    border: none;
  }
  .contact-bar a {
    color: #000;
  }
  


form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 20px auto;
}
input,
textarea {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #566840;
  border-radius: 5px;
}
button {
  padding: 10px 20px;
  background-color: #566840;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 18px;
}
button:hover {
  background-color: #7c9e52;
}
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
.footer-links {
  margin-top: 10px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}
.footer-links a:hover {
  color: #ccc;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.column {
  width: 100%;
  margin-bottom: 20px;
}
.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 120px;
  height: 40px;
  background-color: #008000;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.whatsapp-button:hover {
  animation: shake 0.5s infinite;
}

.user-insta{
  color: white;
  list-style: none;
  text-decoration: none;
  border: none;
}

.user-insta:hover{
  color: black;
  cursor: pointer;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.mobile-menu input[type="checkbox"] {
  display: none;
}

@media screen and (min-width: 1024px) {
  .carousel {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  body {
    width: 100%;
  }
  .mobile-menu input[type="checkbox"] {
    display: none;
  }
  
  #projects img {
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  body {
    width: 100%;
  }
  .row {
    flex-direction: column-reverse;
  }
  #home .capa {
    display: none;
  }
  .container-gallery{
    display: none;
  }
  #projects img {
    width: 100%;
    height: auto;
    background-size: cover;
  }
  #menu-toggle:checked ~ .menu {
    display: block;
  }
  .mobile-menu input[type="checkbox"] {
    display: none;
  }
}
@media screen and (max-width: 615px) {
  body {
    width: 100%;
  }
  .row {
    flex-direction: column-reverse;
  }
  #home .capa {
    display: none;
  }
  #projects img {
    width: 100%;
    height: auto;
    background-size: cover;
  }
  .mobile-menu {
    display: none;
  }
  .menu-btn {
    display: block;
    cursor: pointer;
    padding: 5px 25px;
  }
  .bar {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #000;
    margin-bottom: 8px;
  }
  .menu {
    display: none;
    list-style: none;
    padding: 0;
  }
  .menu li {
    margin-bottom: 10px;
  }
  .menu a {
    text-decoration: none;
    color: #000;
  }
  .mobile-menu {
    display: block;
  }
  .menu-btn {
    position: relative;
    z-index: 100;
  }
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  .menu li {
    margin-bottom: 0;
  }
  .menu a {
    display: block;
    padding: 5px 0;
  }
  #menu-toggle:checked ~ .menu {
    display: block;
  }
  .mobile-menu input[type="checkbox"] {
    display: none;
  }
}
.column img {
  max-width: 100%;
  height: auto;
}
.column h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.column p {
  font-size: 16px;
  line-height: 1.5;
}


/* modal cookies */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #566840;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.cookie-content {
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btns{
  width: 100%;
}

.cookie-btn {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btns{
  display: flex;
  justify-content: center;
}

.btns button{
  margin: 0 15px;
}

.btns span{
  font-size: 10px;
}

.accept {
  background-color: #4CAF50;
  color: white;
}

.reject {
  background-color: #888; /* Cinza para menos destaque */
  color: white;
}

.btnflex{
  display: flex;
  flex-direction: column;
}

.cookie-btn:hover {
  opacity: 0.8;
}
