/* ======= Variáveis Globais ======= */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

:root {
  --primary: #24803d;
  --secondary: #92ac6d;
  --accent: #fbbf24;
  --light-bg: #cbd7b5;
  --dark-bg: #141615;
  --text-light: #ffffff;
}

/* ======= Estilos Base ======= */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-bg);
  color: #333;
}

/* Correção para rolagem lateral */
html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Ajuste para header fixo */
.fixed-top {
  position: fixed;
  width: 100%;
  z-index: 1030;
}

/* Tipografia */
.hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

h2 {
  color: var(--dark-bg);
}

/* ======= Header e Navegação ======= */
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

/* Menu Off-canvas */
.offcanvas {
  transition: transform 0.3s ease-in-out;
}

.offcanvas.offcanvas-end {
  border-left: 3px solid var(--primary);
}

.btn-close:focus {
  box-shadow: none;
}

/* ======= Seção Hero ======= */
.hero {
  background: linear-gradient(to right, var(--light-bg), var(--secondary));
  min-height: 85vh;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
}

/* Imagem Principal */
.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

/* Contato Flutuante */
.floating-contact {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Botão de Telefone */
.phone-btn {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.phone-btn:hover {
  transform: translateY(-2px);
  color: var(--primary);
}

/* Botão WhatsApp */
.whatsapp-btn {
  background: #25d366;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  background: #20bd5a;
  color: white;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ======= Botão Saiba Mais ======= */
.btn-saiba-mais {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: var(--primary);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: 0 4px 15px rgba(206, 206, 205, 0.3);
}

.btn-text {
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0;
}

.arrows i {
  font-size: 0.8rem;
  opacity: 0.8;
}

.arrow-1 {
  animation: bounceArrow 2s infinite;
}

.arrow-2 {
  animation: bounceArrow 2s infinite 0.2s;
  margin-top: -2px;
}

@keyframes bounceArrow {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

.btn-saiba-mais:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 20px rgba(36, 128, 61, 0.4);
}

.btn-saiba-mais:hover .btn-text {
  transform: translateY(-2px);
}

/* ======= Divisor Curvo ======= */
.curved-div {
  position: relative;
  background: transparent;
  margin-top: -150px;
  width: 100%;
  overflow: hidden;
  z-index: 10;
}

.curved-div svg {
  display: block;
  width: 100%;
  filter: drop-shadow(0 -5px 5px rgba(0, 0, 0, 0.1));
}

.curved-div path {
  fill: #f6f8f4; /* Fundo branco para o divisor */
}

/* ======= Animações ======= */
.animacao-container {
  position: relative;
  height: auto;
  min-height: 150px; /* Aumentado para melhor responsividade */
  overflow: visible;
  margin-bottom: 2rem; /* Espaço extra para textos longos */
}

.frase {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: slide 12s infinite;
  line-height: 1.4;
  font-size: clamp(1.5rem, 4vw, 2.5rem); /* Fonte responsiva */
}

.frase:nth-child(2) {
  animation-delay: 4s;
}

.frase:nth-child(3) {
  animation-delay: 8s;
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  35% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* ======= Media Queries ======= */
@media (max-width: 991px) {
  .hero {
    min-height: 75vh;
    padding-top: 30px;
    position: relative;
    overflow: hidden;
  }

  .hero-title {
    font-size: 2rem;
  }

  .col-lg-6.text-white {
    text-align: center;
    margin-top: 2rem !important;
  }

  .animacao-container {
    min-height: 100px;
  }

  .frase {
    width: 90%; /* Evita quebra de texto nas bordas */
    left: 5%;
  }

  .floating-contact {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    margin: 2rem 0;
  }

  .curved-div {
    margin-top: -50px;
  }

  .btn-saiba-mais {
    margin: 3rem auto;
    padding: 12px 35px;
    font-size: 1rem;
  }

  .hero-image {
    display: none;
  }
}

/* Ajustes responsivos para seção Hero */
@media (max-width: 991px) {
  /* Container principal do hero */
  .hero {
    position: relative;
    overflow: hidden;
  }

  /* Adiciona imagem de fundo quando em telas menores */
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/img/teleprag01.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* Controla transparência da imagem */
    z-index: 1;
  }

  /* Mantém o gradiente por cima da imagem */
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%
    );
    opacity: 0.85; /* Controla intensidade do gradiente */
    z-index: 2;
  }

  /* Ajusta posicionamento do conteúdo */
  .hero .container {
    position: relative;
    z-index: 3; /* Mantém conteúdo acima do fundo */
  }

  /* Esconde a imagem original em telas menores */
  .hero-image-container {
    display: none;
  }

  /* Centraliza o conteúdo */
  .hero .col-lg-6 {
    text-align: center;
    width: 100%;
  }

  /* Ajusta o floating contact para telas menores */
  .floating-contact {
    position: relative;
    text-align: center;
    margin-top: 2rem;
  }

  .floating-contact a {
    margin: 0.5rem;
    display: inline-block;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 20px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .phone-btn,
  .whatsapp-btn {
    width: 100%;
    text-align: center;
  }

  .btn-saiba-mais {
    width: 80%;
    margin: 2rem auto;
  }
}

/* ------- Seção sobre */

.section-mip {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  padding: 40px 20px;
}
.text-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}
.timeline {
  position: relative;
  margin: 20px 0;
  width: 50px;
}
.timeline-line {
  position: absolute;
  left: 50%;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #ffc107 0%, #ccc 0%);
  transform: translateX(-50%);
  transition: background 0.3s ease;
}
.check-step {
  position: relative;
  width: 50px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon {
  background: #ccc;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 2;
}
.check-icon.active {
  background: #ffc107;
}
.card-mip {
  flex: 1;
  min-width: 300px;
  padding-left: 40px;
}
.card-mip .card {
  margin-bottom: 20px;
  color: white;
}
.card-yellow {
  background-color: #f4bc1c;
}
.card-orange {
  background-color: #e85d23;
}
.card-green {
  background-color: #6bb745;
}
.card-blue {
  background-color: #3b9edc;
}

@media (max-width: 768px) {
  .section-mip {
    flex-direction: column;
    align-items: stretch;
  }
  .text-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .timeline {
    margin: 0 auto;
  }
  .card-mip {
    padding-left: 0;
  }
}

/* ======= Seção Sobre ======= */
#sobre {
  position: relative;
  overflow: hidden;
}
/* ======= Seção Sobre ======= */
.text-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards em Linha */
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  background: white;
  border: none;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* Efeitos dos Cards */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card:hover::before {
  opacity: 1;
}

/* Cores dos Cards */
.card-primary {
  background: var(--primary);
  color: white;
}

.card-secondary {
  background: var(--secondary);
  color: var(--dark-bg);
}

.card-accent {
  background: var(--primary);
  color: white;
}

.card-light {
  background: var(--secondary);
  color: var(--dark-bg);
}

/* Ícones dos Cards */
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: translateY(-5px);
}

