@charset "UTF-8";
/* Content Text Styles */
.text-content {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

/* Image Card Styles */
.image-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  text-align: center;
  margin-bottom: 20px;
}

.image-card img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.text-content .desc {
  margin-bottom: 30px;
}

.text-content h2 {
  color: #83ee61;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  border-left: 4px solid #83ee61;
  padding-left: 20px;
}

.text-content h3 {
  color: #83ee61;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  border-left: 4px solid #83ee61;
  padding-left: 20px;
}

.text-content h4 {
  color: #333;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.text-content p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 15px;
}

.text-content ul {
  margin-top: 20px;
}

.text-content li {
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 16px;
}

.text-content .fa-check {
  color: #28a745;
  margin-right: 10px;
}

/* Botão Ver Mais */
.btn-ver-mais {
  background: #b10000;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-ver-mais:hover {
  background: #9a0000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(177, 0, 0, 0.3);
}

/* Conteúdo oculto */
#hidden-content {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

/* Product Cards Styles */
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(131, 238, 97, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.btn-product {
  background: #fff;
  color: #83ee61;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.btn-product:hover {
  background: #f8f9fa;
  transform: scale(1.05);
}

.product-content {
  padding: 30px;
}

.product-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #83ee61, #6dd444);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-icon i {
  font-size: 20px;
  color: #fff;
}

.product-content h3 {
  color: #333;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-content p {
  color: #666;
  line-height: 1.6;
}

/* FAQ Styles */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  background: #fff;
  border: none;
  padding: 20px 25px 20px 20px !important;
  font-weight: 600;
  color: #333;
}
.accordion-button:not(.collapsed) {
  background: #83ee61;
  color: #fff !important;
}
.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background: #f8f9fa;
  padding: 25px;
  color: #666;
  line-height: 1.6;
}

/* Section Backgrounds */
.bg-light {
  background: #f8f9fa !important;
}

/* Title Styles */
.title-area2 .subtitle {
  color: #83ee61;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.title-area2 .title {
  color: #333;
  font-weight: 700;
  margin: 15px 0;
}

/* Cards Especiais - Missão, Visão, Valores */
.espec-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 30px 20px;
  width: 100%;
  height: 380px;
  margin: 10px 0;
  text-align: center;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.espec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.espec-card .icon {
  position: relative;
  background: rgba(131, 238, 97, 0.9);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  flex-shrink: 0;
}
.espec-card .icon i {
  font-size: 40px;
  color: #fff;
}
.espec-card .icon::after {
  position: absolute;
  content: "";
  background: #83ee61;
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 25px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}
.espec-card .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
}
.espec-card .text h2,
.espec-card .text h3 {
  font-size: 24px;
  font-weight: 600;
  color: #83ee61;
  margin-bottom: 15px;
  flex-shrink: 0;
}
.espec-card .text p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
  color: #666;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.espec-card:hover .icon {
  background: #83ee61;
}
.espec-card:hover .icon::after {
  height: 100%;
}

/* CTA Section Styles */
.section-cta {
  background: linear-gradient(135deg, #83ee61, #6dd444);
  padding: 80px 0;
}
.section-cta .cta-content {
  text-align: center;
}
.section-cta .cta-content h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .section-cta .cta-content h2 {
    font-size: 28px;
  }
}
.section-cta .cta-content p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}
@media (max-width: 768px) {
  .section-cta .cta-content p {
    font-size: 16px;
  }
}
.section-cta .cta-content .btn-one {
  background: #fff;
  color: #83ee61;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.section-cta .cta-content .btn-one:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .text-content {
    padding: 20px;
  }
  .product-content {
    padding: 20px;
  }
  .product-image {
    height: 200px;
  }
  .espec-card {
    padding: 20px 15px;
    height: 320px;
  }
  .espec-card .icon {
    width: 70px;
    height: 70px;
  }
  .espec-card .icon i {
    font-size: 35px;
  }
  .espec-card .text h2,
  .espec-card .text h3 {
    font-size: 20px;
  }
  .espec-card .text p {
    font-size: 13px;
  }
}

/* CTA Section Styles - Apenas Espaçamento */
.section-cta .cta-content h2 {
  margin-bottom: 20px;
}

.section-cta .cta-content p {
  margin-bottom: 30px;
}

/*# sourceMappingURL=internal-pages.css.map */
