/* ====================================================== 
   AJUSTE PARA REMOVER A BORDA DA LOGO NO MENU
   ====================================================== */
.menu .logo .logo-img-redonda {
  border: none; /* Garante que não há borda */
  border-radius: 0; /* Remove qualquer arredondamento, tornando-a quadrada/retangular */
  width: 100px; /* Define uma largura fixa (ajuste conforme necessário) */
  height: 100px; /* Define a mesma altura da largura para que fique quadrada */
  object-fit: contain; /* Garante que a imagem se ajuste dentro das dimensões sem ser cortada */
  max-width: 100%; /* Garante que não exceda o contêiner pai */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu .logo .logo-img-redonda:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.menu .logo {
  height: 100px; /* Ajuste a altura do contêiner 'a' para corresponder à altura da logo */
  width: 100px; /* Ajuste a largura do contêiner 'a' para corresponder à largura da logo */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden; /* Use hidden para cortar o que exceder, se desejar um corte exato no quadrado */
}

/* ====================================================== 
    CSS ESPECÍFICO DA PÁGINA INICIAL - RGS 
    ====================================================== */

/* Estilos específicos da página inicial que não estão no base.css */

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Loading states */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Micro-interactions */
.interactive-element {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.interactive-element:hover {
  transform: translateY(-2px);
}

.interactive-element:active {
  transform: translateY(0);
}

/* Form Styles - Site Blue Colors */
.form-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-blue) 100%);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue), var(--accent-blue), var(--primary-blue));
  background-size: 300% 100%;
  animation: gradientShift 3s ease infinite;
}

.form-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13, 44, 84, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-section h2 {
  color: white;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(13, 44, 84, 0.5);
  position: relative;
  z-index: 2;
}

.form-section h2.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;
}

.form-section form {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(13, 44, 84, 0.95) 0%, rgba(30, 64, 175, 0.9) 50%, rgba(59, 130, 246, 0.95) 100%);
  padding: 60px;
  border-radius: 25px;
  box-shadow: 
    0 25px 80px rgba(13, 44, 84, 0.3),
    0 0 0 1px rgba(255,255,255,0.2),
    inset 0 1px 0 rgba(255,255,255,0.3);
  border: 2px solid rgba(13, 44, 84, 0.3);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: start;
  z-index: 2;
}

.form-section form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue), var(--accent-blue));
  border-radius: 25px 25px 0 0;
  box-shadow: 0 2px 15px rgba(13, 44, 84, 0.5);
}

.form-section form::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(13, 44, 84, 0.05) 0%, transparent 70%);
  pointer-events: none;
}


.form-section input,
.form-section select,
.form-section textarea {
  width: 100%;
  padding: 20px 25px;
  border: 2px solid rgba(59, 130, 246, 0.5);
  border-radius: 15px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(239, 246, 255, 0.9) 100%);
  box-shadow: 
    0 10px 30px rgba(13, 44, 84, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 0 0 1px rgba(255,255,255,0.5);
  margin-bottom: 8px;
  position: relative;
  backdrop-filter: blur(10px);
  color: var(--primary-blue);
}

.form-section input::placeholder,
.form-section select::placeholder,
.form-section textarea::placeholder {
  color: #64748b;
  font-weight: 400;
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(239, 246, 255,1) 100%);
  box-shadow: 
    0 0 0 4px rgba(13, 44, 84, 0.2),
    0 20px 40px rgba(13, 44, 84, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 0 0 1px rgba(255,255,255,0.8);
  transform: translateY(-4px) scale(1.02);
}

.form-section input.error,
.form-section select.error,
.form-section textarea.error {
  border-color: #ef4444;
  background: linear-gradient(135deg, rgba(254,242,242,0.95) 0%, rgba(252,231,243,0.95) 100%);
  box-shadow: 
    0 0 0 4px rgba(239, 68, 68, 0.2),
    0 10px 30px rgba(239, 68, 68, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.8);
  animation: errorShake 0.6s ease-in-out;
}

@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 15px;
  font-weight: 600;
  padding-left: 5px;
  animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-row {
  display: contents;
}

.form-row:nth-child(5) {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 10px;
}


