﻿/* Carrossel cards */
.brasil-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all .3s ease;
}

.brasil-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

.card-header img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #003b8e;
  margin-bottom: 6px;
}

.card-body p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.btn-card {
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

/* Seção Serviços */
.services {
  padding: 80px 20px;
  background: var(--bg);
}

.services h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 32px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background: #e6e6e6;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}

.service-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
