.page-dark-bg {
    background-color: #0d2858;
    color: #FFFFFF;
    padding-bottom: 80px;
    min-height: 80vh;
}

.page-title-section {
    padding: 60px 0 40px 0;
    color: #FFFFFF;
}

.page-title-section h1 {
    color: #FFFFFF;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.page-title-section p {
    font-size: 1rem;
    max-width: 700px; 
    opacity: 0.9;
    line-height: 1.5;
}

.brands-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.brand-card {
    background: #FFFFFF;
    border-radius: 20px; 
    overflow: hidden;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 450px; 
}

.brand-logo-area {
    width: 100%;
    height: 150px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.brand-img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
}

/* Conteúdo e Botões */
.brand-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    width: 100%;
}

.brand-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
    max-width: 300px; 
}

.brand-actions {
    margin-top: auto;
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.btn-outline-blue {
    border: 1px solid #008CDB;
    color: #008CDB;
    background: transparent;
    padding: 10px 20px;
    font-size: 0.75rem; 
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px; 
}

.btn-outline-blue.single-line {
    padding: 0 20px; 
}

.btn-outline-blue:hover {
    background: #008CDB;
    color: #FFFFFF;
}

.active-link {
    color: #008CDB !important;
    border-bottom: 2px solid #008CDB;
    padding-bottom: 5px;
}

@media (max-width: 768px) {
    .brands-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-card {
        padding: 30px 15px;
        min-height: auto;
    }

    .brand-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-outline-blue {
        width: 100%;
        padding: 15px;
    }
}