:root {
  --primary-color: #00a652;
  --secondary-color: #01adee;
  --dark-primary: #008a44;
  --dark-secondary: #0195cc;
  --light-bg: #f8f9fa;
  --dark-bg: #343a40;
  --text-color: #333;
  --light-text: #fff;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) white;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

section {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  border-radius: 6px;
}

::-webkit-scrollbar-track {
  background: white;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
  border: 3px solid white;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-primary);
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

.full-width {
  width: 100%;
}

.hidden {
  display: none;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

/* Botões */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--light-text);
  border: 2px solid var(--primary-color);
}

.primary-btn:hover {
  background-color: var(--dark-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 166, 82, 0.3);
}

.secondary-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

/* Cabeçalhos de seção */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.separator {
  width: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  margin: 0 auto;
  border-radius: 2px;
}

/* Header e Navegação */
header {
  background-color: white;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 80px;
  height: 80px;
}

.logo img {
  width: 80px;
  height: 80px;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
}

.desktop-nav ul li {
  margin-left: 30px;
}

.desktop-nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.desktop-nav ul li a:hover {
  color: var(--primary-color);
}

.desktop-nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.desktop-nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin: 15px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 18px;
  transition: var(--transition);
}

.mobile-menu ul li a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding-top: 150px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 60%;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-bg);
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #6c757d;
}

.hero-content a {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-image {
  width: 55%;
  position: relative;
}

.shape-bg,
.shape-bg-primary {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
}

.shape-bg-primary {
  background-color: var(--primary-color);
}

.hero-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.wave-separator {
  padding: 0;
}

/* Sobre Section */
.sobre {
  background-color: var(--light-bg);
  padding-bottom: 0;
}

.sobre-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sobre-image {
  width: 45%;
  position: relative;
}

.sobre-image img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sobre-text {
  width: 50%;
}

.sobre-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-bg);
}

.sobre-text p {
  margin-bottom: 20px;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  border-right: 1px solid #ddd;
  padding: 0 20px;
  flex: 1;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item h4 {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  margin-bottom: 0;
  color: #6c757d;
}

/* Serviços Section */
.servicos {
  background-color: white;
  padding-top: 0;
}

.servicos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.servico-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  width: calc(33.333% - 20px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon,
.icon-secondary {
  margin-bottom: 20px;
  font-size: 40px;
}

.icon {
  color: var(--primary-color);
}
.icon-secondary {
  color: var(--secondary-color);
}

.servico-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-bg);
}

.servico-card p {
  font-size: 15px;
  color: #6c757d;
}

/* Vantagens Section */
.vantagens {
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.vantagens::after {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: var(--secondary-color);
  opacity: 0.1;
  border-radius: 50%;
}

.vantagens-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vantagens-image {
  width: 45%;
  position: relative;
}

.vantagens-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vantagens-list {
  width: 50%;
}

.vantagem-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.vantagem-icon,
.vantagem-icon-primary {
  height: 50px;
  width: 60px;
  margin-right: 20px;
  background-color: rgba(1, 173, 238, 0.1);
  padding: 15px;
  border-radius: 50%;
  color: var(--secondary-color);
}

.vantagem-icon i,
.vantagem-icon-primary i {
  font-size: 20px;
}

.vantagem-icon-primary {
  background-color: rgba(0, 166, 82, 0.1);
  color: var(--primary-color);
}

.vantagem-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-bg);
}

.vantagem-text p {
  font-size: 15px;
  color: #6c757d;
}

/* Depoimentos Section */
.depoimentos {
  background-color: white;
}

.depoimentos-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 30px;
}

.depoimentos-slider::-webkit-scrollbar {
  display: none;
}

.depoimento-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.depoimento-text {
  margin-bottom: 20px;
}

.depoimento-text p {
  font-size: 16px;
  color: #6c757d;
  font-style: italic;
  position: relative;
}

.depoimento-text p::before {
  content: '"';
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -30px;
  left: -15px;
}

.depoimento-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--secondary-color);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-bg);
}

.author-info p {
  font-size: 14px;
  color: #6c757d;
}

.depoimento-indicators {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Contato Section */
.contato {
  background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
  position: relative;
}

.contato::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
}

.contato-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.contato-info {
  width: 45%;
}

