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

/* Variáveis Otimizadas */
:root {
    --text-color: #333333; /* Cor mais escura para melhor contraste */
    --body-bg: #E6E6FA; /* Lavanda */
    --header-footer-bg: #ffcccc; /* Rosa Claro para topo e rodapé */
    --primary-pink: #ff859f; /* Rosa Principal (botões, acento) */
    --hover-pink: #e8919d; /* Rosa Secundário (hover) */
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

html {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

body {
    background-color: var(--body-bg);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 4rem; 
}
/* Cabeçalho */
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 3rem;
    background-color: var(--header-footer-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.nav {
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-pink);
    align-items: center;
}

.nav-actions {
    display:flex;
    gap: 1rem;
    align-items: center;
}



section {
    padding: 4rem 10% 2rem; 
    min-height: 50vh;
}

h1, h2, h3 {
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

span {
    color: var(--hover-pink);
}

a {
    color: var(--primary-pink);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hover-pink);
}

.intro {
    text-align: center;
    padding-top: 5rem;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center; 
}

.intro-container p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.intro-container strong {
    display: block;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.intro-container .call-to-action strong {
    margin-top: 3rem;
    font-size: 1.3rem;
}

.poemas {
    text-align: center;
}

.poemas h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.poemas-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.poemas-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Faz a âncora parecer botão (sem trocar cores) */
.poemas-btn {
    display: inline-block;
    background: var(--primary-pink);
    color: var(--white);
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.12s ease;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.poemas-btn:hover {
    background: rgba(255,255,255,0.85);
    transform: translateY(-4px);
}


/* EBOOKS */
.ebooks {
    text-align: center;
    padding-bottom: 4rem;
}

.ebooks p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

/* Responsividade */
@media (max-width: 900px) {
    section {
        padding: 3rem 5% 1.5rem;
    }
}

@media (max-width: 600px) {
    body {
        padding-top: 3.5rem;
    }
    
    .page-header {
        padding: 0.8rem 5%;
    }
    
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }
    
    .poemas-container {
        flex-direction: column;

        gap: 10px;
    }

    .poemas-box {
        width: 100%;
        max-width: 200px; 
        margin: 0 auto;
        display: block;
    }
    
    .poemas-btn {
        font-size: 1em;
        padding: 10px 18px;
        min-width: 200px;
    letter-spacing: 1px;
    }
}