/* Estilos da Seção de Contato */
.contact-section {
  background: #FAFAFA;
  color: #2c3e50;
  padding: 80px 20px;
  position: relative;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #2c3e50;
}

.contact-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #666;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  width: 300px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #e0e0e0;
}

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

.contact-icon {
  width: 70px;
  height: 70px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #2c3e50;
  font-size: 1.8rem;
  border: 2px solid #e0e0e0;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  word-break: break-all;
  color: #555;
}

.copy-btn, .action-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  margin-top: 10px;
  font-weight: 600;
}

.copy-btn {
  background: #e0e0e0;
  color: #2c3e50;
}

.copy-btn:hover {
  background: #d0d0d0;
}

.action-btn {
  background: #2c3e50;
  color: white;
  text-decoration: none;
}

.action-btn:hover {
  background: #1a2634;
}

/* Responsividade */
@media (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-card {
    width: 100%;
    max-width: 350px;
  }
  
  .contact-section h2 {
    font-size: 2.5rem;
  }
}