/* Conteúdo dos Cards */
.card-body {
  padding: 2rem;
  text-align: center;
}

.card h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Responsividade */
@media (max-width: 991px) {
  .cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cards-row {
    grid-template-columns: 1fr;
  }

  .card {
    margin-bottom: 1rem;
  }
}

/* ======= Cards de Serviços ======= */
.service-card {
  position: relative;
  background: white;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

/* Container da imagem */
.service-card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-banner {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}

.service-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 20px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.service-card:hover .service-tag {
  background: var(--accent);
  transform: translateX(-5px);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--accent);
}

.service-card .card-body {
  padding: 2rem;
  text-align: center;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.card-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-service-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-service-details:hover {
  color: var(--accent);
}

.btn-service-details:hover i {
  transform: translateX(5px);
}

/* Estilos do Carrossel de Pragas */
/* Estilos do Carrossel de Pragas */
.pragas-carousel {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.pragas-grupo {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}

.praga-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;

  transition: transform 0.3s ease;
}

.praga-img:hover {
  transform: translateY(-5px);
}

/* Controles do carrossel */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

/* Responsividade */
@media (max-width: 991px) {
  .pragas-grupo {
    gap: 15px;
  }

  .praga-img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .pragas-grupo {
    gap: 10px;
  }

  .praga-img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .pragas-carousel {
    padding: 0 20px;
  }

  .pragas-grupo {
    gap: 5px;
  }

  .praga-img {
    width: 100px;
    height: 100px;
  }
}
/* ======= Diferenciais Accordion ======= */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 12px !important;
  overflow: hidden;
}

