@charset "utf-8";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/*//////// ( PERSONALIZAÇÃO PADRÃO ) ////////*/

:root {
  --cinza: #647c84;
  --cinza-claro: #637882;
  --laranja: #fb5141;
  --verde: #04bc04;
  --azul: #057cc4;
  --cinza-claro: #e1d6d5;
  --branco: #fff;
}

html {
  scroll-behavior: smooth 1500ms;
  overflow-x: hidden;
}

body {
	font-family: 'Poppins', sans-serif;
	color: #637882;
}

.navbar {
	padding-top: 0;
	padding-bottom: 0;
	height: 80px;
	background: #fff;
	z-index: 15;
	top: 0;
}

.navbar-brand img {
	width: 100px;
}

.custon-icon {
  color: #000;
  font-size: 25px;
  font-weight: bold;
  box-shadow: #000;
}

.navbar-nav {
  background-color: transparent; 
  position: relative; 
}

.navbar-toggler.hamburger-button:focus + .navbar-collapse .navbar-nav::before {
  background-color: rgb(255, 255, 255); 
  z-index: 0;
}


a, a:active, a:focus, a:visited {
	color: #ff4f40;
	transition: 0.2s;
	font-weight: 600;
	text-decoration: none;
}

a:hover {
	color: #db392b;
	transition: 0.2s;
} 

a.nav-link {
	font-weight: 600;
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.dropend .dropdown-toggle {
  color: salmon;
  margin-left: 1em;
}
.dropdown-item:hover {
  background-color: lightsalmon;
  color: #fff;
}
.dropdown .dropdown-menu {
  display: none;
}
.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
  margin-top: 0.125em;
  margin-left: 0.125em;
}

.header-home {
  width: 100%;
}

.header-home img {
  width: 100%;
  height: 95vh;
}

.header-home .container {
  position: relative;
  z-index: 2;
}

section.nome-projeto h3 {
  font-size: 2rem;
  margin-top: -80px;
  padding-bottom: 130px;
}

section.apresentacao {
	padding-bottom: 80px;
}

section.sobre {
	padding-bottom: 80px;
}

.container-seta {
  position: fixed;
  right: 40px;
  bottom: 60px;
  z-index: 998;
  width: 50px;
  height: 50px; 
  background-color: var(--azul); 
  border-radius: 50%; 
  text-align: center;
}

.seta-up img {
  padding-top: 3px;
  width: 80%;
  height: auto;
}

.contador {
  z-index: 20; 
  min-height: 400px;
  background:#fff;
}

.circle {
  width: 60px; 
  height: 60px; 
  background-color: transparent; 
  border: 2px solid #db392b;
  border-radius: 50%; 
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; 
}

.circle img {
  width: 60px; 
  height: 40px; 
}

.contador-start {
    font-family: 'Courgette', cursive;
    font-size: 25px;
    color: #db392b;
}

/*//////// PAGINA ( SOBRE ) ////////*/

div.moldura {
    display: flex;
    background-color: rgb(255, 255, 255);
    flex-direction: column;
    backdrop-filter: blur(5px);
    text-align: justify;
    padding: 5vh;
    margin-top: 10px;
    margin-bottom: 10px;
    /* text-indent: 5rem; */
    box-sizing: content-box;
    border-radius: 15px;
    border: 1px solid #ff473861;
}

div.moldura > h3 {
    position: relative;
    left: -5vh;
    width: calc(100% + 10vh);
    margin-top: -35px;
    padding: 1.5vh;
    border-radius: 15px 15px 0px 0px;

    background-color: var(--laranja);
    color: var(--branco);

    font-size: calc(1.375rem + 1.5vw);
    text-indent: 0;
    text-align: center;
}

div.moldura > p {
    font-size: 1em;
}

.logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 80px;
}
.logos > img {
  width: 180px;
}
img.logo-especial {
  height: 120px;
  width: auto;
}

/*//////// CARDS (AGENDA, PROJETO) ////////*/

.card-body :nth-child(1) {
  transition-delay: 1000ms;
}

.imagem-card {
  width: 100%;
  height: 350px; 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.main-timeline-2 {
  position: relative;
}

.main-timeline-2::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #db392b;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-2 {
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-2::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -11px;
  background-color: #db392b;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left-2 {
  padding: 0px 40px 20px 0px;
  left: 0;
}

.right-2 {
  padding: 0px 0px 20px 40px;
  left: 50%;
}

.left-2::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: medium solid var(--branco);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--branco);
}

.right-2::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 30px;
  border: medium solid var(--branco);
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--branco) transparent transparent;
}

.right-2::after {
  left: -14px;
}

/*//////// PAGINA ( PARTICIPE ) ////////*/

.form-control, .form-select {
  background-color: #ffffff96;
  width: 50%;
}

.moldura {
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  background-color: var(--branco);
  padding: 5vh 5vh;
  border: 1px solid var(--cinza);
  border-radius: 10px;
}

.modlura > div.testando {
  display: flex;
}

h6 {
  margin-right: 1vh;
  font-weight: 700;
  color: var(--cinza);
}

#ciclistas-header {
  margin-left: -5vh;
  background-color: #ff4f40;
  border-radius: 25px 25px 0px 0px;
}

#ciclistas {
  width: calc(100% + 10vh);
  margin-left: -5vh;
  margin-bottom: -5vh;
  padding-left: 5vh;
  border-radius: 25px 25px 0px 0px;
  /* background-color: #ff473861; */
}

#ciclistas-header > h5, #ciclistas-header p {
  text-align: center;
  color: var(--branco);
}