.contato-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contato-info p {
  margin-bottom: 30px;
}

.contato-form {
  width: 50%;
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  transition: var(--transition);
}

.form-group-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 166, 82, 0.2);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  transition: var(--transition);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contato-icon {
  margin-right: 15px;
  background-color: rgba(0, 166, 82, 0.1);
  color: var(--primary-color);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contato-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-bg);
}

.contato-text p {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 0;
}

.social-links {
  display: flex;
  margin-top: 30px;
}

.social-link {
  margin-right: 15px;
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  color: var(--primary-color);
  font-size: 24px;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.footer {
  background-color: var(--dark-bg);
  color: var(--light-text);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}

.footer-top {
  padding: 60px 0 40px;
  position: relative;
}

/* Elementos decorativos para tema ambiental */
.footer-top::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  background-image: url("leaf-pattern.png");
  background-size: contain;
  opacity: 0.03;
  pointer-events: none;
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* Seção da marca */
.footer-brand {
  width: 100%;
  max-width: 280px;
}

.footer-logo img {
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.tagline {
  font-size: 15px;
  color: var(--medium-text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  color: var(--light-text);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Navegação do footer */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  min-width: 160px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  color: var(--light-text);
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 1.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--medium-text);
  transition: var(--transition);
  display: inline-block;
  position: relative;
}

.footer-col ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--light-text);
  transform: translateX(5px);
}

.footer-col ul li a:hover::before {
  width: 100%;
}

/* Contato com ícones */
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px !important;
}

.contact-info li i {
  color: var(--primary-color);
  margin-top: 4px;
}

.contact-info li a,
.contact-info li address {
  font-style: normal;
  color: var(--medium-text);
  transition: var(--transition);
  line-height: 1.5;
}

.contact-info li a:hover {
  color: var(--light-text);
  transform: none;
}

/* Rodapé inferior */
.footer-bottom {
  background-color: var(--darker-bg);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright p {
  font-size: 14px;
  color: var(--medium-text);
}

.footer-links-bottom {
  display: flex;
  gap: 20px;
}

.footer-links-bottom a {
  color: var(--medium-text);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links-bottom a:hover {
  color: var(--light-text);
}

/* Responsivo */
@media (max-width: 991px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-nav {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 0;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }

  .footer-col ul li a:hover {
    transform: none;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links-bottom {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-col {
    width: 100%;
    padding: 15px 10px;
  }
}

/* Responsividade */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .servico-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 0;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu.active {
    display: block;
  }

  .hero .container,
  .sobre-content,
  .vantagens-content,
  .contato-content,
  .footer-content {
    flex-direction: column;
  }

  .hero-content,
  .hero-image,
  .sobre-image,
  .sobre-text,
  .vantagens-image,
  .vantagens-list,
  .contato-info,
  .contato-form,
  .footer-logo,
  .footer-links,
  .footer-contact {
    width: 100%;
    margin-bottom: 60px;
  }

  .hero {
    padding-top: 130px;
  }

  .stats {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 50%;
    margin-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }

  .section-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .servico-card {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .sobre-text h3,
  .contato-info h3 {
    font-size: 24px;
  }

  .stat-item {
    flex: 0 0 100%;
  }
}

/* Lazy loading para imagens */
img.lazy-load {
  opacity: 0;
  transition: opacity 1s ease;
}

img.lazy-load.loaded {
  opacity: 1;
}

/* Efeito de hover personalizado para cartões */
.hover-effect {
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hover-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.hover-effect:hover::before {
  opacity: 0.05;
}

/* Seção de Clientes */
.clientes {
  padding: 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.carousel-mask-left,
.carousel-mask-right {
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-mask-left {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 249, 250, 1) 0%,
    rgba(248, 249, 250, 0) 100%
  );
}

.carousel-mask-right {
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 249, 250, 0) 0%,
    rgba(248, 249, 250, 1) 100%
  );
}

.clientes-carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.clientes-slider {
  display: flex;
  align-items: center;
  position: absolute;
  width: max-content;
  animation: carousel 30s linear infinite;
  padding: 0 20px;
}

.cliente-logo {
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 25px;
  padding: 15px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cliente-logo img {
  max-width: 90%;
  max-height: 70px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.cliente-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.cliente-logo:hover {
  transform: translateY(-5px);
}
