/* RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(#d32f2f, #b71c1c);
    color: white;
}

/* TOPO */
header {
    padding: 20px;
}

/* BLOCO SUPERIOR */
.topo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* LOGO */
.logo {
    width: 75px;
    height: 75px;
}

/* BLOCO TEXTO */
.titulo-bloco {
    display: flex;
    flex-direction: column;
}

/* TÍTULO */
h1 {
    margin: 0;
    font-size: 32px;
}

/* SUBTÍTULO */
.subtitulo {
    margin: 3px 0 0 0;
    font-size: 15px;
    opacity: 0.9;
}

/* BUSCA */
#search {
    width: 95%;
    margin: 15px auto 0 auto;
    display: block;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
}

/* BOTÕES */
.botoes {
    padding: 15px;
}

button {
    width: 100%;
    padding: 18px;
    margin: 10px 0;
    border-radius: 15px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    background: #eeeeee;
    color: #c62828;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    transform: scale(1.02);
}

/* ÁREA */
#area {
    background: white;
    color: black;
    margin: 15px;
    padding: 15px;
    border-radius: 15px;
    min-height: 80px;
}

/* RODAPÉ */
footer {
    padding: 20px;
}

/* BANNERS */
.banners {
    display: flex;
    gap: 15px;
}

/* CARD */
.banner {
    flex: 1;
    display: flex;
    align-items: center;
    background: linear-gradient(#ffffff, #eeeeee);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: black;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* IMAGEM */
.banner img {
    width: 120px;
    height: 100%;
    object-fit: cover;
}

/* TEXTO */
.texto {
    padding: 10px;
}

/* TÍTULO DO BANNER */
.texto strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    text-transform: uppercase; /* 🔥 deixa tudo em maiúsculo */
}

/* BOTÃO */
.texto span {
    background: #2e7d32;
    color: white;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
}