/* site desenvolvido por VINICIUS SANTOS */
/* entre em contato por @vinisantoszx*/

/* INÍCIO - MARCADOR PÁGINA */
.text-services {
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-services h2 {
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 24px;

    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
    font-weight: bolder;
}

/* INÍCIO - CARDS CONSELHOS */
.card-container {
    width: 1200px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.full-box{
    padding: 10px 80px;
}

.full-width-card {
    width: 100%;
    height: auto;

    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: max-height 0.3s ease;

    overflow: hidden;

    background-color: #fff;
}

.card-header {
    color: white;
    padding: 15px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;

    background-color: #46aecb;
}

.card-header h2 {
    font-size: 18px;

    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
    font-weight: bolder;
}

.card-body {
    padding: 15px;
    transition: max-height 0.3s ease;

    overflow: hidden;
}

.card-body h2 {
    font-size: 18px;

    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
    font-weight: bolder;
}

.card-body p {
    font-size: 16px;

    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
    line-height: 1.25;

    margin: 6px 0px;
}

#bold {
    font-size: 16px;

    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
    font-weight: 600;

    line-height: 1.5;
}

@media (max-width: 659px) {
    .full-box {
        padding: 10px 20px;
    }
}