/* Força comportamento correto do dropdown no desktop com alta especificidade */
@media (min-width: 769px) {
  header nav .dropdown.show > .dropdown-content {
    min-width: 0 !important;
    width: max-content !important;
    max-width: 860px !important; /* permite caber o maior item sem quebra */
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}
/* Updated: 2025-09-30 03:06:01 */
/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
  box-sizing: border-box;
  max-width: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Otimização de fontes para melhor performance e redução de CLS */

html {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-display: swap;
}

body {
  margin: 0;
  font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 450;
  color: #fff;
  /* Previne mudanças de layout durante carregamento */
  line-height: 1.4;
  /* Estabiliza o layout para reduzir CLS */
  overflow-x: hidden;
}

/* Configurações globais para reduzir CLS */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-wrap {
  filter: saturate(80%) brightness(110%);
  min-height: 100vh;
  background: #11211C;
}

/* ===== NAVBAR ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 60px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1200;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Mobile: menu hambúrguer à esquerda, logo à direita */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 2px 20px;
  }
  
  .menu-toggle {
    order: 1;
    margin-right: 20px;
    margin-left: 0;
  }
  
  .logo-container {
    order: 2;
    flex: 1;
    text-align: center;
  }
  
  nav {
    order: 3;
  }
}

header::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(to bottom, 
              rgba(0, 0, 0, 0.20) 0%, 
              rgba(0, 0, 0, 0.15) 50%,
              rgba(0, 0, 0, 0.05) 75%,
              rgba(0, 0, 0, 0.01) 95%,
              transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.logo-container {
  flex: 1;
  cursor: pointer;
}

.logo {
  height: 52px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  flex: 2;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  width: 100%;
}

nav ul li {
  flex: 1;
  text-align: center;
}

nav ul li a {
  display: block;
  text-decoration: none;
  font-size: 1.65rem;
  color: #134C3D;
  font-weight: 400;
  transition: color 0.3s;
  padding: 10px 0;
}

nav ul li a:hover {
  color: #0b8d6e;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
  display: block;
  text-decoration: none;
  font-size: 1.65rem;
  color: #134C3D;
  font-weight: 400;
  padding: 10px 0;
}


.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;                 /* ancora no meio do pai */
  transform: translateX(-50%);
  background-color: #fff;
  min-width: 0;              /* deixa a largura ser ditada pelo conteúdo */
  width: max-content;        /* ocupa apenas o necessário ao conteúdo */
  max-width: 90vw;           /* não ultrapassa a viewport */
  padding: 12px 0;           /* respiro interno */
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  z-index: 1000;
  text-align: left;
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  overflow: hidden;
  white-space: nowrap;       /* evita quebras por palavra */
}

/* Desktop: centraliza o dropdown sob o item e evita quebras agressivas */
@media (min-width: 769px) {
  nav ul li { position: relative; }
  .dropdown { position: relative; }
  .dropdown-content { top: calc(100% + 0px); }
  .dropdown-content li a {
    white-space: normal;
  }
}

/* Mobile mantém 100% (já tratado no bloco @media max-width: 768px abaixo) */


.dropdown-content li a {
  display: block;
  padding: 15px 25px;
  color: #134C3D;
  font-weight: 400;
  font-size: 1.6rem;
  text-decoration: none;
  transition: background 0.3s;
  text-align: left;
  white-space: nowrap;  /* mantém cada item em uma linha */
  line-height: 1.4;
  width: auto;          /* não força ocupar 100% */
}

.dropdown-content li a:hover {
  background-color: #01BE9C;
  color: #fff;
}


.dropdown.show .dropdown-content {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;                 /* centraliza sob o item */
  transform: translateX(-50%) !important;
  z-index: 10000 !important;
  background-color: #fff !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6) !important;
  min-width: 560px !important;          /* evita quebra no desktop */
  width: fit-content !important;        /* cresce conforme conteúdo */
  max-width: 860px !important;          /* limite superior */
}