.accordion-button {
  padding: 1.2rem;
  font-weight: 500;
  background: white;
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: white;
}

.accordion-body {
  padding: 1.2rem;
  background: var(--light-bg);
}

/* Estilos para o carrossel de diferenciais */
.differential-carousel {
  border-radius: 15px;
  overflow: hidden;
}

.differential-carousel .carousel-item {
  height: 400px; /* Ajuste conforme necessário */
}

.differential-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Efeito hover nas imagens */
.differential-carousel .carousel-item:hover img {
  transform: scale(1.05);
}

/* Estilos do Carrossel de Feedbacks */
.feedback-carousel {
  max-width: 100%;
  margin: 0 auto;
}

.feedback-carousel .carousel-item {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: auto;
}

.feedback-carousel .carousel-item {
  opacity: 0;
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
  transform: scale(0.95);
}

.feedback-carousel .carousel-item.active {
  opacity: 1;
  transform: scale(1);
}

.feedback-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsividade */
@media (max-width: 768px) {
  .feedback-carousel .carousel-item {
    max-height: 300px;
  }
}

/* ======= Área de Atuação ======= */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.city-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Estilos dos Cards de Cidades */
.city-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Ícone da cidade */
.city-icon {
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.city-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.city-card:hover .city-icon {
  background: var(--primary);
}

.city-card:hover .city-icon i {
  color: white;
}

/* Nome da cidade */
.city-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

/* Botão de atendimento */
.city-btn {
  width: 100%;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.city-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .city-card {
    padding: 1rem;
  }

  .city-icon {
    width: 50px;
    height: 50px;
  }

  .city-name {
    font-size: 1rem;
  }
}

/* ======= Contato Cards ======= */
.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: var(--primary);
  color: white;
}

/* ======= Footer ======= */
.footer {
  background: var(--dark-bg);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

.footer-divider {
  margin: 2rem 0;
  border-color: rgba(255, 255, 255, 0.1);
}

/* ======= Botões Flutuantes ======= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.floating-whatsapp:hover {
  transform: translateY(-5px);
  color: white;
}

.floating-whatsapp.visible {
  opacity: 1;
  visibility: visible;
}

/* ======= Responsividade ======= */
@media (max-width: 991px) {
  .service-card {
    margin-bottom: 1rem;
  }

  .footer-social {
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .service-card .card-body {
    padding: 1.5rem;
  }

  .contact-card {
    padding: 1.5rem;
  }
}

/* ======= Footer Flutuante ======= */

.footer-floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  font-size: 1.5rem;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 998;
}

.footer-floating-whatsapp:hover {
  background: #128c7e;
  color: white;
  transform: translateY(-3px);
}

/* Animação suave de entrada */
@keyframes fadeInButton {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-floating-whatsapp {
  animation: fadeInButton 0.3s ease forwards;
}

/* Estilos para as seções de Licenciamento e Satisfação */
.licenses-container,
.clients-container {
  max-width: 1000px;
  margin: 0 auto;
}

.licenses-container img,
.clients-container img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.licenses-container img:hover,
.clients-container img:hover {
  transform: scale(1.02);
}

/* Responsividade */
@media (max-width: 768px) {
  .licenses-container,
  .clients-container {
    padding: 0 15px;
  }
}

.widget-insta {
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: white;
}
