@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* ======== BASE ======== */

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #faf7f2;
    color: #333;
    display: flex;
    flex-direction: column;
}

/* ======== HEADER ======== */

header {
    background: linear-gradient(135deg, #aec7f8, #3778fd);
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.logo {
    height: 60px;
    width: auto;
}

.menu-btn {
    background: transparent;
    padding: 6px 10px;
    color: white;
    font-size: 16px;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.menu-btn:hover {
    opacity: 0.7;
}

/* ======== CONTEÚDO PRINCIPAL ======== */

main {
    flex: 1;
}

/* ======== CARDS DE PARCEIROS ======== */

.parceiros-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 40px 20px;
}

.card-parceiro {
    background: #ffffffcc;
    backdrop-filter: blur(6px);
    border-radius: 12px;
    width: 300px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    display: flex;
    flex-direction: column;
}

.card-parceiro:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-parceiro img {
  width: 120px;
  height: auto;
  margin: 0 auto 15px auto; /* centraliza horizontalmente */
  display: block; /* garante centralização */
}


.card-parceiro h3 {
    margin-bottom: 10px;
    color: #003366;
}

.card-parceiro p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    flex-grow: 1; /* empurra o botão para baixo */
}

/* ======== BOTÃO PADRONIZADO ======== */

.btn-parceiro {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 45px;
    padding: 0 20px;

    background: #3778fd;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;

    margin-top: 20px;
    transition: 0.2s;
}

.btn-parceiro:hover {
    background: #2d63d1;
}

/* ======== FOOTER ======== */

footer {
    background: #3778fd;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

.contato-botao {
    text-align: center;
    padding: 60px 0;
}

.btn-contato {
    display: inline-block;
    padding: 14px 28px;
    background: #aec7f8;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-contato:hover {
    background: #3778fd;
}

.contato {
  position: relative;
  padding: 40px 0;
  color: white;
}