/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefefe;
    color: #1a1a1a;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* TIPOGRAFIA */
h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #1a1a1a;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
}

.tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b45f2b;
    margin-bottom: 20px;
}

/* SEÇÃO HERO */
.hero {
    padding: 80px 32px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #faf7f2 100%);
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: #3a3a3a;
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-text strong {
    color: #b45f2b;
    font-weight: 600;
}

.hero-image {
    flex: 0.8;
}

.hero-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
    margin: 0 auto;
}

/* APRESENTAÇÃO */
.apresentacao {
    padding: 80px 0;
    background-color: #ffffff;
}

.apresentacao-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.apresentacao-texto {
    flex: 1.5;
}

.apresentacao-texto p {
    font-size: 1.05rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.6;
}

.apresentacao-texto blockquote {
    font-size: 1.3rem;
    font-weight: 500;
    color: #b45f2b;
    border-left: 4px solid #b45f2b;
    padding-left: 24px;
    margin: 28px 0;
    font-style: normal;
    line-height: 1.4;
}

.apresentacao-citacao {
    flex: 1;
    background-color: #f5f0e8;
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    align-items: center;
}

.frase-destaque p {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.frase-destaque span {
    font-size: 0.9rem;
    color: #7a5a3a;
    letter-spacing: 0.5px;
}

/* TRAJETÓRIA */
.trajetoria {
    padding: 80px 0;
    background-color: #faf7f2;
}

.trajetoria-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 48px;
}

.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.galeria-item {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.galeria-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.legenda {
    display: block;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #5a5a5a;
    background-color: #ffffff;
    text-align: center;
    font-weight: 500;
}

/* CONTEÚDOS (BOTÕES) */
.conteudos {
    padding: 80px 0;
    background-color: #ffffff;
}

.conteudos-intro {
    max-width: 700px;
    margin: 0 auto 48px auto;
    text-align: center;
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.botoes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.botao {
    display: inline-block;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.2s ease;
    text-align: center;
}

.botao-livros {
    background-color: #2c3e2b;
    color: #ffffff;
}

.botao-livros:hover {
    background-color: #1e2e1d;
    transform: scale(1.02);
}

.botao-filmes {
    background-color: #8b5a2b;
    color: #ffffff;
}

.botao-filmes:hover {
    background-color: #6e461f;
    transform: scale(1.02);
}

.botao-blog {
    background-color: #b45f2b;
    color: #ffffff;
}

.botao-blog:hover {
    background-color: #944b1f;
    transform: scale(1.02);
}

.botao-videos {
    background-color: #2c5f6e;
    color: #ffffff;
}

.botao-videos:hover {
    background-color: #1e4854;
    transform: scale(1.02);
}

/* RODAPÉ */
footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 48px 0;
    text-align: center;
}

footer p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-pequeno {
    font-size: 0.8rem;
    color: #888888;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 50px 20px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .hero-image img {
        max-width: 280px;
    }
    
    .apresentacao-grid {
        flex-direction: column;
    }
    
    .frase-destaque p {
        font-size: 1.2rem;
    }
    
    .galeria {
        gap: 20px;
    }
    
    .botoes-grid {
        gap: 14px;
    }
    
    .botao {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
    
    h2 {
        font-size: 1.6rem;
        margin-bottom: 32px;
    }
    
    .apresentacao-texto blockquote {
        font-size: 1.1rem;
        padding-left: 18px;
    }
}