/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* PALETA TOP */
:root {
    --amarelo: #f6c445;
    --coral: #f28c6f;
    --coral-hover: #e57456;
    --creme: #fff8f0;
    --texto: #4a3f35;
}

/* BASE */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--creme);
}

/* HEADER */
header {
    background-color: var(--amarelo);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
}

header img {
    height: 70px;
}

/* MENU */
nav a {
    text-decoration: none;
    background-color: var(--coral);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    margin-left: 10px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    background-color: var(--coral-hover);
    transform: scale(1.05);
}

/* MAIN */
main {
    flex: 1;
}

/* SEÇÕES */
.section-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    margin-bottom: 60px;
}

/* BALÃO */
.overlay {
    background: rgba(255, 255, 255, 0.96);
    padding: 60px 80px;
    border-radius: 30px;
    max-width: 1000px;
    width: 85%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* TEXTOS */
.overlay h1 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--texto);
}

.overlay h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--texto);
}

.overlay p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #6b5b52;
}

/* BOTÕES */
.btn {
    display: inline-block;
    background-color: var(--coral);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 20px;
}

.btn:hover {
    background-color: var(--coral-hover);
    transform: scale(1.05);
}

/* IMPACTO */
.impacto {
    text-align: center;
    padding: 70px 20px;
}

.impacto h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--texto);
}

.cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    background-color: var(--coral);
    color: white;
    padding: 30px;
    border-radius: 25px;
    width: 220px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card:hover {
    transform: scale(1.05);
}

.card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background-color: var(--amarelo);
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: var(--texto);
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.whatsapp img {
    width: 60px;
    transition: 0.3s;
}

.whatsapp img:hover {
    transform: scale(1.1);
}
/* ===== PÁGINA CAMPANHAS ===== */

.album-section {
    padding: 80px 20px;
    text-align: center;
}

.album-section h1 {
    font-size: 36px;
    margin-bottom: 60px;
}

/* GRID DO ÁLBUM */
.album {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* CARD ESTILO ÁLBUM */
.foto-card {
    background: white;
    padding: 25px;
    border-radius: 25px;

    width: 400px;
    height: 630px; /* altura maior */

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    justify-content: space-between; /* texto fixo no rodapé */
}

.foto-card:hover {
    transform: scale(1.03);
}

/* IMAGEM */
.foto-card img {
    width: 100%;
    height: 520px; /* aumentada para não cortar rosto */
    object-fit: cover; /* mantém proporção elegante */
    border-radius: 18px;
}

/* TEXTO DA FOTO */
.foto-card p {
    font-weight: bold;
    color: var(--texto);
    margin-top: 15px;
    font-size: 17px;
}

/* CAIXA INSTAGRAM */
.instagram-box {
    background: white;
    padding: 60px;
    border-radius: 30px;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* BOTÃO INSTAGRAM */
.insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.insta-icon {
    width: 20px;
    height: 20px;
}