* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.conteudo-principal {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 70px; 
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

body {
    background-color: #fafafa;
    color: #4a4a4a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.main-header {
    text-align: center;
    margin-bottom: 35px;
}

.main-header h1 {
    font-size: 2.4rem;
    font-weight: 300;
    color: #3a3a3a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.main-header .subtitle {
    font-size: 1rem;
    color: #555555;
    font-weight: 400;
}

/* Layout das Linhas (Grid/Flexbox fiel) */
.row-top {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 24px;
    margin-bottom: 45px;
}

.row-bottom {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 16px;
}

/* Estrutura dos Cards */
.card {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Tamanhos exatos dos Cards */
.card-large {
    flex: 1;
    max-width: 510px;
    padding: 35px 40px;
}

.card-small {
    flex: 1;
    max-width: 195px;
    padding: 25px 15px;
}

/* Elementos Internos do Card */
.icon-wrapper {
    color: #0052b4;
    font-size: 2.4rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.custom-svg {
    width: 42px;
    height: 42px;
}

.card h2 {
    color: #0052b4;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.card h3 {
    color: #0052b4;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Linha sutil abaixo do título do Card */
.card-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e8e8e8 20%, #e8e8e8 80%, transparent);
    margin-bottom: 15px;
}

.card p {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.4;
}

/* Divisor central de Nossos Valores */
.values-divider {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1030px;
    margin-bottom: 30px;
}

.values-divider .line {
    flex: 1;
    height: 1px;
    background-color: #dbdbdb;
}

.values-divider .title-valores {
    padding: 0 20px;
    font-size: 1.7rem;
    color: #3a3a3a;
    font-weight: 400;
}

/* Responsividade para telas menores */
@media (max-width: 850px) {
    .row-top, .row-bottom {
        flex-direction: column;
        align-items: center;
    }
    .card-large, .card-small {
        width: 100%;
        max-width: 450px;
    }
    .values-divider {
        max-width: 450px;
    }
}

