<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* style.css - Estilo base da landing page */

body {
  font-family: 'Open Sans', sans-serif;
}

.navbar-nav .nav-link {
  transition: color 0.3s, background-color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd; /* Bootstrap primary */
  background-color: rgba(13, 110, 253, 0.1);
  border-radius: 5px;
}

/* Estilo da SessÃ£o Hero */
.hero {
  background-image: url('images/fotos/corridadobatom-86-1081-011-min.jpg');
  background-size: cover;
  background-position: center;
  min-height: 90vh;
}

.hero-box {
  background: rgba(1, 141, 141, 0.8); /* 80% de opacidade */
  color: #fff;
  padding: 1rem;
  border-radius: 16px;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 10vh;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Linha dupla no Hero */
.double-line {
  border: 0;
  border-top: 3px double #fff;
  width: 180px;
  margin: 0 auto 1rem auto;
}

.evento-info {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.evento-info .double-line {
  border-top: 3px double #fff;
  width: 100px;
  margin-bottom: 1.5rem;
}

.evento-info .d-flex &gt; div {
  font-size: 1.25rem;      /* aumenta o tamanho do texto */
  color: #fff;             /* cor do texto */
  font-weight: 500;        /* deixa o texto mais forte */
  letter-spacing: 0.5px;
}

.evento-info i {
  color: #ffe066;          /* cor dos Ã­cones (amarelo Rotary) */
  font-size: 1.4em;        /* aumenta o tamanho dos Ã­cones */
  vertical-align: middle;
  margin-right: 0.5em;
}

/* Responsivo para telas menores */
@media (max-width: 576px) {
  .evento-info .d-flex &gt; div {
    font-size: 1rem;
  }
  .evento-info .double-line {
    width: 60px;
  }
}

/* SeÃ§Ã£o Sobre a Corrida */
#sobre, #inscricao, #galeria {
  background-color: #e6e5d8;
  margin-left: 5px;
  margin-right: 5px;
  padding: 2rem;
}

/* SeÃ§Ã£o InformaÃ§Ãµes - acordeÃ£o */
.accordion-button {
  font-weight: 600;
  color: #018d8d;
  background-color: #f8f9fa;
  transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #018d8d;
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #018d8d;
}

.accordion-body {
  background-color: #fffef9;
  font-size: 0.95rem;
}

/* BotÃ£o de inscriÃ§Ã£o personalizado */
.btn-inscreva {
  background-color: #018d8d;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  transition: background-color 0.3s ease;
}

.btn-inscreva:hover {
  background-color: #016d6d;
  color: #fff;
}

/* SeÃ§Ã£o Patrocinadores
/* Logos por categoria */
.logo-master {
  max-height: 140px;
}

.logo-diamante {
  max-height: 100px;
}

.logo-ouro {
  max-height: 80px;
}

.logo-prata {
  max-height: 70px;
}

.logo-apoio {
  max-height: 60px;
}

/* Alinhar logos e adicionar espaÃ§amento */
.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AnimaÃ§Ã£o fade-in suave */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  animation: fadeIn 1s ease both;
}
</pre></body></html>