/* 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;
}

/* imagem */
.frase-imagem {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
    object-fit: cover;

    margin-bottom: 20px;
}











/* NOVA SEÇÃO PROPOSTA */
        .proposta {
        padding: 80px 0;
        background-color: #ffffff;
        }

        h2 {
        font-size: 2rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 40px;
        color: #1a1a1a;
        }

        .pilares {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
        margin-bottom: 40px;
        }

        .pilares span {
        font-size: 1.1rem;
        font-weight: 500;
        color: #b45f2b;
        border-left: 3px solid #b45f2b;
        padding-left: 14px;
        }

        .proposta-texto {
        text-align: center;
        font-size: 1.1rem;
        color: #3a3a3a;
        margin-bottom: 48px;
        line-height: 1.6;
        }






.oque-encontra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

/* Itens com ação (botões) - mesma cor */
.item-acao {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    background-color: #f5f0e8;
    border: 3px solid #b45f2b;
    color: #4a4a4a;
}

.item-acao:hover {
    background-color: #d2a385;
    transform: translateY(-2px);
}

/* Itens sem ação - apenas contorno */
.item-sem-acao {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a4a4a;
    background-color: #ffffff;
    border: 1px solid #d4c9bc;
    cursor: default;
}








        .botoes-inicio {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        margin-bottom: 60px;
        }

        .botao {
        display: inline-block;
        padding: 12px 28px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.2s ease;
        }

        .botao-livros {
        background-color: #2c3e2b;
        color: white;
        }

        .botao-livros:hover {
        background-color: #1e2e1d;
        }

        .botao-blog {
        background-color: #b45f2b;
        color: white;
        }

        .botao-blog:hover {
        background-color: #944b1f;
        }

        .botao-filmes {
        background-color: #8b5a2b;
        color: white;
        }

        .botao-filmes:hover {
        background-color: #6e461f;
        }

        .botao-videos {
        background-color: #2c5f6e;
        color: white;
        }

        .botao-videos:hover {
        background-color: #1e4854;
        }

        .gratuito {
        background-color: #faf7f2;
        border-radius: 24px;
        padding: 48px 32px;
        text-align: center;
        border: 1px solid #e8e0d6;
        }

        .tag-gratuito {
        display: inline-block;
        color: #b45f2b;
        font-size: 2rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 4px 12px;
        border-radius: 50px;
        margin-bottom: 20px;
        }

        .gratuito h3 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #1a1a1a;
        }

        .gratuito p {
        color: #4a4a4a;
        margin-bottom: 16px;
        line-height: 1.5;
        }

        .botao-lista {
        background-color: #1a1a1a;
        color: white;
        display: inline-block;
        margin-top: 10px;
        }

        .botao-lista:hover {
        background-color: #333;
        }

        @media (max-width: 768px) {
            .pilares span {
                font-size: 0.95rem;
            }
            
            .gratuito h3 {
                font-size: 1.3rem;
            }
            
            .oque-encontra span {
                font-size: 0.85rem;
            }
        }





/* SE SUSCRIBER email */
        .subscribe-box-gratuito {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid rgba(180, 95, 43, 0.2);
        }

        .subscribe-form-gratuito {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            max-width: 500px;
            margin: 0 auto;
        }

        .subscribe-form-gratuito input {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border: 1px solid #e0d6cc;
            border-radius: 50px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            background-color: white;
        }

        .subscribe-form-gratuito input:focus {
            outline: none;
            border-color: #b45f2b;
            box-shadow: 0 0 0 2px rgba(180, 95, 43, 0.2);
        }

        .subscribe-form-gratuito button {
            background-color: #b45f2b;
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .subscribe-form-gratuito button:hover {
            background-color: #944b1f;
            transform: scale(1.02);
        }

        .subscribe-form-gratuito button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }










/* 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;
}

/* Footer com redes sociais */
.footer-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-social {
    text-align: center;
}

.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #e0d6cc;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    background-color: #d62976;
}

.social-icon.linkedin:hover {
    background-color: #0077b5;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
}

.social-icon.email:hover {
    background-color: #b45f2b;
}

.email-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.footer-copyright p {
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .footer-conteudo {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-social {
        text-align: left;
    }
    
    .footer-copyright {
        border-top: none;
        padding-top: 0;
        text-align: right;
    }
}



/* 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 {
        width: 100%;
    }
    
    .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;
    }
}