/* Estilos personalizados para a página Sobre Nós */

/* Cores da Marymtec */
:root {
    --marymtec-blue: #0b4c80;
    --marymtec-light: #f8f9fa;
    --marymtec-dark: #343a40;
    --marymtec-accent: #17a2b8;
}

/* Estilo para os cards de conteúdo */
.card {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-title {
    color: var(--marymtec-blue);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--marymtec-accent);
    display: inline-block;
}

.card-text {
    color: #495057;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Estilo para a imagem */
.card-img-container {
    text-align: center;
    margin: 1.5rem 0;
}

.card-img-container img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Botão de contato */
.btn-primary {
    background-color: var(--marymtec-blue);
    border-color: var(--marymtec-blue);
    padding: 0.75rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 0.25rem;
    margin-top: 1rem;
    color: white;
}

.btn-primary:hover {
    background-color: #0a3d66;
    border-color: #0a3d66;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

/* Estilo para links */
a {
    color: var(--marymtec-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--marymtec-accent);
    text-decoration: none;
}

/* Estilo para o rodapé */
.blog-footer {
    padding: 2.5rem 0;
    color: #6c757d;
    text-align: center;
    background-color: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    margin-top: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1.5rem;
    }
    
    .jumbotron h1 {
        font-size: 2rem;
    }
    
    .btn-primary {
        width: 100%;
    }
}