/* ===== MENU HAMBÚRGUER ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Força exibição em mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #134C3D;
  transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero-services-bg {
  position: relative;
  background: linear-gradient(
    to bottom,
    #0D1E16 0%,
    #0D1E16 80%,
    #2C694E 95%,
    #388463 100%
  );
  overflow: hidden;
}

.hero-services-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 33% 25%, rgba(56, 133, 99, 0.35) 0%, rgba(56, 133, 99, 0.10) 25%, transparent 55%),
    radial-gradient(circle at 0% 60%, rgba(56, 133, 99, 0.35) 0%, rgba(56, 133, 99, 0.10) 25%, transparent 50%),
    radial-gradient(circle at 95% 65%, rgba(56, 133, 99, 0.35) 0%, rgba(56, 133, 99, 0.10) 25%, transparent 50%);
  pointer-events: none;
}

.hero {
  text-align: center;
  padding: 30px 10px 20px;
  width: 100%;
  margin: 0 auto;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 450;
  line-height: 1.3;
  color: #06BF9D;
  margin: 0;
}

.hero p {
  font-size: 1.3rem;
  font-weight: 400;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.4;
}

/* ===== HERO ESPECÍFICO DA HOME (restaura layout/tamanho anterior apenas na home) ===== */
.hero-services-bg .hero {
  padding: 50px 10px 0px;
  min-height: 180px;
  flex-direction: row;
  gap: 0;
}

.hero-services-bg .hero h1 {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-services-bg .hero p {
  margin: 0;
}

/* Media queries específicas da HOME para manter alturas anteriores */
@media (max-width: 790px) {
  .hero-services-bg .typing-container,
  .hero-services-bg .hero h1 {
    min-height: 220px !important;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .hero-services-bg .typing-container,
  .hero-services-bg .hero h1 {
    min-height: 270px !important;
    height: auto !important;
  }
}

@media (max-width: 400px) {
  .hero-services-bg .typing-container,
  .hero-services-bg .hero h1 {
    min-height: 320px !important;
    height: auto !important;
  }
}

@media (max-width: 350px) {
  .hero-services-bg .typing-container,
  .hero-services-bg .hero h1 {
    min-height: 350px !important;
    height: auto !important;
  }
}

@media (max-width: 330px) {
  .hero-services-bg .typing-container,
  .hero-services-bg .hero h1 {
    min-height: 380px !important;
    height: auto !important;
  }
}

@media (max-width: 300px) {
  .hero-services-bg .typing-container,
  .hero-services-bg .hero h1 {
    min-height: 430px !important;
    height: auto !important;
  }
}

#typing-container {
  display: inline-block;
  text-align: center;
  height: 120px;
  overflow: hidden;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: #00ffcc;
  vertical-align: text-bottom;
  opacity: 0; /* Inicialmente invisível */
}

.cursor.typing-active {
  animation: blink 0.8s infinite;
  opacity: 1;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* ===== SERVIÇOS ===== */
section {
  padding: 10px 30px;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 500;
  color: #fff;
}

.services {
  display: grid;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 70px;
  align-items: stretch; /* Todos os cards ficam com a mesma altura */
  
  /* Telas grandes: 4 por linha */
  grid-template-columns: repeat(4, 1fr);
}

/* Telas médias: 2 por linha (a partir de 1100px) */
@media (max-width: 1100px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Telas pequenas: 1 por linha */
@media (max-width: 576px) {
  .services {
    grid-template-columns: 1fr;
  }
}

.card {
  background: rgba(1, 165, 143, 0.12);
  border: 2px solid #01A58F;
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /* Ocupa toda a altura disponível */
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 255, 200, 0.25);
}

.card-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 5px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0; /* Previne mudanças de tamanho */
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 450;
  color: #fff;
  min-height: 50px;
  display: flex;
  align-items: flex-end;
}

.card p {
  font-size: 0.95rem;
  text-align: left;
  margin-bottom: 0px;
  line-height: 1.4;
  font-weight: 380;
  color: #dcdcdc;
  flex-grow: 1;
  display: flex;
  min-height: 120px; /* Altura mínima para evitar CLS */
  align-items: flex-start;
}

.card a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 450;
  transition: color 0.3s;
  align-self: flex-end;
  margin-top: 0px;
  padding: 0px 0;
}

.card a:hover {
  color: #00ffcc;
}

