/* Valores Corporativos CSS */

:root {
  --primary-color: #ff5e10;
  --secondary-color: #111111;
  --contrast-color: #180838;
  --text-color: #333333;
  --light-bg: #f8f9fa;
  --card-bg: #FFDACF;
}

.valores-section {
  padding: 80px 0;
}

.valores-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.valores-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 20px;
}

.valores-content p strong {
  color: var(--contrast-color);
}

.codigo-etica-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.codigo-etica-image {
  margin-bottom: 20px;
}

.codigo-etica-image img {
  border-radius: 5px;
  max-width: 100%;
}

.codigo-etica-title {
  color: var(--contrast-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.codigo-etica-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.codigo-etica-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .valores-section {
    padding: 60px 0;
  }
  
  .valores-title {
    font-size: 2rem;
  }
  
  .valores-subtitle {
    font-size: 1.1rem;
  }
  
  .valores-content p, 
  .valores-conclusion p {
    font-size: 1rem;
  }
  
  .valores-quote p {
    font-size: 1.2rem;
  }
  
  .valores-image {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .valores-section {
    padding: 40px 0;
  }
  
  .valores-title {
    font-size: 1.8rem;
  }
  
  .valores-subtitle {
    font-size: 1rem;
  }
  
  .valores-quote p {
    font-size: 1.1rem;
  }
}


