.history {
    padding: 40px 0;
    background-color: #f9f9f9;
    min-height: 80vh;
}

.history h1 {
    color: #2a5298;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 600;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.history-full p, 
.history-short p,
.history-content p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.1rem;
}

.history-content p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2a5298;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .history {
        padding: 20px 0;
    }
    
    .history h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .history-content {
        margin: 0 15px;
        padding: 25px;
    }
    
    .history-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .history-content p:first-of-type {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .history-content {
        margin: 0 10px;
        padding: 20px;
    }
    
    .history h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}