/* ===== LINKS DOS CARDS ===== */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: none;
}

.card-link:hover {
  text-decoration: none;
  color: inherit;
}

.card-link:visited {
  color: inherit;
}

.card-link:active {
  color: inherit;
}

.card-link .card {
  transition: all 0.3s ease;
}

.card-link:hover .card {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 255, 200, 0.25);
}

.card-link .saiba-mais {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 450;
  transition: color 0.3s;
  margin-top: 15px;
}

.card-link:hover .saiba-mais {
  color: #00ffcc;
}

/* ===== SOBRE NÓS ===== */
.sobre {
  background: #fff;
  color: #134C3D;
  padding: 0 0 40px 0;
  margin: 0;
  overflow: hidden;
}

.sobre-container {
  display: flex;
  align-items: flex-start; /* alinha ao topo */
  justify-content: space-between; /* separa texto e imagem */
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-top: 10px;
}

.sobre-text {
  flex: 0 0 53%;
  padding-left: 1%;
  padding-right: 1%;
  max-width: 43%;
  box-sizing: border-box;
}

.sobre-text h2 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 450;
  color: #016648;
  margin-bottom: 40px;
  text-align: left;
  max-width: 100%;
  padding-top: 40px !important;
}

.sobre-text p {
  font-size: 1.3rem;
  font-weight: 395;
  margin-bottom: 20px;
  line-height: 1.15;
  text-align: left;
  color: #016648;
}

.sobre-image {
  flex: 0 0 47%;
  position: relative;
  height: 510px;
  overflow: hidden;
  border-radius: 360px 0 0 0;
  margin-left: auto;
  padding: 0;
  display: flex;
}

.sobre-image img {
  width: 130%;   
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none;  
  margin: 0;    
}

/* ===== SOBRE TECNOVATES ===== */
#sobre-tecnovates {
  background: #f1fbf9;
  padding: 40px 40px;
}

.sobre-retta-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.sobre-retta-image {
  flex: 0 0 50%;
  height: 380px;
  border-radius: 40px;
  padding: 5px;
  background: linear-gradient(to bottom, #102018, #096E59, #01BD9A);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre-retta-image img {
  width: 98%;
  height: 98%;
  object-fit: cover;
  display: block;
  border-radius: 35px;
}

.sobre-retta-text {
  flex: 0 0 53%;
  padding-left: 1%;
  padding-right: 1%;
  max-width: 43%;
  box-sizing: border-box;
}

.sobre-retta-text h2 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 450;
  color: #016648;
  margin-bottom: 40px;
  text-align: left;
  max-width: 100%;
  padding-top: 40px !important;
}

.sobre-retta-text p,
.sobre-retta-paragraph {
  font-size: 1.3rem;
  font-weight: 395;
  margin-bottom: 20px;
  line-height: 1.15;
  text-align: left;
  color: #016648;
}

.sobre-retta-text .highlight {
  font-weight: 700;
  color: #016648;
  background: linear-gradient(120deg, rgba(1, 102, 72, 0.1) 0%, rgba(1, 102, 72, 0.05) 100%);
  padding: 2px 4px;
  border-radius: 3px;
}

/* ===== SOBRE CLIENTES ===== */
.sobre-clientes-outer {
  background: #fff;
  padding: 0px 30px 10px 30px;
}

