/* =========================================================
   PÁGINA SOBRE NÓS
========================================================= */

.about-page {
    background: var(--background-light);
    color: var(--text-color);
}

.about-page *,
.about-page *::before,
.about-page *::after {
    box-sizing: border-box;
}

.about-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.about-section {
    padding: 76px 0;
}

.about-section--gray {
    background: var(--background-gray);
}

.about-section__header {
    max-width: 760px;
    margin-bottom: 38px;
}

.about-section__header h2,
.about-story h2,
.about-support h2,
.about-business h2,
.about-logistics h2,
.about-final-cta h2 {
    margin: 8px 0 18px;
    color: var(--text-color);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: -0.025em;
    line-height: 1.18;
}

.about-section__header p,
.about-section-lead,
.about-story p,
.about-support p,
.about-business p,
.about-logistics p,
.about-final-cta p {
    color: var(--text-muted);
    line-height: 1.78;
}

.about-section-lead {
    font-size: 1.04rem;
}

.about-eyebrow {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.4;
    text-transform: uppercase;
}

.about-eyebrow--light {
    color: rgba(255, 255, 255, 0.78);
}

/* =========================================================
   HERO
========================================================= */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 92px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(252, 122, 81, 0.2),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            var(--primary-color),
            var(--secondary-color)
        );
    color: var(--text-light);
}

.about-hero::before {
    position: absolute;
    top: -150px;
    left: -140px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.about-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 72px;
}

.about-hero__content {
    min-width: 0;
}

.about-hero__content h1 {
    max-width: 680px;
    margin: 14px 0 22px;
    color: var(--text-light);
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.about-hero__content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.75;
}

.about-hero__content p + p {
    margin-top: 14px;
}

.about-hero__lead {
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 1.12rem !important;
}

.about-hero__visual {
    position: relative;
    min-width: 0;
}

.about-hero__media {
    overflow: hidden;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
    transform: rotate(1deg);
}

.about-hero__media img {
    display: block;
    width: 100%;
    height: 430px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
}

.about-hero__badge {
    position: absolute;
    right: -10px;
    bottom: -26px;
    display: flex;
    flex-direction: column;
    max-width: 230px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
}

.about-hero__badge span {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.about-hero__badge strong {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.45;
}

/* =========================================================
   BOTÕES
========================================================= */

.about-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.about-actions--center {
    justify-content: center;
}

.about-page .about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 48px;
    margin: 0;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.about-page .about-button:hover {
    transform: translateY(-2px);
}

.about-page .about-button--primary {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--text-light);
}

.about-page .about-button--primary:hover {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    box-shadow: 0 6px 16px rgba(173, 51, 80, 0.2);
}

.about-page .about-button--light {
    border-color: var(--background-light);
    background: var(--background-light);
    color: var(--primary-color);
}

.about-page .about-button--light:hover {
    border-color: var(--background-gray);
    background: var(--background-gray);
    color: var(--secondary-color);
}

.about-page .about-button--outline-light {
    border-color: rgba(255, 255, 255, 0.7);
    background: transparent;
    color: var(--text-light);
}

.about-page .about-button--outline-light:hover {
    border-color: var(--background-light);
    background: var(--background-light);
    color: var(--primary-color);
}

/* =========================================================
   RESUMO
========================================================= */

.about-summary {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: -42px;
}

.about-summary-card {
    padding: 26px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--background-light);
    box-shadow: var(--shadow-sm);
}

.about-summary-card__label {
    display: inline-block;
    margin-bottom: 11px;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.about-summary-card strong {
    display: block;
    color: var(--text-color);
    font-size: 1.04rem;
    line-height: 1.4;
}

.about-summary-card p {
    margin: 10px 0 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* =========================================================
   HISTÓRIA
========================================================= */

.about-story-section {
    padding-top: 88px;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: 72px;
}

.about-story__content p {
    margin: 0;
}

.about-story__content p + p {
    margin-top: 17px;
}

.about-story__highlight {
    position: relative;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--background-light);
    box-shadow: var(--shadow-md);
}

.about-story__highlight::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--primary-color),
            var(--accent-color)
        );
    content: "";
}

