/* === style.css === */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0C2146;
  color: white;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  color: #0C2146;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  min-height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img,
.logo-img {
  height: 40px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: #0C2146;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #D94848;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #D94848;
}

nav a:hover::after {
  width: 100%;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 40px;
  padding-top: 80px;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  scroll-snap-align: start;
  scroll-margin-top: 0;
}

/* Estados iniciais dos elementos - invisíveis */
.left {
  flex: 1 1 300px;
  max-width: 550px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.right {
  flex: 1 1 300px;
  max-width: 400px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

/* Classes que serão adicionadas via JavaScript quando o elemento aparecer */
.left.animate {
  opacity: 1;
  transform: translateX(0);
}

.right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Remover as animações antigas */
@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-logo {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  max-width: 400px;
  filter: brightness(1.1) contrast(1.1);
}

.slogan {
  font-size: 18px;
  margin: 20px 0;
}

.descricao {
  color: #cccccc;
  margin-bottom: 30px;
  font-size: 16px;
}

.botoes {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.servico {
  background: #D94848;
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.servico:hover {
  background: #b73737;
  transform: translateY(-2px);
}

.right .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  font-size: 16px;
  text-align: center;
  max-width: 350px;
  position: relative;
  z-index: 10;
  margin-bottom: 40px;
}

.right .box strong {
  font-size: 22px;
  color: #D94848;
  display: block;
}

/* === Seção Serviços === */
.servicos {
  padding: 80px 40px 60px 40px;
  background-color: #f7f9fc;
  text-align: center;
  scroll-margin-top: 80px;
  /* Compensa o header fixo */
  position: relative;
  z-index: 1;
}

.servicos h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0C2146;
  font-weight: 800;
}

.servicos p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.servico-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 1.2s ease, transform 1.2s ease;

  /* Estado inicial - invisível */
  opacity: 0;
  transform: translateY(30px);
}

.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Classe que será adicionada via JavaScript */
.servico-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.servico-card .icon {
  background-color: #0C2146;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 26px;
  margin: 0 auto 15px auto;
}

.servico-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0C2146;
  margin-bottom: 10px;
}

.servico-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 15px;
}

.servico-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.servico-card li {
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.servico-card li::before {
  content: "•";
  color: #D94848;
  font-size: 18px;
  line-height: 1;
}

/* === Seção Sobre Nós === */
.sobre {
  padding: 80px 40px;
  background-color: #0C2146;
  scroll-margin-top: 80px;
}

.sobre-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.sobre-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.sobre-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.sobre-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: white;
  font-weight: 800;
}

.sobre-left p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.sobre-left p strong {
  color: #D94848;
}

.estatisticas {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.estatistica {
  text-align: center;
}

.estatistica strong {
  display: block;
  font-size: 24px;
  color: #D94848;
  font-weight: 800;
  margin-bottom: 5px;
}

.estatistica span {
  color: #cccccc;
  font-size: 14px;
}

.sobre-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.sobre-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.sobre-right h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: white;
  font-weight: 700;
}

.valores {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.valor {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.valor:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.valor-icon {
  background-color: #D94848;
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
  flex-shrink: 0;
}

.valor-content h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: white;
  font-weight: 600;
}

.valor-content p {
  margin: 0;
  font-size: 14px;
  color: #cccccc;
  line-height: 1.5;
}

/* === Seção Contato === */
.contato {
  padding: 80px 40px;
  background-color: #f7f9fc;
  scroll-margin-top: 80px;
}

.contato-header {
  text-align: center;
  margin-bottom: 60px;
}

.contato-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0C2146;
  font-weight: 800;
}

.contato-header p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contato-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* === Informações de Contato === */
.contato-info {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.contato-info.animate {
  opacity: 1;
  transform: translateX(0);
}

.contato-info h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #0C2146;
  font-weight: 700;
}

