@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #ffffff;
}


/* barra de navegação */
 .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 30px;
    background-color: #ffffff;
    color: #0B4E9A;
    
  }

  .navbar-left{
    display: flex;
  }

  .navbar-center{
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  
  .navbar-center h1 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 800;
  }
  .navbar-center p {
    color: #333333;
    margin: 0;
    font-size: 20px;
  }
  
  .navbar-right .contact-link {
    color: #0B4E9A;
    text-decoration: none;
    font-size: 1em;
  }
  
  .navbar-right .contact-link:hover {
    text-decoration: underline;
  }

  .navbar img{
    width: 17rem;
    height: auto;
  }

  .navbar-right p{
    font-size: 1.3rem;
    margin: 4px;
  }

    /* Section 1 banner */

.banners {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  height: 500px;
  background-image: url('../images/banner\ ideia.png'); /* Substitua pelo nome real da imagem do banner */
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.texto-banner {
  max-width: 610px;
  text-align: left;
}

.texto-banner h1 {
  font-size: 45px;
  line-height: 1.2;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

.texto-banner h1 span {
  color: #ffd600;
  font-size: 75px;
 
}

.texto-banner p {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.5;
  color: white;
  
}

  /* Estilo lista */
        .lista-container {
            margin: auto;
            border-radius: 12px;
            padding: 30px 40px;
        }

        .lista-container h2 {
            margin-top: 0;
            font-size: 24px;
            color: #333;
            margin-bottom: 25px;
            text-align: center;
        }

        .letra-secao {
            font-size: 20px;
            font-weight: bold;
            color: #007bff;
            margin-top: 30px;
            margin-bottom: 10px;
            border-bottom: 1px solid #007bff;
            padding-bottom: 5px;
        }

        ul.lista-ideias {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        ul.lista-ideias li {
            background-color: #f9fafe;
            margin-bottom: 12px;
            padding: 15px 20px;
            border-left: 4px solid #007bff;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        ul.lista-ideias li:hover {
            background-color: #e9f2ff;
            transform: translateX(4px);
            cursor: pointer;
        }

        ul.lista-ideias li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 17px;
            display: block;
        }

        ul.lista-ideias li a::after {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #007bff;
            font-weight: bold;
            font-size: 18px;
            opacity: 0.6;
        }

        @media (max-width: 600px) {
            .lista-container {
                padding: 20px;
            }

            ul.lista-ideias li a {
                font-size: 16px;
            }
        }

@media (max-width: 1024px) {
.banners{
    display: none;
}
.navbar {
    flex-direction: column;
}

.navbar-center h1 {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.navbar-center p {
    font-size: 18px;
    line-height: 1.2;

}

}


footer {
    background-color: #064081;
    text-align: center;
    padding: 50px;
    font-size: 18px;
    color: #ffffff;
}