div.sesim, .sesim2, .sesim3{
  display: none;
}

/* div.btn {
  display: flex;
  justify-content: center;
  width: 35pc;
  height: 5pc;
  padding: 0;
  margin: 5vh 5vh;
} */

div.btn > input {
  background-color: #ff3927;
  height: 100%;
  width: 100%;
  border: 0;
}

div.btn > input:hover {
  background-color: #fc5c4e;
  color: var(--branco);
  
}


.form-check-input:checked {
  background-color: #fd810d !important;
  border-color: #fd810d !important;
}
.form-check-input[type=checkbox] {
  border-radius: 50% !important;
}

/*//////// PAGINA ( PROJETO ) ////////*/

.text-projeto1 img {
  width: 100%;
} 

.column{
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.image-container {
  position: relative;
  cursor: pointer;
}

.image-container img {
  width: 40%;
  height: 60vhvh;
  transition: transform 0.3s;
}

.image-container.expanded img {
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 9999;
  cursor: zoom-out;
}
/*//////// PAGINA ( CONTATO ) ////////*/
section.contact {
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 14rem;
  height: 50vh;
  padding: 0;
  margin-bottom: 3%;
}

.container-contato {
  width: 100%;
  background-color: white;
  max-width: 600px; /* Define a largura máxima do contêiner para evitar que fique muito largo em telas grandes. Ajuste conforme necessário. */
}

.contact h3{
  font-size: 2.5em;
  font-weight: 400;
  color: #ff6f5c;
  text-transform: uppercase;
  margin: 0 auto;
  border-bottom: 2px solid #ff6f5c;
  max-width: 520px;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
}

.contact p{
	font-size:1.2em;
	font-weight:400;
	color: #ff6f5c;
	margin:1em 0em 4em;
	text-align:center;
}

.container-contato{
  width: 100%;
  height: 70vh;
  background-color: white;
}

.conteudo-form {
  margin-top: -4%;
  margin-bottom: 5%;
}

div.agrupar-form {
  display: flex;
  justify-content: center;
  gap: 3vh;
  align-items: flex-end;
  width: 165vh;
}

section.forms {
  width: 35vh;
  margin-left: -15vh;
}

.form-contato {
  width: 100%;
  height: 6vh;
  margin-bottom: 5px;
  border: 2px solid rgb(83 76 76);
}

div#opn {
  width: 35vh;
  height: 25vh;
}

.form-contato-txt {
  width: 100%;
  height: 100%;
  border: 2px solid rgb(83 76 76);
}

div.btn-envio {
  display: flex;
  justify-content: space-around;
}

.btn-envio {
  background: #ff6f5c;
	padding: 0.5em 3em;
	color: var(--branco);
	font-size: 19px;
	border-radius:5px;
	text-transform:uppercase;
	font-weight: bold;
	cursor: pointer;
}

.btn-envio:hover {
  background: #ff8a7b;
  color: var(--branco);
}

/*//////// ( FOOTER ) ////////*/
footer {
  width: 100%;
  background-color: #db392b;
  min-height: 250px;
  padding: 10px 0px 25px 0px;
  color: white;
}

footer h5 {
  font-size: 15px;
  margin-bottom: 3%;
  margin-top: 25px;
  margin-bottom: 25px;
}

footer p {
  font-size: 12px;
  margin-bottom: 8px;
}

footer div.bg-logo {
  display: flex;
  width: 130px;
  height: 130px;
  background-color: white;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

footer img {
  padding-top: 10px;
  background-color: rgba(255, 255, 255, 0);
}

footer a, footer a:visited {
  color: white;
}

footer a:hover, footer a:focus {
  color: #ff7569;
}

.txt-footer {
  border-top: 2px solid white;
  margin: 5px 50px;
}


/*//////// ( MEDIA QUERY ) ////////*/

@media screen and (max-width: 995px) { 
  .navbar {
    padding-top: 0;
    padding-bottom: 0;
    height: 100px;
    background: var(--branco);
    z-index: 15;
    top: 0;
  } 

  /* Navbar Menu Hmaburguer Mobile */

  .navbar-active {
    background: rgba(255, 255, 255, 0.9);
    z-index: 999;
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center; 
  }
  
  .navbar-active ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .navbar-active li {
    padding-top: -40px;
    margin: 10px; 
  }
  .navbar-brand img {
    margin-top: -15px;
  }
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }
  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
  
  section.nome-projeto h3 {
    margin-top: -115px;
  }
  
  .agrupar-form {
    background-color: #0704bc;
    display: flex;
    align-items: center;
    gap: 0;
    width: 98vh !important;
  }

  .form-contato-txt {
    padding-left: -20px;
  }

  div#ativacity > img {
    height: 80px;
  }
}

@media screen and (max-width: 992px) {
  .logos {
    flex-direction: column;
  }
}

@media screen and (max-width: 770px) {
  .main-timeline-2::after {
    left: 31px;
  }

  .timeline-2 {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-2::before {
    left: 60px;
    border: medium solid var(--branco);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--branco) transparent transparent;
  }

  .left-2::after,
  .right-2::after {
    left: 18px;
  }

  .left-2::before {
    right: auto;
  }

  .right-2 {
    left: 0%;
  }

  section.nome-projeto h3 {
    margin-top: -200px;
  }

  .agrupar-form {
    background-color: rgb(4, 188, 28);
    display: flex;
    align-items: center;
    gap: 0;
    width: 98vh;
  }

  section.contact {
    padding-top: 18rem;
    padding-bottom: 22rem;
  }

  footer div.bg-logo {
    margin-top: 22px;
    margin-left: 13px;
  }

}