body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #797979;
  color: #ffffff;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.main-header {
  background-color: #81B673;
  padding: 15px 0;
  color: #ffffff;
}
.main-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .main-header .container {
    flex-direction: column;
    gap: 15px;
  }
}
.main-header .logo img {
  height: 50px;
}
.main-header .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
@media (max-width: 768px) {
  .main-header .main-nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.main-header .main-nav ul li {
  margin-left: 25px;
}
@media (max-width: 768px) {
  .main-header .main-nav ul li {
    margin: 5px 10px;
  }
}
.main-header .main-nav ul li a {
  font-weight: 700;
}
.main-header .main-nav ul li a:hover {
  text-decoration: underline;
}
.main-header .btn-contato {
  background-color: #2D4F41;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  display: inline-block;
}
@media (max-width: 768px) {
  .main-header .btn-contato {
    width: 100%;
    max-width: 200px;
  }
}
.main-header .btn-contato:hover {
  background-color: #2E7D32;
}

.hero-section {
  background: linear-gradient(#81B673, #2D4F41);
  min-height: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #ffffff;
  text-align: center;
  padding: 30px 0 10px 0;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 20px 15px 5px 15px;
  }
}
.hero-section .hero-content {
  margin-bottom: 10px;
}
.hero-section .hero-content .hero-logo {
  max-width: 300px;
  margin-bottom: 5px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .hero-section .hero-content .hero-logo {
    max-width: 180px;
  }
}
.hero-section .hero-content h1 {
  font-size: 2.5em;
  margin: 0;
  max-width: 800px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 1.5em;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-content h1 {
    font-size: 1.2em;
  }
}
.hero-section .product-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .hero-section .product-showcase {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .hero-section .product-showcase {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-section .product-showcase .product-item {
  background-color: #FFF;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.hero-section .product-showcase .product-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1px;
}
.hero-section .product-showcase .product-item .product-name {
  color: #333;
  font-weight: 600;
  font-size: 0.9em;
  margin: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modal-content {
  background-color: #ffffff;
  margin: auto;
  padding: 0px;
  border: 2px solid #DDD;
  width: 80%;
  max-width: 500px;
  border-radius: 150px 30px 30px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid #FFD44D;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .modal .modal-content {
    width: 95%;
    border-radius: 50px 20px 20px 20px;
  }
}
.modal .modal-content .close-button {
  color: #000000;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}
.modal .modal-content .close-button:hover, .modal .modal-content .close-button:focus {
  color: #000;
  text-decoration: none;
}
.modal .modal-content .modal-header {
  background-color: #ffffff;
  padding: 0px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.modal .modal-content .modal-header .modal-logo {
  position: relative;
  height: 100px;
  padding: 15px;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-header .modal-logo {
    height: 70px;
  }
}
.modal .modal-content .form-container {
  background-color: #7CB070;
  border: 1px solid #FFD44D;
  padding: 40px;
  border-radius: 150px 30px 30px 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .modal .modal-content .form-container {
    padding: 25px 15px;
    border-radius: 50px 20px 20px 20px;
  }
}
.modal .modal-content .form-container h2 {
  color: rgb(255, 255, 255);
  margin-top: 0;
  font-size: 1.8em;
}
@media (max-width: 768px) {
  .modal .modal-content .form-container h2 {
    font-size: 1.4em;
  }
}
.modal .modal-content .form-container p {
  color: #ffffff;
  font-size: 0.9em;
  margin-bottom: 25px;
}
.modal .modal-content .form-container .input-group {
  text-align: left;
  margin-bottom: 15px;
}
.modal .modal-content .form-container .input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
  color: #ffffff;
}
.modal .modal-content .form-container .input-group input[type=text],
.modal .modal-content .form-container .input-group input[type=email],
.modal .modal-content .form-container .input-group input[type=tel] {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid #DDD;
  border-radius: 5px;
  background-color: #E3E2E2;
  font-size: 1em;
}
.modal .modal-content .form-container .btn-submit {
  background-color: #2D4F41;
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1em;
  margin-top: 20px;
}
.modal .modal-content .form-container .btn-submit:hover {
  background-color: #2E7D32;
}
.modal .modal-content .form-container .form-message {
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  font-weight: 700;
}
.modal .modal-content .form-container .form-message.success {
  background-color: #D4EDDA;
  color: #155724;
  border: 1px solid #C3E6CB;
}
.modal .modal-content .form-container .form-message.error {
  background-color: #F8D7DA;
  color: #721C24;
  border: 1px solid #F5C6CB;
}

.carousel-container {
  position: relative;
  width: 100%;
  margin: 30px 0;
  background-color: #FFF;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: #F5F5F5;
}
@media (max-width: 1024px) {
  .carousel-wrapper {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .carousel-wrapper {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .carousel-wrapper {
    height: 250px;
  }
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px;
}
.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  z-index: 10;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 768px) {
  .carousel-btn {
    padding: 8px 12px;
    font-size: 16px;
  }
}
.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.carousel-btn-prev {
  left: 8px;
}
.carousel-btn-next {
  right: 8px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  background-color: #FFF;
  flex-wrap: wrap;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #DDD;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.carousel-indicator.active {
  background-color: #2D4F41;
  width: 24px;
  border-radius: 5px;
}
.carousel-indicator:hover {
  background-color: #AAA;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 480px) {
  .whatsapp-btn {
    width: 48px;
    height: 48px;
    bottom: 15px;
    right: 15px;
  }
}
.whatsapp-btn:hover {
  background-color: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.whatsapp-btn:active {
  transform: scale(0.95);
}
.whatsapp-btn svg {
  width: 24px;
  height: 24px;
}

.main-footer {
  background-color: #ffffff;
  color: #333;
  padding: 40px 0;
  border-top: 1px solid #eee;
  font-size: 0.9em;
}
.main-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .main-footer .footer-grid {
    text-align: center;
  }
}
.main-footer .footer-section h3 {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
}
.main-footer .footer-section .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-footer .footer-section .contact-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .main-footer .footer-section .contact-list li {
    justify-content: center;
  }
}
.main-footer .footer-section .contact-list li i {
  color: #7CB070;
  width: 20px;
  text-align: center;
  font-size: 1.2em;
}
.main-footer .footer-section .payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  font-size: 2em;
  color: #555;
}
@media (max-width: 768px) {
  .main-footer .footer-section .payment-icons {
    justify-content: center;
  }
}
.main-footer .footer-section .payment-icons i:hover {
  color: #000;
}
.main-footer .footer-section .security-title {
  margin-top: 20px;
}
.main-footer .footer-section .security-icons {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .main-footer .footer-section .security-icons {
    justify-content: center;
  }
}
.main-footer .footer-section .security-icons .security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 5px;
}
.main-footer .footer-section .security-icons .security-item i {
  font-size: 1.5em;
  color: #7CB070;
}
.main-footer .footer-section .security-icons .security-item span {
  font-size: 0.75em;
  line-height: 1.2;
  font-weight: 700;
}
.main-footer .footer-section .security-icons .security-item span small {
  font-weight: 400;
  color: #777;
}/*# sourceMappingURL=style.css.map */