/* --- HISTORIA.CSS --- */

.story-section {
    padding: 60px 0;
}

.story-section h2 {
    font-size: 2.8em;
    color: var(--theme-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-text {
    flex: 1;
    max-width: 600px;
}

.story-text p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

.story-text strong {
    color: var(--theme-dark);
}

/* --- AJUSTE DA LOGO --- */
/* Define o tamanho da caixa que segura a imagem */
.story-img {
    flex-shrink: 0;
    width: 350px;  /* Tamanho fixo para não ficar gigante */
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Garante que a imagem respeite a caixa acima */
.story-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Botão */
.btn-story {
    display: inline-block;
    background-color: var(--theme-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    margin-top: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-story:hover {
    background-color: var(--theme-dark);
    box-shadow: 0 5px 15px rgba(0, 68, 204, 0.3);
}

/* Responsividade (Celular/Tablet) */
@media (max-width: 900px) {
    .story-content {
        flex-direction: column;
        text-align: center;
    }

    .story-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .story-img {
        width: 100%;
        max-width: 250px; /* Reduz um pouco mais no celular */
        height: auto;
        margin-left: auto; 
        margin-right: auto; 
    }
}