/* Estilos globais para o site Sumimus */

/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0a3d62; /* Azul petróleo */
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: #0a3d62; /* Azul petróleo */
  transition: color 0.3s ease;
}

a:hover {
  color: #d4af37; /* Dourado discreto */
}

ul {
  list-style: none;
}

/* Cabeçalho */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a3d62; /* Azul petróleo */
}

.main-nav ul {
  display: flex;
}

.main-nav li {
  margin-left: 25px;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Seletor de idiomas */
.language-selector {
  position: relative;
}

.language-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #0a3d62;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.language-btn:hover {
  background-color: #f5f5f5;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  min-width: 120px;
  display: none;
  z-index: 1001;
}

.language-dropdown.show {
  display: block;
}

.language-dropdown a {
  display: block;
  padding: 8px 15px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.language-dropdown a:hover {
  background-color: #f5f5f5;
}

.language-dropdown a.active {
  background-color: #e6f2ff;
  color: #0a3d62;
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0a3d62 0%, #1e5f8a 100%);
  color: #fff;
  padding: 150px 0 100px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: #d4af37; /* Dourado discreto */
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: #c19b26;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Seções gerais */
section {
  padding: 80px 0;
}

section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 15px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #d4af37; /* Dourado discreto */
}

/* Sobre */
.about {
  background-color: #f9f9f9;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-card h3 {
  color: #0a3d62;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.map-interactive {
  margin-top: 20px;
  background-color: #e6f2ff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: #0a3d62;
}

.about-card ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.bullet {
  color: #d4af37;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Serviços */
.services {
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: #0a3d62;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #555;
}

.service-card ul {
  margin-bottom: 20px;
}

.service-card ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.service-btn {
  margin-top: auto;
  background-color: #0a3d62;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.service-btn:hover {
  background-color: #0c4b7a;
}

/* Setores */
.sectors {
  background-color: #f9f9f9;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sector-card {
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sector-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.sector-card.mining {
  background: linear-gradient(135deg, #5d4037 0%, #795548 100%);
}

.sector-card.agribusiness {
  background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tag {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* Ásia */
.asia {
  background-color: #fff;
}

.asia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.asia-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.asia-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background-color: #0a3d62;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon {
  font-size: 1.8rem;
  color: #fff;
}

.asia-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.export-chart {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.chart-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 300px;
  margin-bottom: 30px;
}

.chart-bar {
  width: 60px;
  background-color: #0a3d62;
  margin: 0 15px;
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.5s ease;
}

.chart-bar.projection {
  background-color: #d4af37;
}

.year {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
}

.chart-caption {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
}

.chart-note {
  font-size: 0.8rem;
  color: #777;
  font-style: italic;
}

/* Sustentabilidade */
.sustainability {
  background-color: #f9f9f9;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sustainability-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sustainability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sustainability-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.sustainability-card .tag {
  background-color: #0a3d62;
  margin-top: 20px;
}

/* Liderança */
.leadership {
  background-color: #fff;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.leader-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.leader-image {
  width: 120px;
  height: 120px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.leader-card h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.leader-position {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Prova Social */
.social-proof {
  background-color: #f9f9f9;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.case-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding-left: 60px;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.case-number {
  position: absolute;
  left: 20px;
  top: 25px;
  width: 30px;
  height: 30px;
  background-color: #0a3d62;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonials h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.testimonial {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.quote {
  font-style: italic;
  position: relative;
  padding: 0 20px;
}

.quote::before, .quote::after {
  content: '"';
  font-size: 1.5rem;
  color: #d4af37;
  position: absolute;
}

.quote::before {
  left: 0;
  top: -5px;
}

.quote::after {
  right: 0;
  bottom: -15px;
}

.author {
  margin-top: 20px;
  text-align: right;
}

.author-name {
  font-weight: 700;
  margin-bottom: 0;
}

.author-company {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0;
}

/* Contato */
.contact {
  background-color: #fff;
}

.contact-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
}

.contact-form {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

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

.submit-btn {
  background-color: #0a3d62;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #0c4b7a;
}

.contact-info {
  padding: 30px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #0a3d62;
}

.info-list, .offices-list {
  margin-bottom: 30px;
}

.info-list li, .offices-list li {
  margin-bottom: 10px;
  color: #555;
}

.contact-info h4 {
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0a3d62;
}

/* Footer */
.footer {
  background-color: #0a3d62;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  display: inline-block;
}

.footer-logo p {
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #d4af37;
}

.footer-links ul li, .footer-contact ul li, .footer-languages ul li {
  margin-bottom: 10px;
}

.footer-links a, .footer-languages a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover, .footer-languages a:hover, .footer-languages a.active {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsividade */
@media (max-width: 1024px) {
  .about-grid, .services-grid, .sustainability-grid, .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .asia-grid, .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
  
  .main-nav {
    display: none; /* Simplificado para versão estática */
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .about-grid, .services-grid, .sectors-grid, .asia-grid, 
  .sustainability-grid, .leadership-grid, .cases-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .chart-container {
    height: 200px;
  }
  
  .chart-bar {
    width: 40px;
    margin: 0 10px;
  }
  
  .case-card {
    padding: 20px;
    padding-left: 50px;
  }
  
  .case-number {
    left: 15px;
    top: 20px;
  }
}
