/* =========================================================
   NOVO AUTO - Info Boxes
   novo-boxes.css v1.0.1
========================================================= */

.novo-box {
    background: linear-gradient(
        180deg,
        rgba(18,22,30,.72) 0%,
        rgba(7,9,13,.97) 100%
    );
    border: 1px solid #FFFFFF17;
    border-radius: 16px;
    padding: 22px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 12px 40px rgba(0,0,0,.4),
        inset 0 1px 0 rgba(255,255,255,.05);
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

/* CONTACT BOX */
.novo-box__title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.3;
}

.novo-box__subtitle {
    color: rgba(255,255,255,.5);
    font-size: 13px;
    font-weight: 400;
    margin: 0 0 18px;
    line-height: 1.5;
}

.novo-box__contact-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.novo-box__contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.novo-box__contact-row i {
    color: #ffffff;
    font-size: 16px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.novo-box__contact-row--email i {
    color: #A70E16;
}

.novo-box__contact-row--email span {
    color: #A70E16;
}

/* ICON + TITLE ROW */
.novo-box__icon-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.novo-box__icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(167,14,22,.12);
    border: 1px solid rgba(167,14,22,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.novo-box__icon-wrap i {
    color: #A70E16;
    font-size: 17px;
    filter: drop-shadow(0 0 4px rgba(167,14,22,.3));
}

.novo-box__main-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
}

/* BADGE */
.novo-box__badge {
    background: #A70E16;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(167,14,22,.35);
    flex-shrink: 0;
}

/* DESCRIERE */
.novo-box__desc {
    color: rgba(255,255,255,.55);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 14px;
}

/* CHECKLIST */
.novo-box__checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.novo-box__checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.8);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.novo-box__checklist li i {
    color: #A70E16;
    font-size: 12px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* FOOTNOTE */
.novo-box__footnote {
    color: rgba(255,255,255,.3);
    font-size: 11px;
    font-weight: 400;
    margin: 12px 0 0;
    line-height: 1.5;
    font-style: italic;
}

/* BUTOANE */
.novo-box__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    box-sizing: border-box;
    transition: all .25s ease;
    cursor: pointer;
    margin-top: 16px;
}

.novo-box__btn--outline {
    background: transparent;
    border: 1px solid #FFFFFF17;
    color: #ffffff;
}

.novo-box__btn--outline:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.3);
    color: #ffffff;
}

.novo-box__btn--red {
    background: #A70E16;
    border: 1px solid #A70E16;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(167,14,22,.35);
}

.novo-box__btn--red:hover {
    background: #8a0b12;
    box-shadow: 0 10px 30px rgba(167,14,22,.5);
    transform: translateY(-2px);
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .novo-box {
        padding: 18px 16px;
    }
    .novo-box__main-title {
        font-size: 14px;
    }
}