/* Responsive Design */
@media (max-width: 768px) {
  .form-section {
    padding: 60px 15px;
  }
  
  .form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .form-section form {
    padding: 30px 25px;
    border-radius: 8px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-section input,
  .form-section select,
  .form-section textarea {
    padding: 15px 20px;
    font-size: 16px;
  }
   /* Botão orçamento mobile removido - usando CSS inline no HTML */
  
  .form-row:nth-child(5) {
    flex-direction: column;
    gap: 20px;
  }
}

/* Botão orçamento removido - usando CSS inline no HTML */

/* Seção do carrossel */
.carousel-section {
  padding: 0;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.carousel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green), var(--accent-blue));
}

.carousel-section h2 {
  color: #0D2C54;
  margin-bottom: 60px;
  font-size: 42px;
  font-weight: 700;
  padding: 0 var(--spacing-md);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  display: inline-block;
}

.carousel-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
  border-radius: 2px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.carousel-slide {
  display: flex;
  transform: translateX(0);
  transition: transform 0.6s ease;
  will-change: transform;
  height: 100%;
}

.carousel-slide img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Dots do carrossel */
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.carousel-dots .dot:hover {
  opacity: 1;
  transform: scale(1.2);
}

.carousel-dots .dot.active {
  background: #76B947;
  opacity: 1;
  transform: scale(1.2);
}

/* Controles do carrossel */
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  pointer-events: none;
  z-index: 10;
}

