/* =========================================================
   PAGINA: AREA DO CLIENTE
   Padrao visual alinhado a empresa.css e fale-conosco.css
   ========================================================= */

.ac-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 60px 15px;
    background: #fafafa;
    border-bottom: 1px solid #dedede;
    text-align: center;
}

.ac-hero__inner {
    position: relative;
    z-index: 1;
    padding: 0;
}

.ac-hero__kicker,
.ac-content__kicker,
.ac-support__tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border: 1px solid var(--cor-site-1);
    border-radius: 6px;
    background: var(--cor-site-2);
    color: var(--cor-site-4);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    line-height: 1.3;
    text-transform: uppercase;
}

.ac-hero__kicker {
    margin: 0 auto 18px;
}

.ac-hero__kicker i,
.ac-content__kicker i {
    color: var(--cor-site-4);
    font-size: 10px;
}

.ac-hero__title {
    max-width: 980px;
    margin: 0 auto 14px;
    color: var(--cor-site-4);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
}

.ac-hero__subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: var(--cor-site-3);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
}

.ac-content {
    padding: 50px 0;
    background: #fff;
}

.ac-content__header {
    max-width: 760px;
    margin: 0 0 28px;
}

.ac-content__kicker {
    margin-bottom: 16px;
}

.ac-content__title {
    margin: 0 0 12px;
    color: var(--cor-site-4);
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 900;
    line-height: 1.12;
}

.ac-content__subtitle {
    max-width: 62ch;
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.ac-content__divider {
    width: 56px;
    height: 3px;
    margin-top: 18px;
    border-radius: 99px;
    background: var(--cor-site-1);
}

.ac-hero__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.ac-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    gap: 16px;
    align-items: flex-start;
    min-width: 0;
    min-height: 100%;
    padding: 20px;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 6px;
    box-shadow: none;
    color: inherit;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease;
}

.ac-card:hover,
.ac-card:focus {
    transform: translateY(-3px);
    border-color: #dedede;
    color: inherit;
    text-decoration: none;
}

.ac-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 1px solid var(--cor-site-1);
    border-radius: 6px;
    background: var(--cor-site-2);
    color: var(--cor-site-4);
    font-size: 15px;
}

.ac-card__body {
    min-width: 0;
}

.ac-card__body strong {
    display: block;
    margin: 0 0 5px;
    color: var(--cor-site-4);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.ac-card__body span {
    display: block;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.ac-card__arrow {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
    color: var(--cor-site-1);
    font-size: 13px;
}

.ac-support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 28px;
    padding: 28px 32px;
    background: #fafafa;
    border: 1px solid #dedede;
    border-radius: 6px;
}

.ac-support__text {
    min-width: 0;
}

.ac-support__tag {
    margin-bottom: 10px;
}

.ac-support__title {
    margin: 0 0 8px;
    color: var(--cor-site-4);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 800;
    line-height: 1.2;
}

.ac-support__sub {
    max-width: 62ch;
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.65;
}

.ac-support__actions {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 10px;
}

.ac-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.ac-btn:hover,
.ac-btn:focus {
    transform: translateY(-2px);
    text-decoration: none;
}

.ac-btn--primary {
    color: #fff;
    background: var(--cor-site-1);
    border-color: var(--cor-site-1);
}

.ac-btn--primary:hover,
.ac-btn--primary:focus {
    color: #fff;
    background: var(--cor-site-4);
    border-color: var(--cor-site-4);
}

@media (max-width: 991px) {
    .ac-hero__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ac-support {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .ac-hero,
    .ac-content {
        padding: 44px 0;
    }

    .ac-hero__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ac-card,
    .ac-support {
        padding: 20px;
    }

    .ac-support__actions,
    .ac-btn {
        width: 100%;
    }
}
