:root {
    --bg-main: #ffffff;
    --bg-soft: #fdf4f2;
    --primary: #e9b5ad;
    --primary-dark: #c98f86;
    --text-main: #5a4a42;
    --text-soft: #7a6a62;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

section {
    padding: 64px 20px;
}

.container {
    max-width: 960px;
    margin: auto;
}

h1, h2 {
    font-weight: 600;
    margin-bottom: 16px;
}

p {
    color: var(--text-soft);
    margin-bottom: 16px;
}

/* HERO */
.hero {
    background: linear-gradient(180deg, var(--bg-soft), #ffffff);
    text-align: center;
    padding-top: 96px;
}

.hero h1 {
    font-size: 2.2rem;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: auto;
}

.hero {
    position: relative;
    background: linear-gradient(180deg, var(--bg-soft), #ffffff);
    text-align: center;
    padding-top: 96px;
    overflow: hidden;
}

/* imagem decorativa */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    pointer-events: none;
}

/* conteúdo acima da imagem */
.hero-content {
    position: relative;
    z-index: 1;
}


/* PARA QUEM É */
.audience {
    background-color: var(--bg-soft);
}

.audience ul {
    list-style: none;
    margin-top: 24px;
}

.audience li {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

/* POLÍTICA */
.policy a {
    color: var(--primary-dark);
    text-decoration: none;
}

.policy a:hover {
    text-decoration: underline;
}

/* CREDITS */
.credits {
    display: flex;
    justify-content: center;
    padding: 32px 16px 48px;
    font-size: 0.85rem;
    color: #9a8f89;
}

.credits-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.credits-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.credits-link:hover .credits-icon {
    opacity: 1;
}

.credits-link strong {
    color: var(--primary-dark);
    font-weight: 500;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 32px 16px;
    font-size: 0.9rem;
    color: #999;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.6rem;
    }
}
