*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    width: 100%;
}
body {
    font-family: arial, sans-serif;
    background: #f9f9f9;
}
*{
    scroll-behavior: smooth;
}
section {
    padding: 60px 20px;
}
.cabecario {
    width: 100%;
     min-height: 100vh;
    background-image: url('../imagens/cabecario.jpg');
    background-position: center;
    background-size: cover;
}
.cabecario h2 {
   color: white;
   font-weight: bold;
   font-family: sans-serif;
   text-align: center;   
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.logo img {
     width: 30px;
     height: auto;
}
.hero {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     height: 100vh;
}
.balcao {
     background: rgba(255, 255, 255, 0.85);
     backdrop-filter: blur(12px);
     padding: 20px;
     border-radius: 20px;
     max-width: 400px;
     text-align: left;
     margin-bottom: 20px;   
     border: 3px solid rgba(201, 197, 197, 0.7)
}
.balcao h1 {
    font-size: 24px;
    margin-bottom: 10px;
}
.balcao p {
    font-size: 14px;
    color: #555;
}
.balcao,
.formulario{
    box-shadow: 0 10px 25px rgba(0,0,0,0.7)
}
.formulario {
    background: #2d2f35;
    padding: 20px;
    border-radius: 15px;
    width: 350px;
    text-align: center;
    border: 3px solid #555;
}
.formulario h3 {
    color: white;
    margin-bottom: 10px;
}
.formulario input {
    width: 70%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
}
.formulario button {
    padding: 10px 15px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg,#5c6ac4,#7a86ff);
    transition: 0.5s;
    color: white;
    cursor: pointer;
    font-weight: bold;
}
.formulario button:hover {
    background:linear-gradient(135deg,#283792,#5c6ac4);
    transform: scale(1.05);
}
.beneficios {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.card {
    background: rgba(255, 255, 255, 0.85);
     backdrop-filter: blur(12px);
     padding: 20px;
     border-radius: 15px;
     width: 250px;
     box-shadow: 0 5px 15px rgba(0,0,0,0.1);
     transition: 0.3s
}
.card:hover {
    transform: translateY(-8px);
}
.sobre {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    flex-wrap: wrap;
}
.sobre img {
width: 300px;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.cta {
    background: #2d2f35;
    border: 3px solid #555;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 60px 20px;
    border-radius: 15px;   
}
.cta {
    background: linear-gradient(135deg, #2d2f35, #555); 
}
.cta button {
    margin-top: 20px;
    padding: 12px 25px;
   border-radius: 10px;
    border: none;
    background: linear-gradient(135deg,#5c6ac4,#7a86ff);
    transition: 0.5s;
    color: white;
    cursor: pointer;
    font-weight: bold;
}
.cta button:hover {
background:linear-gradient(135deg,#283792,#5c6ac4);
    transform: scale(1.05);
}
.sobre,
.cta {
     box-shadow: 0 10px 25px rgba(0,0,0,0.3)
}
.footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer h2,
.footer h3 {
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
  color: #ccc;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #5c6ac4;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
}
.footer-logo img {
     width: 30px;
    height: auto;
}
.footer {
    padding: 40px 20px;
}
#mensagem {
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}