/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Container padrão */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 2rem 0;
}

/* Header */
.main-header {
  background-color: #61725d;
  color: white;
  padding: 1rem 0;
  position: relative;
}

.main-header h1 {
  text-align: center;
  font-size: 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 150px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: text-decoration 0.3s ease;
}

nav a:hover,
nav a:focus {
  text-decoration: underline;
  outline: none;
}

/* Botão menu hambúrguer */
.menu-trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 24px;
  z-index: 10;
}

/* Linhas do hambúrguer */
.menu-trigger .hamburger,
.menu-trigger .hamburger::before,
.menu-trigger .hamburger::after {
  content: "";
  display: block;
  background-color: white;
  height: 3px;
  border-radius: 2px;
  position: absolute;
  width: 100%;
  transition: 0.3s ease;
}

.menu-trigger .hamburger {
  top: 50%;
  transform: translateY(-50%);
}

.menu-trigger .hamburger::before {
  top: 0;
}

.menu-trigger .hamburger::after {
  bottom: 0;
}

/* Menu responsivo: mobile */
@media (max-width: 768px) {
  /* Mostrar botão hambúrguer */
  .menu-trigger {
    display: block;
  }

  /* Esconder menu por padrão */
  nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    background-color: #61725d;
    border-radius: 8px;
    width: 200px;
    display: none;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9;
  }

  /* Mostrar menu ativo */
  nav.active {
    display: block;
  }

  /* Menu vertical */
  nav ul {
    flex-direction: column;
    gap: 1rem;
    margin: 0;
  }
}

/* Hero Carousel Container */
.hero-carousel {
  position: relative;
  height: 70vh;
  overflow: hidden;
  font-family: Arial, sans-serif;
  color: white;
}

/* Container das slides */
.carousel-container {
  height: 100%;
  position: relative;
}

/* Cada slide */
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  overflow: hidden;
}

/* Slide ativo fica visível */
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Imagem de fundo do slide */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay para escurecer e dar tom verde escuro translúcido */
.slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(97, 114, 93, 0.6); /* verde escuro translúcido */
  z-index: 0;
}

/* Conteúdo do texto no slide */
.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5); /* fundo semitransparente para o texto */
  padding: 2rem;
  border-radius: 10px;
  max-width: 90%;
  box-sizing: border-box;
  text-align: center;
}

