.company-results {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.company-results::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.company-results h2 {
  text-align: center;
  color: #1a1a1a;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  position: relative;
}

.company-results h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #C41E3A;
  margin: 15px auto 0;
  border-radius: 2px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.result-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border-left: 4px solid #C41E3A;
  animation: fadeInUp 0.6s ease forwards;
}

.result-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
}

.result-number {
  font-size: 3rem;
  font-weight: 700;
  color: #C41E3A;
  margin-bottom: 0.5rem;
  display: block;
}

.result-label {
  font-size: 1.1rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.result-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* =========================================================
   SEÇÃO DE CONTATO COM BACKGROUND DE IMAGEM
========================================== */
.contact-section {
  position: relative;
  padding: 50px 0;
  background: 
    linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.9)),
    url('../img/quem_somos/bg-section.png') center center / cover no-repeat;
  color: white;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Versões alternativas */
.contact-section.style-soft {
  background: 
    linear-gradient(135deg, rgba(196, 30, 58, 0.8), rgba(26, 26, 26, 0.9)),
    url('../img/contato/contato.png') center center / cover no-repeat;
}

.contact-section.style-dark {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url('../img/contato/contato.png') center center / cover no-repeat;
}

.contact-section.style-gradient {
  background: 
    linear-gradient(45deg, rgba(196, 30, 58, 0.85), rgba(139, 21, 56, 0.9)),
    url('../img/contato/contato.png') center center / cover no-repeat;
}

.contact-section.parallax {
  background-attachment: fixed;
}

/* Versão com fundo sólido (caso queira usar) */
.contact-section.solid-bg {
  background: #1a1a1a !important;
  min-height: auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-info h2 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-info h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #C41E3A;
  margin-top: 10px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.4);
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-details li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.contact-details .icon {
  width: 35px;
  height: 35px;
  background: #C41E3A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.8rem;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.8rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.contact-form h3 {
  color: #1a1a1a;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: #333;
  font-weight: 500;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.6rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #C41E3A;
  background: white;
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
  max-height: 130px;
}

.btn-contact {
  width: 100%;
  background: linear-gradient(135deg, #C41E3A, #8B1538);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-contact:hover {
  background: linear-gradient(135deg, #8B1538, #C41E3A);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.partners-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #DC143C, transparent);
}

.partners-header {
  margin-bottom: 60px;
}

.partners-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
}

.partners-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #DC143C, #ff6b6b);
  border-radius: 2px;
}

.partners-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.partners-logos {
  margin-bottom: 80px;
}

.logos-carousel {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.logos-track {
  display: flex;
  gap: 60px;
  animation: scrollLogos 20s linear infinite;
  width: fit-content;
}

.partner-logo {
  flex-shrink: 0;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
  transition: left 0.5s ease;
}

.partner-logo:hover::before {
  left: 100%;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.logo-img {
  max-width: 80%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-logo:hover .logo-img {
  filter: grayscale(0%);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

.result-item:nth-child(1) { animation-delay: 0.1s; }
.result-item:nth-child(2) { animation-delay: 0.2s; }
.result-item:nth-child(3) { animation-delay: 0.3s; }

.contact-info {
  animation: fadeInUp 0.6s ease forwards;
}

/* =========================================================
   RESPONSIVIDADE
========================================== */
@media (max-width: 768px) {
  .company-results {
    padding: 60px 0;
  }
  
  .company-results h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .result-item {
    padding: 2rem 1.5rem;
  }
  
  .result-number {
    font-size: 2.5rem;
  }
  
  .contact-section {
    padding: 40px 0;
    background-attachment: scroll;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .contact-info h2 {
    font-size: 1.6rem;
  }
  
  .contact-form {
    padding: 1.5rem 1.2rem;
  }
  
  .form-group {
    margin-bottom: 0.8rem;
  }
  
  .partners-section {
    padding: 60px 0;
  }
  
  .partners-title {
    font-size: 2rem;
  }
  
  .partners-subtitle {
    font-size: 1rem;
  }
  
  .logos-track {
    gap: 40px;
  }
  
  .partner-logo {
    width: 150px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .company-results h2 {
    font-size: 1.7rem;
  }
  
  .result-number {
    font-size: 2.2rem;
  }
  
  .contact-section {
    padding: 30px 0;
    min-height: 60vh;
  }
  
  .contact-info h2 {
    font-size: 1.4rem;
  }
  
  .contact-form {
    padding: 1.2rem 1rem;
    margin: 0 0.5rem;
  }
  
  .contact-details li {
    padding: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
  }
  
  .contact-details .icon {
    width: 30px;
    height: 30px;
    margin-right: 0.6rem;
  }
  
  .form-group {
    margin-bottom: 0.7rem;
  }
  
  .form-group textarea {
    min-height: 75px;
  }
  
  .partners-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1.5rem;
  }
  
  .partner-logo {
    width: 120px;
    height: 70px;
  }
}