.about-story__number {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.about-story__highlight h3 {
    margin: 0 0 14px;
    color: var(--text-color);
    font-size: 1.3rem;
    line-height: 1.4;
}

.about-story__highlight p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.about-story__highlight ul {
    display: grid;
    gap: 9px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.about-story__highlight li {
    position: relative;
    padding-left: 22px;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.about-story__highlight li::before {
    position: absolute;
    top: 0.35em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    content: "";
}

/* =========================================================
   SOLUÇÕES
========================================================= */

.about-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.about-service-card {
    position: relative;
    min-height: 270px;
    padding: 28px 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--background-light);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.04);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.about-service-card:hover {
    border-color: rgba(173, 51, 80, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.about-service-card::after {
    position: absolute;
    right: -35px;
    bottom: -45px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(173, 51, 80, 0.04);
    content: "";
}

.about-service-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 32px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(173, 51, 80, 0.08);
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 800;
}

.about-service-card h3 {
    margin: 0 0 13px;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.4;
}

.about-service-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.91rem;
    line-height: 1.7;
}

/* =========================================================
   DIFERENCIAIS
========================================================= */

.about-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-benefit {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
    padding: 22px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--background-gray);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.about-benefit:hover {
    border-color: rgba(173, 51, 80, 0.22);
    background: var(--background-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.about-benefit__icon {
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.1);
    color: var(--success-color);
    font-size: 0.94rem;
    font-weight: 800;
    place-items: center;
}

.about-benefit h3 {
    margin: 0 0 7px;
    color: var(--text-color);
    font-size: 0.93rem;
    line-height: 1.4;
}

.about-benefit p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

/* =========================================================
   LOGÍSTICA
========================================================= */

.about-logistics {
    padding: 70px 0;
    background:
        radial-gradient(
            circle at 90% 30%,
            rgba(252, 122, 81, 0.17),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--primary-color),
            var(--secondary-color)
        );
    color: var(--text-light);
}

.about-logistics__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 56px;
}

.about-logistics h2 {
    max-width: 720px;
    color: var(--text-light);
}

.about-logistics p {
    max-width: 800px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.about-logistics p + p {
    margin-top: 12px;
}

.about-logistics__action {
    white-space: nowrap;
}

/* =========================================================
   ATENDIMENTO
========================================================= */

.about-support {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 72px;
}

.about-support__content p {
    margin: 0;
}

.about-support__content p + p {
    margin-top: 17px;
}

.about-contact-card {
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--background-gray);
    box-shadow: var(--shadow-sm);
}

.about-contact-card__label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.about-contact-card h3 {
    margin: 0 0 12px;
    color: var(--text-color);
    font-size: 1.35rem;
    line-height: 1.4;
}

.about-contact-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.about-contact-card__channels {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.about-contact-card__channels a {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 11px 13px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--background-light);
    text-decoration: none;
}

.about-contact-card__channels span {
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-contact-card__channels strong {
    color: var(--text-color);
    font-size: 0.88rem;
}

.about-contact-card__channels a:hover strong {
    color: var(--primary-color);
}

.about-contact-card .about-button {
    width: 100%;
}

/* =========================================================
   ATENDIMENTO COMERCIAL
========================================================= */

.about-business-section {
    background: var(--background-gray);
}

.about-business {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 72px;
}

.about-business__content p {
    margin: 0;
}

.about-business__content p + p {
    margin-top: 17px;
}

.about-business__card {
    padding: 32px;
    border: 1px solid rgba(173, 51, 80, 0.18);
    border-radius: var(--radius-lg);
    background: var(--background-light);
    box-shadow: var(--shadow-sm);
}

.about-business__label {
    display: inline-block;
    margin-bottom: 11px;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.about-business__card h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.25rem;
    line-height: 1.4;
}

.about-business__card ul {
    display: grid;
    gap: 9px;
    margin: 22px 0 24px;
    padding: 0;
    list-style: none;
}

.about-business__card li {
    position: relative;
    padding-left: 22px;
    color: var(--text-muted);
    font-size: 0.87rem;
    line-height: 1.5;
}

.about-business__card li::before {
    position: absolute;
    top: 0.35em;
    left: 0;
    color: var(--success-color);
    content: "✓";
    font-weight: 800;
}

.about-business__card .about-button {
    width: 100%;
}

/* =========================================================
   COMPROMISSOS
========================================================= */

.about-commitments {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.about-commitment-card {
    padding: 28px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--background-light);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.04);
}

.about-commitment-card__number {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.about-commitment-card h3 {
    margin: 0 0 12px;
    color: var(--text-color);
    font-size: 1.08rem;
    line-height: 1.4;
}

.about-commitment-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* =========================================================
   CTA FINAL
========================================================= */

.about-final-cta {
    padding: 76px 0;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(252, 122, 81, 0.18),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            var(--secondary-color),
            #72202a
        );
    color: var(--text-light);
    text-align: center;
}

.about-final-cta__content {
    max-width: 860px;
}

.about-final-cta h2 {
    margin-right: auto;
    margin-left: auto;
    color: var(--text-light);
}

.about-final-cta p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.83);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
        gap: 44px;
    }

    .about-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-story,
    .about-support,
    .about-business {
        gap: 44px;
    }
}

/* =========================================================
   TABLET VERTICAL
========================================================= */

@media (max-width: 820px) {

    .about-hero {
        padding: 58px 0 78px;
    }

    .about-hero__grid,
    .about-story,
    .about-support,
    .about-business {
        grid-template-columns: 1fr;
    }

    .about-hero__visual {
        max-width: 620px;
    }

    .about-hero__badge {
        right: 18px;
    }

    .about-summary {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-inline: auto;
    }

    .about-story__highlight,
    .about-contact-card,
    .about-business__card {
        max-width: 620px;
    }

    .about-logistics__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-logistics__action {
        white-space: normal;
    }

    .about-commitments {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .about-container {
        width: min(100% - 28px, 1180px);
    }

    .about-section {
        padding: 54px 0;
    }

    .about-hero {
        padding: 48px 0 64px;
    }

    .about-hero__content h1 {
        font-size: 2.35rem;
    }

    .about-hero__lead {
        font-size: 1rem !important;
    }

    .about-hero__media {
        padding: 7px;
    }

    .about-hero__media img {
        height: 290px;
    }

    .about-hero__badge {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: none;
        margin: 14px 8px 0;
    }

    .about-summary {
        margin-top: -28px;
    }

    .about-summary-card {
        padding: 22px;
    }

    .about-services,
    .about-benefits {
        grid-template-columns: 1fr;
    }

    .about-service-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .about-benefit {
        padding: 20px;
    }

    .about-story__highlight,
    .about-contact-card,
    .about-business__card,
    .about-commitment-card {
        padding: 24px 21px;
    }

    .about-logistics {
        padding: 54px 0;
    }

    .about-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-page .about-button {
        width: 100%;
    }

    .about-final-cta {
        padding: 58px 0;
    }
}

/* =========================================================
   AJUSTES DO WORDPRESS
========================================================= */

.about-hero__media:has(img[src=""]),
.about-hero__media:has(img:not([src])) {
    display: none;
}

.about-page + .edit-link,
.page-template-default .edit-link {
    display: none;
}

.about-page a:focus-visible {
    outline: 3px solid rgba(252, 122, 81, 0.35);
    outline-offset: 3px;
}