/* Estilo já existente do header, rodapé e reset continua igual ao site de eventos */

/* =======================
   SEÇÃO DE OFERTAS FORMATIVAS
   ======================= */

/* =======================
   RESET E BASE
   ======================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

::-webkit-scrollbar {
  width: 0px;
}

/* =======================
   BODY
   ======================= */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* =======================
   HEADER (CABEÇALHO)
   ======================= */
header {
  z-index: 100;
  width: 100%;
  background-color: #004080;
  color: white;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10pt;
  position: sticky;
  top: 0;
  left: 0;
}

header > a {
  text-decoration: none;
  color: white;
}

.logoMarca {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.logoMarca > h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.logoMarca > h3 > a {
  color: white;
  text-decoration: none;
}

.logoMarca > h3 > a:nth-child(1) {
  opacity: 0.6;
}

.logoMarca > h4 {
  font-size: 10pt;
  opacity: 0.6;
  font-weight: 300;
}

/* =======================
   FOOTER (RODAPÉ)
   ======================= */
footer {
  background: none;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.footer-texto {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.ofertas-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.ofertas-header {
  text-align: left;
  margin-bottom: 40px;
}

.ofertas-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.ofertas-header p {
  font-size: 16px;
  color: #666;
}

.ofertas-container {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.oferta-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.oferta-card:hover {
  transform: translateY(-5px);
}

.oferta-info {
  padding: 20px;
}

.oferta-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.oferta-categoria {
  font-size: 13px;
  color: #0073e6;
  margin-bottom: 10px;
  display: block;
}

.oferta-info p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.oferta-local {
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
  display: block;
}

/* .btn-oferta {
  display: inline-block;
  padding: 8px 16px;
  background-color: #004080;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
} */
.oferta-info>a{
  font-size: 10pt;
}
.btn-oferta {
  border: none;
  display: inline-block;
  padding: 8px 14px;
  background-color: #0073e6;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}
.btn-oferta:hover {
    background-color: #0066cc;
}