.carousel-control {
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control:hover {
  background: rgba(0,0,0,0.8);
  transform: scale(1.1);
}

/* Marca d'água */
.watermark {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  opacity: 0.85;
  pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
  z-index: 5;
  object-fit: contain;
  transition: all 0.3s ease;
}

.watermark:hover {
  opacity: 0.95;
  transform: translate(-50%, -50%) scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}

@media (max-width: 768px) {
  .watermark {
    width: 120px;
    height: 120px;
    top: 56%;
  }
  
  .servicos-oferecidos .grid-servicos {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .how-it-works-section .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .servico img {
    height: 250px;
  }
}


/* Seção do formulário */
.form-section {
  display: flex;
  justify-content: center;
  margin: 60px 0;
  padding: 0 20px;
  overflow: hidden;
  width: 100%;
}

form {
  background: linear-gradient(135deg, #0D2C54 0%, #1a4a8a 100%);
  padding: 40px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(13, 44, 84, 0.3);
  overflow: hidden;
  box-sizing: border-box;
}

form input,
form select {
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

form input:focus,
form select:focus {
  background: white;
  box-shadow: 0 4px 20px rgba(118, 185, 71, 0.3);
  transform: translateY(-2px);
}

/* Regra específica para o campo de telefone */
form input[type="tel"] {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
}

/* Validação de formulário */
form input.is-invalid,
form select.is-invalid {
  border: 2px solid #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  text-align: left;
  grid-column: span 2;
}

.btn-submit {
  grid-column: span 2;
  padding: 18px;
  background: linear-gradient(135deg, #76B947 0%, #68A040 100%);
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(118, 185, 71, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #68A040 0%, #5a8a35 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(118, 185, 71, 0.4);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Hero serviços */
.hero-servicos {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') no-repeat center center/cover;
  padding: 100px 20px;
  color: white;
  position: relative;
}

.hero-servicos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  z-index: 1;
}

.hero-servicos > * {
  position: relative;
  z-index: 2;
}

.hero-servicos h1 {  
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-servicos p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  border: 2px solid #76B947;
  padding: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.card i {
  font-size: 48px;
  color: #76B947;
  margin-bottom: 20px;
}

.card h3 {
  color: #0D2C54;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Serviços oferecidos */
.servicos-oferecidos {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.servicos-oferecidos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green), var(--accent-blue));
}

.servicos-oferecidos h2 {
  font-size: 42px;
  color: #0D2C54;
  margin-bottom: 60px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  display: inline-block;
}

.servicos-oferecidos h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
  border-radius: 2px;
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.servico {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  background: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.servico::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 44, 84, 0.1) 0%, rgba(118, 185, 71, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.servico img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  filter: brightness(85%) contrast(110%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.servico:hover img {
  transform: scale(1.05);
  filter: brightness(70%) contrast(120%);
}

.servico:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.servico:hover::before {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(13, 44, 84, 0.95) 0%, rgba(44, 110, 191, 0.95) 100%);
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

.servico:hover .overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Sobre a empresa */
.sobre-empresa {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0D2C54 0%, #1a4a8a 50%, #2C6EBF 100%);
  position: relative;
  overflow: hidden;
}

.sobre-empresa::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: backgroundShift 20s ease-in-out infinite;
}

.sobre-empresa::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.6;
}

@keyframes backgroundShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.experience-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.experience-badge {
  text-align: center;
  background: linear-gradient(135deg, #76B947 0%, #68A040 50%, #5a8a35 100%);
  border-radius: 25px;
  padding: 60px 50px;
  box-shadow: 
    0 25px 50px rgba(118, 185, 71, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateX(5deg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.experience-badge:hover {
  transform: perspective(1000px) rotateX(0deg) scale(1.05);
  box-shadow: 
    0 35px 70px rgba(118, 185, 71, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.experience-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: rotate(45deg);
  animation: shine 4s ease-in-out infinite;
}

.experience-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
  border-radius: 25px;
  pointer-events: none;
}

@keyframes shine {
  0% { 
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  50% { 
    opacity: 1;
  }
  100% { 
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 0;
  }
}

.experience-badge .years {
  display: block;
  font-size: clamp(60px, 10vw, 90px);
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 
    0 6px 12px rgba(0,0,0,0.4),
    0 2px 4px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: numberGlow 3s ease-in-out infinite alternate;
}

.experience-badge .label {
  display: block;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.95;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: labelPulse 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
  0% { 
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
  }
  100% { 
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.6));
  }
}

@keyframes labelPulse {
  0% { 
    opacity: 0.95;
    transform: scale(1);
  }
  100% { 
    opacity: 1;
    transform: scale(1.02);
  }
}

.experience-text h2 {
  font-size: clamp(42px, 7vw, 56px);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
  animation: titleGlow 4s ease-in-out infinite alternate;
}

.experience-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #76B947 0%, #68A040 100%);
  border-radius: 2px;
  animation: underlineExpand 2s ease-out;
}

.experience-text p {
  font-size: clamp(22px, 4.2vw, 26px);
  color: #f0f0f0;
  line-height: 1.8;
  margin-bottom: 60px;
  font-weight: 500;
  text-shadow: 0 3px 6px rgba(0,0,0,0.3);
  position: relative;
  letter-spacing: 0.3px;
}

@keyframes titleGlow {
  0% { 
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
  }
  100% { 
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.4));
  }
}

@keyframes underlineExpand {
  0% { 
    width: 0;
    opacity: 0;
  }
  100% { 
    width: 80px;
    opacity: 1;
  }
}


.experience-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #76B947 0%, #68A040 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  border-radius: 0 3px 3px 0;
}

.feature::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(118, 185, 71, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature:hover {
  background: linear-gradient(135deg, rgba(118, 185, 71, 0.15) 0%, rgba(104, 160, 64, 0.08) 100%);
  border-color: rgba(118, 185, 71, 0.5);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(118, 185, 71, 0.2);
}

.feature:hover::before {
  transform: scaleY(1);
}

.feature:hover::after {
  opacity: 1;
}

.feature i {
  font-size: 24px;
  background: linear-gradient(135deg, #76B947 0%, #68A040 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(118, 185, 71, 0.3));
}

.feature:hover i {
  transform: scale(1.3) rotate(8deg);
  filter: drop-shadow(0 0 12px rgba(118, 185, 71, 0.6));
}

.feature span {
  font-size: clamp(17px, 3.2vw, 19px);
  color: #f0f0f0;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature:hover span {
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.company-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.imagem-experiencia {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
}

.imagem-experiencia::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.imagem-experiencia:hover::before {
  opacity: 1;
}

.imagem-experiencia img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.imagem-experiencia:hover img {
  transform: scale(1.05);
}

.story-content {
  text-align: center;
}

.sobre-empresa .subtitulo {
  font-size: clamp(32px, 6vw, 38px);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sobre-empresa .descricao {
  font-size: clamp(20px, 4vw, 24px);
  margin: 15px 0 30px;
  color: #e0e0e0;
  font-weight: 500;
}

.historia {
  font-size: clamp(18px, 3.5vw, 22px);
  line-height: 1.8;
  color: #d0d0d0;
  text-align: justify;
  margin-bottom: 40px;
}

.historia p {
  margin-bottom: 20px;
}

.historia strong {
  color: #76B947;
  font-weight: 700;
}

/* Responsividade para a seção de experiência */
@media (max-width: 1024px) {
  .experience-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .company-story {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .sobre-empresa {
    padding: 80px 15px;
  }
  
  .experience-content {
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .experience-badge {
    padding: 50px 40px;
  }
  
  .experience-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .company-story {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .sobre-empresa {
    padding: 60px 10px;
  }
  
  .experience-content {
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .experience-badge {
    padding: 40px 30px;
  }
  
  .experience-features {
    gap: 15px;
  }
  
  .company-story {
    gap: 25px;
  }
}

.btn-call {
  display: inline-block;
  padding: 18px 36px;
  background: linear-gradient(135deg, #2C6EBF 0%, #1e4a8a 100%);
  color: white;
  font-size: 22px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(44, 110, 191, 0.3);
  margin: 0 auto;
  text-align: center;
}

.btn-call:hover {
  background: linear-gradient(135deg, #1e4a8a 0%, #0D2C54 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(44, 110, 191, 0.4);
}

/* Botão de orçamento */
.btn-quote {
    margin: 30px;
}

.btn-quote a {
  display: inline-block;
  padding: 20px 40px;
  background: linear-gradient(135deg, #76B947 0%, #68A040 100%);
  color: white;
  font-weight: 700;
  text-decoration: none;
  border-radius: 35px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 18px;
  box-shadow: 0 8px 25px rgba(118, 185, 71, 0.3);
  border: 2px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.btn-quote a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-quote a:hover {
  background: linear-gradient(135deg, #68A040 0%, #5a8a35 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(118, 185, 71, 0.5);
}

.btn-quote a:hover::before {
  left: 100%;
}

/* Como funciona */
.how-it-works-section {
  background: linear-gradient(135deg, #0D2C54 0%, #1a4a8a 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.how-it-works-section > * {
  position: relative;
  z-index: 2;
}

.how-it-works-section .title-container {
  display: inline-block;
  background: linear-gradient(135deg, #76B947 0%, #68A040 100%);
  padding: 15px 50px;
  border-radius: 30px;
  margin-bottom: 30px;
  box-shadow: 0 6px 25px rgba(118, 185, 71, 0.3);
}

.how-it-works-section h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.how-it-works-section p {
  color: #fff;
  font-size: 20px;
  margin-bottom: 50px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.steps-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #76B947;
  color: #fff;
  padding: 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  text-align: left;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.step-card:hover {
  background: rgba(118, 185, 71, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.step-number {
  background: linear-gradient(135deg, #76B947 0%, #68A040 100%);
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  margin-right: 20px;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(118, 185, 71, 0.3);
}

.step-card p {
  color: #fff;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

/* Seção de contato */
.contact-section {
  background: linear-gradient(135deg, #2C6EBF 0%, #1e4a8a 100%);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-wrapper {
  background: linear-gradient(135deg, #0D2C54 0%, #1a4a8a 100%);
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.contact-wrapper h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}

.contact-wrapper p {
  color: #fff;
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
}

.contact-form-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-column input,
.contact-form-column textarea {
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form-column input:focus,
.contact-form-column textarea:focus {
  background: white;
  box-shadow: 0 4px 20px rgba(118, 185, 71, 0.3);
  transform: translateY(-2px);
}

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

.send-btn {
  padding: 18px;
  background: linear-gradient(135deg, #76B947 0%, #68A040 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(118, 185, 71, 0.3);
}

.send-btn:hover {
  background: linear-gradient(135deg, #68A040 0%, #5a8a35 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(118, 185, 71, 0.4);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #0D2C54 0%, #1a4a8a 100%);
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 180px;
  margin: 0 auto 15px;
  display: block;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.footer-logo p {
  color: #76B947;
  font-size: 18px;
  font-weight: 600;
}

.footer-menu h3,
.footer-hours h3,
.footer-contact h3 {
  color: #76B947;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

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

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

.footer-menu ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
  display: inline-block;
}

.footer-menu ul li a:hover {
  color: #76B947;
  transform: translateX(5px);
}

.footer-contact p {
  margin: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  font-size: 14px;
  color: #ccc;
}

/* Responsividade */
@media (max-width: 1200px) {
  .grid-servicos {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
  /* Adicione esta regra para esconder a marca d'água em dispositivos móveis */

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 15px 20px;
  }
  
  .menu ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
    display: none;
  }
  
  .menu.mobile-open ul {
    display: flex;
  }
  
  .menu ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .menu ul li:last-child {
    border-bottom: none;
  }
  
  .menu ul li a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border-radius: 0;
    text-align: left;
  }
  
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: rgba(255,255,255,0.1) !important;
    display: none !important;
  }
  
  .dropdown-menu.show {
    display: block !important;
  }
  
  .dropdown-menu li a {
    padding: 12px 40px !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }
}

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

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-toggle i {
  margin-left: 5px;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 10px;
  background: linear-gradient(135deg, #0D2C54 0%, #1a4a8a 100%);
  list-style: none;
  padding: 15px 0;
  min-width: 250px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.dropdown-menu li a {
  padding: 12px 25px;
  display: block;
  white-space: nowrap;
  text-align: left;
  color: #fff;
  transition: all 0.3s ease;
  border-radius: 0;
  margin: 0;
  font-size: 16px;
}

.dropdown-menu li a:hover {
  background: linear-gradient(135deg, #76B947 0%, #68A040 100%);
  color: #fff;
  transform: translateX(5px);
}

.dropdown:hover .dropdown-menu,
.dropdown .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-toggle i,
.dropdown .dropdown-toggle.open i {
  transform: rotate(180deg);
}

/* Regras específicas para mobile - FORÇA TOTAL */
@media (max-width: 992px) {
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: rgba(255,255,255,0.1) !important;
    display: none !important;
  }
  
  .dropdown-menu.show {
    display: block !important;
  }
  
  .dropdown-menu li a {
    padding: 12px 40px !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }
}

/* Responsividade */
@media (max-width: 1200px) {
  .grid-servicos {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px 20px;
  }
  
  .top-bar .top-info {
    gap: 20px;
  }
  
  .benefits {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .form-section {
    margin: 40px 0;
  }
  
  form {
    padding: 30px 20px;
    gap: 15px;
  }
  
  .carousel-section {
    height: 80vh;
  }
  
  .carousel-slide img {
    height: 100%;
  }
  
  .hero-servicos {
    padding: 60px 20px;
  }
  
  .hero-servicos h1 {
    font-size: 28px;
  }
  
  .hero-servicos p {
    font-size: 18px;
  }
  
  .servicos-oferecidos {
    padding: 60px 20px;
  }
  
  /* Rodapé em coluna única para mobile */
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .servicos-oferecidos .grid-servicos {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }
  
  .how-it-works-section {
    padding: 60px 20px;
  }
  
  .how-it-works-section .steps-container {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

@media (max-width: 480px) {
  .carousel-section {
    height: 70vh;
    padding: 0;
  }
  
  .carousel-section h2 {
    font-size: 24px;
    padding: 0 15px;
  }
  
  .carousel-slide img {
    height: 100%;
  }
  
  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .carousel-dots .dot {
    width: 10px;
    height: 10px;
  }
  
  .servicos-oferecidos .grid-servicos {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }
  
  .servicos-oferecidos h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .servico img {
    height: 220px;
  }
  
  .how-it-works-section {
    padding: 50px 20px;
  }
  
  .how-it-works-section h2 {
    font-size: 28px;
  }
  
  .how-it-works-section p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .how-it-works-section .steps-container {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .step-card {
    padding: 20px;
    text-align: center;
  }
  
  .step-number {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Regras específicas para telas muito pequenas */
@media (max-width: 400px) {
  .servicos-oferecidos .grid-servicos {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .how-it-works-section .steps-container {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .servico {
    margin-bottom: 20px;
  }
  
  .step-card {
    margin-bottom: 15px;
  }
}