.sobre-clientes-wrapper {
  background: linear-gradient(to left, #001A13, #015B49, #9DD5CA);
  padding: 6px;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-clientes {
  background: #fff;
  padding: 20px;
  text-align: center;
  color: #004d3f;
  max-width: 1200px;
  margin: 0 auto;
}

.clientes-titulo {
  position: relative;
  display: inline-block;
  color: #015B4A;
  padding-bottom: 15px;
  margin-top: 10px;
  font-size: 1.9rem;
}

.clientes-titulo.gradient-underline::after {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 3px;
  background: linear-gradient(to right, #99C9BF, #19A187, #021B14);
}

.clientes-numeros {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.clientes-numeros div {
  min-width: 120px;
}

.clientes-numeros h3 {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(180deg, #01BE9C, #015B4A, #00352A);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clientes-numeros p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #004d3f;
}

.clientes-frase {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 20px auto 50px;
  max-width: 95%;
  line-height: 1.3;
  color: #004d3f;
}

/* Carrossel */
:root{
  --logo-width: 200px;
  --logo-gap: 40px;
  --logo-max-height: 70px;
}

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

.carousel-track {
  display: flex;
  gap: var(--logo-gap);
  align-items: center;
  width: max-content;
  will-change: transform;
}

.carousel-item {
  flex: 0 0 var(--logo-width);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item img {
  width: 100%;
  max-height: var(--logo-max-height);
  object-fit: contain;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.25s ease;
}

.carousel-item img:hover { 
  filter: grayscale(0%); 
}

/* ===== CONTATO ===== */
.contato-section {
  padding: 40px 20px;
  background: #fff;
}

.contato-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contato-info {
  flex: 1;
}

.contato-info h2 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 450;
  color: #016648;
  text-align: left;
  max-width: 100%;
}

.contato-info p {
  margin: 15px 0;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: justify;
  max-width: 75%;
  color: #333;
  padding-left: 30px;
}

.contato-icone {
  margin-top: 40px;
  max-width: 50%;
}

.contato-icone img{
  width: 130px;
  height: 130px;
}

.contato-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: -40px;
}

.contato-form input,
.contato-form textarea {
  border: 3px solid transparent;
  padding: 20px;
  font-size: 1.4rem;
  font-weight: 500;
  outline: none;
  background: #fff;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image: 
    linear-gradient(#fff, #fff),
    linear-gradient(90deg, #87B3AA 0%, #035F4A 50%, #02211A 100%);
  color: #000;
}

.contato-form textarea {
  resize: none;
  overflow-y: auto;
  min-height: 120px;
}

.contato-form input:focus,
.contato-form textarea:focus {
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(90deg, #01BE9C 0%, #035F4A 50%, #02211A 100%);
  color: #000;
}

.contato-form button {
  width: 40%;
  min-width: 200px;
  align-self: flex-start;
  padding: 12px;
  font-size: 2rem;
  font-weight: 600;
  cursor: pointer;
  border: 3px solid transparent;
  background: #fff;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image: 
    linear-gradient(#fff, #fff), 
    linear-gradient(90deg, #87B3AA 0%, #035F4A 50%, #02211A 100%);
  color:#013026;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
}

.contato-form button:hover {
  background-image: 
    linear-gradient(90deg, #01BE9C 0%, #035F4A 50%, #02211A 100%);
  color: #fff;
}

/* Botão desabilitado (para loading) */
.contato-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  width: 40%;
  min-width: 200px;
  white-space: nowrap;
  text-align: center;
}

/* ===== REMOVER BADGE FLUTUANTE DO reCAPTCHA v3 ===== */
.grecaptcha-badge {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: fixed !important;
  bottom: -9999px !important;
  right: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  z-index: -9999 !important;
}

/* ===== RODAPÉ ===== */
.footer {
  background: linear-gradient(
    to bottom,
    #0D1E16 0%,
    #0D1E16 80%,
    #2C694E 95%,
    #388463 100%
  );
  color: #fff;
  padding: 0;
  font-size: 1rem;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 0;
  padding: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #e0e0e0;
  line-height: 1.4;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h3 {
  font-size: 1rem;
  font-weight: 300;
  color: #01BE9C;
  margin: 0 0 8px 0;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #01BE9C;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact h3 {
  font-size: 1rem;
  font-weight: 300;
  color: #01BE9C;
  margin: 0 0 8px 0;
}

.footer-contact p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #e0e0e0;
  margin: 0;
  line-height: 1.3;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social img{
  border-radius: 5px;
}

.footer-social h3 {
  font-size: 1rem;
  font-weight: 300;
  color: #01BE9C;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #01BE9C;
  transform: translateY(-2px);
}

.social-links img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}


.footer-bottom {
  text-align: center;
  padding-top: 0;
  border-top: 1px solid #388463;
}

.footer-bottom p {
  font-size: 1rem;
  color: #b0b0b0;
  margin: 0;
}

/* ===== BOTÃO WHATSAPP ===== */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  border: none;
  pointer-events: auto;
}

.whatsapp-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
  background-color: #20b954;
}

/* ===== ANIMAÇÕES ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.gradient-underline {
  --delay: 0ms;
  position: relative;
  display: inline-block;
}

.gradient-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #99C9BF, #19A187, #021B14);
  transform-origin: left;
  transform: scaleX(0);
  border-radius: 2px;
}

@keyframes grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.gradient-underline.show::after {
  animation: grow 600ms ease forwards;
  animation-delay: var(--delay);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  top: 80px;
  right: 20px;
  background-color: #01BE9C;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 100;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== DIALOG DE NOTIFICAÇÃO ===== */
.notification-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.notification-dialog.show {
  opacity: 1;
}

.notification-content {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.notification-dialog.show .notification-content {
  transform: scale(1);
}

.notification-icon {
  text-align: center;
  margin-bottom: 20px;
}

.notification-icon span {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

.notification-icon.success span {
  background: #28a745;
}

.notification-icon.error span {
  background: #dc3545;
}

.notification-message h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #333;
}

.notification-message p {
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
  color: #666;
  line-height: 1.4;
}

.notification-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.notification-close:hover {
  background: #f0f0f0;
  color: #666;
}

.notification-ok-button {
  background: linear-gradient(90deg, #01BE9C 0%, #035F4A 50%, #02211A 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 20px;
  width: 100%;
  transition: all 0.3s ease;
}

.notification-ok-button:hover {
  background: linear-gradient(90deg, #035F4A 0%, #01BE9C 50%, #035F4A 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(1, 190, 156, 0.3);
}

.notification-ok-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(1, 190, 156, 0.25);
}

/* Responsividade para dialogs de notificação */
@media (max-width: 768px) {
  .notification-content {
    max-width: 95%;
    padding: 20px;
    margin: 20px;
  }
  
  .notification-message h3 {
    font-size: 1.3rem;
  }
  
  .notification-message p {
    font-size: 1rem;
  }
  
  .notification-ok-button {
    padding: 14px 24px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .notification-content {
    max-width: 98%;
    padding: 15px;
    margin: 10px;
  }
  
  .notification-message h3 {
    font-size: 1.2rem;
  }
  
  .notification-message p {
    font-size: 0.95rem;
  }
}

/* ===== FORMULÁRIO AUTOFILL ===== */
.input-wrapper {
  position: relative;
  padding: 2.5px;
  background: linear-gradient(90deg, #87B3AA 0%, #035F4A 50%, #02211A 100%);
  display: flex;
}

/* Permitir seleção de texto em elementos específicos */
input, textarea, p, h1, h2, h3, h4, h5, h6, li, span, div {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 15px;
  color: #000;
  background: #fff;
  display: block;
  transition: all 0.3s ease;
}

/* Validação visual dos campos */
.input-wrapper input.valid,
.input-wrapper textarea.valid {
  border-left: 4px solid #28a745;
  background-color: #f8fff9;
}

.input-wrapper input.invalid,
.input-wrapper textarea.invalid {
  border-left: 4px solid #dc3545;
  background-color: #fff5f5;
}

/* ===== ACESSIBILIDADE - LABEL OCULTO ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== PLACEHOLDER ANIMADO ===== */
.typing-placeholder {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #666;
  font-size: 1.4rem;
  font-weight: 500;
  pointer-events: none;
  z-index: 1;
  line-height: 1.4;
  max-width: calc(100% - 30px);
}

.input-wrapper {
  position: relative;
}

.input-wrapper textarea:focus + .typing-placeholder,
.input-wrapper textarea:not(:placeholder-shown) + .typing-placeholder {
  display: none;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: #01BE9C;
  vertical-align: text-bottom;
  margin-left: 2px;
  opacity: 0; /* Inicialmente invisível */
}

.cursor.typing-active {
  animation: blink 1s infinite;
  opacity: 1;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}


/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
  .sobre-container {
    flex-direction: column;
  }
  
  .sobre-text, .sobre-image {
    flex: 0 0 100%;
    width: 100%;
  }

  .sobre-text p, .sobre-text h2 {
    max-width: none;
    margin-right: 0;
  }
  
  /* Remove limitação de largura no mobile */
  .sobre-text {
    max-width: none;
    text-align: left;
  }
  
  .sobre-text h2 {
    text-align: left;
  }
  
  .sobre-text p {
    text-align: left;
  }
  
  /* Adiciona padding consistente no mobile */
  .sobre-container {
    padding: 0 40px;
  }
  
  /* Layout de contato em coluna única no mobile */
  .contato-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .contato-info {
    order: 1;
    text-align: center;
  }
  
  .contato-info h2 {
    max-width: 100%;
    text-align: left;
  }
  
  .contato-info p {
    max-width: 100%;
    text-align: center;
  }
  
  .contato-form {
    order: 2;
    margin-left: 0;
    width: 100%;
  }
  
  .contato-form input,
  .contato-form textarea {
    width: 100%;
    box-sizing: border-box;
  }
  
  .contato-form button {
    width: 100% !important;
    min-width: 200px !important;
    white-space: nowrap !important;
    text-align: center !important;
  }
  
  .contato-form button:disabled {
    width: 100% !important;
    min-width: 200px !important;
    white-space: nowrap !important;
    text-align: center !important;
  }
  
  /* Oculta texto e ícone no mobile */
  .contato-info p {
    display: none;
  }
  
  .contato-icone {
    display: none;
  }
    
  .sobre-image img {
    width: 100%;
    transform: none;
    margin: 0;
  }

  .contato-form{
    overflow: hidden;
  }
}

@media (max-width: 790px) {
  .typing-container, .hero h1 {
    min-height: auto !important;
    height: auto !important;
  }
  
  .hero {
    min-height: 100px;
    padding: 20px 10px 15px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .typing-container, .hero h1 {
    min-height: auto !important;
    height: auto !important;
  }
  
  .hero {
    min-height: 90px;
    padding: 15px 10px 10px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }

  nav {
    position: fixed;
    top: 60px;
    left: -100%;
    height: calc(100vh - 60px);
    width: 100%;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.4);
    transition: left 0.3s ease;
    z-index: 10001;
    padding: 20px;
    overflow: hidden;
    display: block;
  }

  nav.active {
    left: 0 !important;
    display: block !important;
    visibility: visible !important;
  }

  nav.active ~ .whatsapp-button {
    display: none;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    margin: 0;
  }

  nav ul li {
    width: 100%;
    max-width: 100%;
    text-align: left;
    overflow: hidden;
  }

  nav ul li a,
  .dropbtn {
    font-size: 1.4rem;
    color: #134C3D;
    padding: 10px 0;
    display: block;
    width: 100%;
  }

  .menu-toggle {
    display: flex !important;
    z-index: 10000;
    order: 1;
    margin-left: 0;
    margin-right: 20px;
    position: relative;
  }
    
  .whatsapp-button {
    z-index: 5000;
  }

  .dropdown {
    position: static;
    width: 100%;
  }

  .dropdown-content {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    display: none !important;
    z-index: 1001 !important;
    opacity: 1 !important;
    visibility: hidden !important;
    white-space: normal;
    left: 0 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }
  
  .dropdown-content.open,
  .dropdown.show .dropdown-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-shadow: none !important;
    left: 0 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  .dropdown-content li {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .dropdown-content li a {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 25px !important;
    font-size: 1.4rem !important;
    border: none !important;
    background: transparent !important;
    pointer-events: auto;
    display: block;
    white-space: normal;
    line-height: 1.4;
    word-wrap: break-word;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .dropdown-content li a:hover {
    color: #0A7C65;
    background: transparent !important;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-social {
    align-items: center;
  }

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

@media (max-width: 400px) {
  .typing-container, .hero h1 {
    min-height: auto !important;
    height: auto !important;
  }
  
  .hero {
    min-height: 80px;
    padding: 10px 10px 8px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 350px) {
  .typing-container, .hero h1 {
    min-height: auto !important;
    height: auto !important;
  }
  
  .hero {
    min-height: 70px;
    padding: 8px 10px 6px;
  }
  
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
}

@media (max-width: 330px) {
  .typing-container, .hero h1 {
    min-height: auto !important;
    height: auto !important;
  }
  
  .hero {
    min-height: 65px;
    padding: 6px 10px 5px;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
}

@media (max-width: 300px) {
  .typing-container, .hero h1 {
    min-height: auto !important;
    height: auto !important;
  }
  
  .hero {
    min-height: 60px;
    padding: 5px 10px 4px;
  }
  
  .hero h1 {
    font-size: 1.4rem;
  }
  
  .hero p {
    font-size: 0.85rem;
  }
}

/* Page Background and Card Layout */
body {
  background-color: #ffffff;
}

/* ===== HERO BRANCO PARA PÁGINAS DE CONTEÚDO ===== */
.politica-hero {
  background: #ffffff;
  padding: 40px 0 20px;
}

.politica-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.politica-hero h1 {
  font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 450; /* igual ao sobre-text */
  color: #016648;   /* mesma paleta do sobre-text */
  font-size: 2rem;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

/* Container for sections that need max-width */
.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.content-section {
  background-color: #ffffff;
  padding: 40px 0;
}

.content-section .container {
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== CLASSE ESPECÍFICA PARA PÁGINAS DE SERVIÇO ===== */
/* Classe específica para texto de parágrafo nas páginas de serviço */
.paragrafo-texto {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  text-align: left;
    font-size: 1.3rem;
  font-weight: 395;
}

/* Indentação de parágrafo */
.paragrafo-texto p {
  text-indent: 2rem;
  margin-bottom: 1.2rem;
  text-align: left;

}

/* ===== CONTEÚDO JUSTIFICADO PARA A PÁGINA DE POLÍTICA ===== */
.politica-container {
  max-width: 1200px;
  margin: 0 auto;
  color: #016648;
}

.politica-container p,
.politica-container li {
  text-align: justify;
}

.politica-container h2 {
  color: #016648;
  font-size: 2rem;
  font-weight: 700;
  margin: 24px 0 12px;
  text-align: left;
}

/* Card Sections */
.servicos-card-section {
  background: #ffffff;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.servicos-card-section:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.servicos-card-section h2 {
  color: #016648;
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid #016648;
  padding-bottom: 10px;
}

.servicos-card-section .sobre-text {
  background: transparent;
}

.servicos-card-section .sobre-text ul {
  color: #333;
  margin: 20px 0;
  padding-left: 20px;
}

.servicos-card-section .sobre-text li {
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
}

.servicos-card-section .sobre-text li strong {
  color: #016648;
  font-weight: 600;
}

/* General list styling for card sections */
.servicos-card-section ul {
  color: #333 !important;
}

.servicos-card-section li {
  color: #333 !important;
}

.servicos-card-section li strong {
  color: #016648 !important;
}

/* Force text color for all elements in card sections */
.servicos-card-section * {
  color: inherit;
}

.servicos-card-section p, 
.servicos-card-section li, 
.servicos-card-section ul, 
.servicos-card-section ol {
  color: #333 !important;
}

.servicos-card-section strong {
  color: #016648 !important;
}

/* FAQ Section */
.faq-section {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.faq-section h2 {
  color: #016648;
  margin-bottom: 20px;
  text-align: left;
  border-bottom: 2px solid #016648;
  padding-bottom: 10px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
  background: #f8f9fa;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  cursor: pointer;
  background: #f8f9fa;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #e0e0e0;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  flex: 1;
  padding-right: 15px;
  text-align: left;
}

/* Destaque para palavras-chave nos títulos da FAQ */
.faq-question h3 .highlight {
  color: #016648;
  font-weight: 700;
}

.faq-toggle {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #016648, #00a86b, #00d4aa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(1, 102, 72, 0.5);
  transition: transform 0.2s ease, background 0.2s ease;
  min-width: 30px;
  text-align: center;
  filter: drop-shadow(0 0 8px rgba(1, 102, 72, 0.4));
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #dc3545, #ff6b6b, #ff8e8e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
  filter: drop-shadow(0 0 8px rgba(220, 53, 69, 0.4));
  transition: transform 0.15s ease-in, background 0.15s ease-in;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in;
  background: #ffffff;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  background: linear-gradient(120deg, rgba(1, 102, 72, 0.08) 0%, rgba(1, 102, 72, 0.03) 100%);
  border-left: 4px solid;
  border-image: linear-gradient(135deg, #016648, #00a86b, #00d4aa) 1;
}

.faq-answer p {
  padding: 20px 25px;
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

.faq-answer p:first-child {
  padding-top: 25px;
}

.faq-answer p:last-child {
  padding-bottom: 25px;
}

/* Responsive Content */
@media (max-width: 768px) {
  .content-container,
  .content-section .container,
  .sobre-container,
  .contato-container,
  .footer-container {
    padding: 0 15px;
  }
  
  /* Responsividade para classe paragrafo-texto */
  .paragrafo-texto {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Reduzir indentação em mobile */
  .paragrafo-texto p {
    text-indent: 1.5rem;
  }
  
  /* Oculta a imagem do Tecnovates no mobile */
  .sobre-retta-image {
    display: none;
  }
  
  /* Ajusta o texto para ocupar toda a largura */
  .sobre-retta-text {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  /* Remove limitação de largura no mobile */
  .sobre-retta-text {
    max-width: none;
    text-align: left;
  }
  
  .sobre-retta-text h2 {
    text-align: left;
  }
  
  .sobre-retta-text p,
  .sobre-retta-paragraph {
    text-align: left;
  }
  
  /* Adiciona padding consistente no mobile */
  .sobre-retta-container {
    padding: 0 15px;
  }
  
  .servicos-card-section {
    padding: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .content-container,
  .content-section .container,
  .sobre-container,
  .contato-container,
  .footer-container {
    padding: 0 12px;
  }
  
  .servicos-card-section {
    padding: 12px;
    margin-bottom: 15px;
  }
  
  /* Indentação ainda menor em telas muito pequenas */
  .paragrafo-texto p {
    text-indent: 1rem;
  }
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .faq-item {
    margin-bottom: 10px;
  }
  
  .faq-question {
    padding: 12px 15px;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.4;
    padding-right: 10px;
  }
  
  .faq-toggle {
    font-size: 1.4rem;
    min-width: 25px;
  }
  
  .faq-answer p {
    padding: 12px 15px;
    font-size: 1rem;
    text-align: left;
    line-height: 1.5;
  }
  
  .faq-answer p:first-child {
    padding-top: 15px;
  }
  
  .faq-answer p:last-child {
    padding-bottom: 15px;
  }
  
  .faq-answer ul {
    padding: 0 15px 15px 15px;
    margin: 0;
  }
  
  .faq-answer li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .faq-section h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .faq-question {
    padding: 10px 12px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    line-height: 1.3;
    padding-right: 8px;
  }
  
  .faq-toggle {
    font-size: 1.2rem;
    min-width: 22px;
  }
  
  .faq-answer p {
    padding: 10px 12px;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .faq-answer p:first-child {
    padding-top: 12px;
  }
  
  .faq-answer p:last-child {
    padding-bottom: 12px;
  }
  
  .faq-answer ul {
    padding: 0 12px 12px 12px;
  }
  
  .faq-answer li {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 6px;
  }
}


@media (max-width: 330px) {
  .dropdown-content li a {
    font-size: 0.9rem !important;
    padding-left: 0 !important;
  }
}

/* ===== GLOBAL SCROLLBARS (Site inteiro) ===== */
/* WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #eaf5f2; /* tom claro de verde */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #01BE9C 0%, #035F4A 60%, #02211A 100%);
  border-radius: 0; /* sem radius */
  border: none;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #01a789 0%, #024c3b 60%, #011812 100%);
}

/* Firefox */
/* Não aceita gradiente, então usamos cores aproximadas */
html, body, * {
  scrollbar-width: thin; /* auto | thin | none */
  scrollbar-color: #035F4A #eaf5f2; /* thumb track */
}

#o-que-fazemos,
#quem-somos,
#clientes {
  scroll-margin-top: 100px; /* altura da navbar */
}

#quem-somos{
  scroll-margin-top: 110px; /* altura da navbar */
}

#o-que-fazemos {
  scroll-margin-top: 60px; /* altura da navbar */
}

#contato {
  scroll-margin-top: 30px; /* altura da navbar */
}