/* SECTION TITLE */

body {
    background-color: var(--black-spc);
}

#sec-title {
    display: flex;
    justify-content: center;
}

.title-view {
    padding-top: 56px;
    padding-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

@media only screen and (max-width: 992px) {
    .title-view {
        align-items: center;
        text-align: center;
    }
}

.img-bg-title {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: -1;
}

.tag {
    font-weight: 300;
    color: var(--red-spc);
}

.titletext {
    color: var(--white-spc);
    font-weight: 900;
}

.line-divider {
    border: 3px solid var(--red-spc);
    width: 160px;
}

.subtext {
    color: var(--gray-spc);
}

main {
    background-color: var(--white-spc);
    padding: 0;
}

/* SECTION INFO */

.info {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info h3 {
    text-align: left;
    line-height: 24px;
}

.info span {
    text-align: left;
    line-height: 24px;
}

.line-divider-sec {
    color: var(--gray-spc);
}

/* SECTION EQUIPS */

#sec-equips {
    padding-top: 24px;
    padding-bottom: 24px;
}

.equip-view {
    margin-bottom: 48px;
}

.equip-header {
    display: flex;
    align-items: center;
    flex-direction: row;
}

@media only screen and (max-width: 992px) {
    .equip-title {
        margin-bottom: 16px;
    }
}

.equip-title h2 {
    font-weight: 800;
    font-size: 2em;
}

.equip-title h6 {
    font-weight: 500;
    font-size: 0.9em;
    color: var(--dark-gray-light-spc);
}

.equip-content {
    margin-top: 16px;
    display: flex;
    background-color: var(--light-gray-spc);
    padding: 16px;
    border-radius: 8px;
}

.equip-img {
    display: flex;
    justify-content: center;
    margin-right: 16px;
}

@media only screen and (max-width: 992px) {
    .equip-info {
        margin-top: 16px;
    }
}

.equip-info {
    gap: 8px;
}

.equip-info-subtitle {
    font-weight: 500;
    font-size: 0.9em;
    color: var(--dark-gray-light-spc);
    padding-top: 16px;
    padding-bottom: 16px;
}

.card-info {
    background-color: var(--white-spc);
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px;
    margin-bottom: 12px;
}

.card-info i {
    font-weight: 800;
    font-size: 1.2em;
    color: var(--red-spc);
}

.card-info span {
    font-weight: 700;
    font-size: 0.9em;
}


/* SECTION EQUIPS COMPLEMENTARES */

#sec-equips-c {
    background-color: var(--light-gray-spc);
    padding-top: 24px;
    padding-bottom: 24px;
}

.equips-c-title {
    padding-top: 8px;
    padding-bottom: 8px;
}

.equips-c-title span {
    line-height: normal;
    font-size: 1.2em;
    color: var(--dark-gray-light-spc);
}

.card {
    border: none;
    height: 100%;
}

@media only screen and (max-width: 992px) {
    .card {
        margin-bottom: 24px;
    }
}

.card-body h5 {
    font-weight: 800;
    font-size: 1.3em;
}

.card-body h6 {
    font-size: 0.9em;
    color: var(--dark-gray-light-spc);
}