.info-section {
  margin-bottom: 35px;
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0C2146;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #D94848;
  display: inline-block;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.info-card:hover {
  background: #e9ecef;
}

.info-icon {
  background-color: #0C2146;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}

.info-content {
  flex: 1;
}

.info-content strong {
  display: block;
  font-size: 14px;
  color: #0C2146;
  margin-bottom: 2px;
  font-weight: 600;
}

.info-content span {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* === Formulário de Contato === */
.contato-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.contato-form.animate {
  opacity: 1;
  transform: translateX(0);
}

.contato-form h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #0C2146;
  font-weight: 700;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0C2146;
  font-size: 14px;
}

.form-group label .required {
  color: #D94848;
  margin-left: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0C2146;
  box-shadow: 0 0 0 3px rgba(12, 33, 70, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0C2146;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 14px;
  color: #666;
  cursor: pointer;
  line-height: 1.4;
  margin-bottom: 0;
}

.submit-btn {
  background: #0C2146;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.submit-btn:hover {
  background: #0a1a36;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn::before {
  content: "✈";
  font-size: 14px;
}

.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background-color: white;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.form-group select:focus {
  outline: none;
  border-color: #0C2146;
  box-shadow: 0 0 0 3px rgba(12, 33, 70, 0.1);
}

.form-group select:hover {
  border-color: #0C2146;
}

/* === Footer Section === */
footer {
  background-color: #0C2146;
  color: white;
  padding: 60px 40px 30px 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  background-color: #D94848;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.footer-logo-text span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #cccccc;
}

.footer-description {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #D94848;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  position: relative;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: block;
  padding: 4px 0;
}

.footer-links a:hover {
  color: white;
  padding-left: 8px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background-color: #D94848;
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 4px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #cccccc;
}

.contact-icon {
  width: 20px;
  height: 20px;
  background-color: #D94848;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.contact-item a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.footer-bottom a {
  color: #D94848;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

/* RESPONSIVIDADE */

/* Tablets grandes e laptops pequenos */
@media (max-width: 1024px) {
  .hero {
    gap: 40px;
    padding: 0 30px;
  }

  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .servicos {
    padding: 60px 30px;
  }

  .sobre {
    padding: 60px 30px;
  }

  .sobre-container {
    gap: 40px;
  }

  .estatisticas {
    gap: 30px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  .logo {
    font-size: 16px;
  }

  nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    padding: 120px 20px 60px 20px;
    height: auto;
    min-height: 100vh;
    gap: 40px;
    scroll-margin-top: 0;
  }

  .left,
  .right {
    max-width: 100%;
    text-align: center;
  }

  .hero-logo {
    max-width: 300px;
    margin: 0 auto 20px auto;
  }

  .slogan {
    font-size: 20px;
  }

  .descricao {
    font-size: 16px;
  }

  .right .box {
    max-width: 100%;
    margin: 0 auto 40px auto;
    z-index: 10;
  }

  .servicos {
    padding: 50px 20px 60px 20px;
    /* Reduzido padding-top */
    scroll-margin-top: 100px;
    /* Ajustado */
  }

  .servicos h2 {
    font-size: 28px;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sobre {
    padding: 50px 20px 60px 20px;
    /* Reduzido padding-top */
    scroll-margin-top: 100px;
    /* Ajustado */
  }

  .sobre-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-left h2 {
    font-size: 28px;
  }

  .estatisticas {
    justify-content: center;
    gap: 50px;
  }

  .valores {
    gap: 20px;
  }

  .logo-img {
    height: 35px;
  }

  .logo {
    gap: 8px;
  }

  .contato {
    padding: 60px 20px;
  }

  .contato-header h2 {
    font-size: 28px;
  }

  .contato-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contato-info,
  .contato-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Smartphones */
@media (max-width: 480px) {
  header {
    padding: 10px 15px;
  }

  .logo {
    font-size: 14px;
  }

  nav ul {
    gap: 15px;
    font-size: 14px;
  }

  .hero {
    padding: 100px 15px 40px 15px;
    gap: 30px;
    scroll-margin-top: 0;
  }

  .hero-logo {
    max-width: 250px;
  }

  .slogan {
    font-size: 18px;
  }

  .descricao {
    font-size: 14px;
  }

  .right .box {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
    margin-bottom: 30px;
    z-index: 10;
  }

  .right .box strong {
    font-size: 20px;
  }

  .servico {
    width: 100%;
    padding: 15px 20px;
    font-size: 14px;
  }

  .servicos {
    padding: 40px 15px 50px 15px;
    /* Reduzido padding-top ainda mais */
    scroll-margin-top: 90px;
    /* Ajustado */
  }

  .servicos h2 {
    font-size: 24px;
  }

  .servicos p {
    font-size: 14px;
  }

  .servico-card {
    padding: 25px 15px;
  }

  .servico-card .icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .servico-card h3 {
    font-size: 16px;
  }

  .servico-card p {
    font-size: 14px;
  }

  .servico-card li {
    font-size: 13px;
  }

  .sobre {
    padding: 40px 15px 50px 15px;
    /* Reduzido padding-top ainda mais */
    scroll-margin-top: 90px;
    /* Ajustado */
  }

  .sobre-left h2 {
    font-size: 24px;
  }

  .sobre-left p {
    font-size: 14px;
  }

  .sobre-right h3 {
    font-size: 20px;
  }

  .estatisticas {
    gap: 30px;
  }

  .estatistica strong {
    font-size: 20px;
  }

  .estatistica span {
    font-size: 12px;
  }

  .valor {
    padding: 15px;
  }

  .valor-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .valor-content h4 {
    font-size: 16px;
  }

  .valor-content p {
    font-size: 13px;
  }

  .logo-img {
    height: 30px;
  }

  .logo {
    gap: 6px;
  }

  .contato {
    padding: 40px 15px;
  }

  .contato-header h2 {
    font-size: 24px;
  }

  .contato-info,
  .contato-form {
    padding: 25px 15px;
  }

  .contato-info h3,
  .contato-form h3 {
    font-size: 20px;
  }

  .info-card {
    padding: 12px;
  }

  .info-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 14px;
  }
}

/* Smartphones muito pequenos */
@media (max-width: 320px) {
  .hero {
    padding: 140px 15px 40px 15px;
    scroll-margin-top: 0;
  }

  .hero-logo {
    max-width: 200px;
  }

  .slogan {
    font-size: 16px;
  }

  .descricao {
    font-size: 13px;
  }

  .right .box {
    padding: 20px;
    gap: 15px;
    margin-bottom: 25px;
    z-index: 10;
  }

  .right .box strong {
    font-size: 18px;
  }

  .servicos {
    padding: 30px 10px 40px 10px;
    /* Reduzido padding-top consideravelmente */
    scroll-margin-top: 80px;
    /* Ajustado */
  }

  .servicos h2 {
    font-size: 22px;
  }

  .servico-card {
    padding: 20px 10px;
  }

  .sobre {
    padding: 30px 10px 40px 10px;
    /* Reduzido padding-top consideravelmente */
    scroll-margin-top: 80px;
    /* Ajustado */
  }

  .sobre-left h2 {
    font-size: 22px;
  }

  .sobre-right h3 {
    font-size: 18px;
  }

  .estatisticas {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .valor {
    padding: 12px;
    gap: 12px;
  }

  .valor-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .valor-content h4 {
    font-size: 14px;
  }

  .valor-content p {
    font-size: 12px;
  }
}

html {
  scroll-behavior: smooth;
}

/* Footer Responsividade */
@media (max-width: 1024px) {
  .footer-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 40px 20px 20px 20px;
  }

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

  .footer-logo {
    justify-content: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a::before {
    display: none;
  }

  .footer-links a:hover::before {
    width: 0;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 30px 15px 15px 15px;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-logo-img {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer-logo-text {
    font-size: 16px;
  }

  .footer-description {
    font-size: 13px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-links a,
  .contact-item {
    font-size: 13px;
  }
}