/* Títulos dentro do slide */
.slide-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Parágrafos dentro do slide */
.slide-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Botões dentro do slide */
.slide-text .btn {
  background-color: #61725d;
  color: white;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.slide-text .btn:hover {
  background-color: #4b5a47;
}

/* Estilos gerais do botão que podem ser usados fora do slide-text */
.btn {
  background-color: #ffffff;
  color: #61725d;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e0e0e0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(97, 114, 93, 0.7); /* verde escuro translúcido */
  border: none;
  color: white;
  font-size: 2.5rem;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: rgba(97, 114, 93, 1);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}
@media (max-width: 768px) {
  .slide-text {
    padding: 1.5rem;
    font-size: 0.95rem;
  }

  .slide-text h2 {
    font-size: 1.5rem;
  }

  .slide-text p {
    font-size: 1rem;
  }

  .carousel-btn {
    font-size: 1.5rem;
    padding: 0.4rem 0.8rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }

  .hero-carousel {
    height: 60vh;
  }

  .slide img {
    object-position: center;
  }
}

.why-choose-us {
  background-color: #f9f9f9;
  padding: 5rem 2rem;
  text-align: center;
  color: #333;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2f3e2f;
}

.why-choose-us .intro,
.why-choose-us .closing {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  background-color: white;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 2.5rem;
  color: #61725d;
  margin-bottom: 1rem;
  display: inline-block;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #2f3e2f;
}

.feature p {
  font-size: 1rem;
  color: #555;
}


/* About */
.about {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
  color: #333;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #61725d;
}

.about-intro,
.about-closing {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  background-color: white;
  border: 2px solid #39ff14;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  position: relative;
}

.feature:hover {
  transform: translateY(-5px);
  border: 2px solid #00ffff;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.4);
}

.feature .icon {
  font-size: 2.5rem;
  color: #61725d;
  display: block;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #2f3e2f;
}

.feature p {
  font-size: 1rem;
  color: #555;
}


/* Services */
.services {
  padding: 4rem 1.5rem;
  background-color: #0a0a0a; /* fundo escuro para destacar o neon */
  color: #e0e0e0;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #00ffff; /* neon suave */
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px #00ffff;
}

.section-description {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-list.centered-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 3rem;
  max-width: 480px;
}

.service-list.centered-list li {
  font-size: 1.3rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 2px solid #00ffff;
  border-radius: 12px;
  box-shadow: 0 0 10px #00ffff;
  background: rgba(0, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.service-list.centered-list li:hover {
  background: #00ffff;
  color: #0a0a0a;
  box-shadow: 0 0 20px #00ffff;
  cursor: default;
}

/* Responsivo */
@media (max-width: 600px) {
  .section-title {
    font-size: 2.2rem;
  }
  .section-description {
    font-size: 1rem;
  }
  .service-list.centered-list li {
    font-size: 1.1rem;
  }
}


.gallery-carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gallery-slide.active {
  display: flex;
}

.before-after {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.before-after img {
  width: 100%;
  max-width: 400px;
  border: 3px solid #00ffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.caption {
  margin-top: 1rem;
  font-style: italic;
  color: #555;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: none;
  border: none;
  color: #00ffff;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.carousel-btn:hover {
  color: #007bff;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .before-after {
    flex-direction: column;
  }
}

.carousel-btn,
.gallery-prev,
.gallery-next {
  z-index: 10;
  background: none;
  border: none;
  font-size: 2rem;
  color: #00ffcc; /* ou qualquer neon usado */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-btn.prev,
.gallery-prev {
  left: 10px;
}

.carousel-btn.next,
.gallery-next {
  right: 10px;
}
.shop-section {
  background:rgba(60, 179, 113, 0.9);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.shop-section h3 {
  font-size: 2rem;
  color: #00f5ff;
  margin-bottom: 1rem;
}

.shop-section p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #ccc;
}

.product-carousel {
  display: flex;
  overflow: hidden;
   position: relative;
  flex-wrap: nowrap;
}

.product-slide {
  flex: 0 0 100%;
  text-align: center;
  display: none;
  flex-shrink: 0;
  display: none;
  background: #111;
  border: 2px solid #00f5ff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 10px #00f5ff;
  transition: transform 0.5s ease;
}

.product-slide.active {
  display: block;
}

.product-slide img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  max-width: 350px; /* ajustável conforme sua necessidade */
}

.product-slide h4 {
  color: #00f5ff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.carousel-controls {
  margin-top: 2rem;
}

.carousel-btn {
  background: transparent;
  border: none;
  color: #00f5ff;
  font-size: 2rem;
  cursor: pointer;
  margin: 0 1rem;
  transition: transform 0.2s ease;
}

.carousel-btn:hover {
  transform: scale(1.2);
}

.btn.neon {
  background: #00f5ff;
  color: #000;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  display: inline-block;
  box-shadow: 0 0 8px #00f5ff;
}

/* Estilização geral para as setas do carrossel da seção Shop */
.product-prev,
.product-next {
  background-color: transparent; /* ou cor de fundo que quiser */
  border: none;
  font-size: 2rem; /* aumenta o tamanho da seta */
  color: #00ffcc; /* cor amarela neon, por exemplo */
  cursor: pointer;
  padding: 0 1rem;
  transition: color 0.3s ease;
}

/* Efeito hover para as setas */
.product-prev:hover,
.product-next:hover {
  color: #fff;
  text-shadow: 0 0 10px #ffcc00;
}

/* Se quiser posicionar as setas */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem; /* espaço entre as setas */
  margin-top: 1rem;
}

/* Responsividade extra */
@media (max-width: 768px) {
  .product-slide img {
    max-width: 100%;
    height: auto;
  }

  .carousel-controls {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .product-slide h4,
  .product-slide p {
    font-size: 1rem;
  }

  .btn.neon {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}
/* Contact */
.contact {
  background: rgba(19, 78, 74, 0.9); /* azul petróleo escuro */
  color: #e0f2f1; /* verde clarinho para contraste suave */
  padding: 5rem 2rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin: 3rem auto;
}

.contact h3 {
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #b2dfdb;
}

.contact h3 span {
  color: #80cbc4;
}

.contact-info {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-info p {
  margin: 0.6rem 0;
}

.contact-info a {
  color: #80cbc4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #4db6ac;
  text-decoration: underline;
}

.btn {
  display: inline-block;
  background-color: #26a69a;
  color: #fff;
  padding: 0.75rem 2.5rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  box-shadow: 0 6px 16px rgba(38, 166, 154, 0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: #00796b;
  box-shadow: 0 10px 26px rgba(0, 121, 107, 0.7);
}

h4 {
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 1.8rem;
  color: #b2dfdb;
}



.contact-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 0.8rem;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.3);
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  pointer-events: none;
  transition: 0.3s ease all;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.8rem;
  color: #8ff7e6;
  background-color: rgba(60, 179, 113, 0.85);
  padding: 0 0.3rem;
  border-radius: 4px;
}

.submit-btn {
  width: 100%;
  background-color: #1abc9c;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #fff;
}

.submit-btn:hover {
  background-color: #16a085;
}

/* Footer */
/* Footer geral */
.site-footer {
  background-color: #61725d; /* verde oliva */
  color: white;
  padding: 2rem 1rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
  width: 100%;
}

/* Container do footer */
.site-footer .container.footer-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Seções do footer */
.footer-logo,
.footer-links,
.footer-contact {
  flex: 1 1 250px; /* ocupa espaço mínimo de 250px e cresce */
  min-width: 250px;
}

/* Logo */
.footer-logo h3 {
  margin-bottom: 0.3rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo p {
  font-size: 1rem;
  color: #d0d7cd;
}

/* Links rápidos */
.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #c4d3bf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #e0f2f1;
  text-decoration: underline;
}

/* Contato */
.footer-contact p {
  margin: 0.4rem 0;
  font-size: 1rem;
  color: #c4d3bf;
}

.footer-contact a {
  color: #b7ccb0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #e0f2f1;
  text-decoration: underline;
}

/* Footer inferior */
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 1rem;
  border-top: 1px solid #4c5b43;
  color: #b7ccb0;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 1rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .crafted-by a {
  color: #c4d3bf;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom .crafted-by a:hover {
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
  .site-footer .container.footer-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
