* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

body {
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

header {
  background: linear-gradient(120deg, #0f4c81, #00a8ff);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

header h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

header p {
  font-size: 20px;
  opacity: 0.9;
}

.header-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 12px 25px;
  background: #ff6b00;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.btn:hover {
  background: #ff8700;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #0f4c81;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 700;
  color: #0f4c81;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

th {
  background: #f0f4f8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.highlight {
  background: #eaf6ff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
}

footer {
  background: #0f4c81;
  color: white;
  text-align: center;
  padding: 30px;
  margin-top: 40px;
}

img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 15px;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 32px;
  }
}

.sponsors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 20px;
  align-items: stretch;
}

.sponsors a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: white;
  border-radius: 10px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.sponsors a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sponsors img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.sponsor-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 40px 0 20px 0;
  color: #666;
  font-weight: 600;
}

.sponsor-divider::before,
.sponsor-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.sponsor-divider span {
  padding: 0 15px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.palmares-table th,
.palmares-table td {
  padding: 0rem 0rem;
  text-align: left;
}