﻿/* Botão de trabalhe conosco*/

.btn--cta--header {
    display: none !important;
}

.btn--job {
    display: inline-flex;
}

.btn--outline {
    background: var(--pb-green);
    color: var(--d-text);
    border: none
}

    .btn--outline:hover {
        background: var(--pb-green-hover);
        color: var(--d-text)
    }

/* */

.eyebrow,
.mono {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pb-red);
    font-weight: 500;
    margin-bottom: var(--s-3);
}

    .eyebrow::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--pb-red);
    }

h1,
h2,
h3,
p {
    margin: 0;
}

h1 {
    max-width: 720px;
    font-size: 50px;
    line-height: 52px;
    letter-spacing: 0;
    font-weight: 700;
    margin-bottom: var(--s-4);
}

h2 {
    font-size: 36px;
    line-height: 36px;
    letter-spacing: 0;
    font-weight: 700;
    margin-bottom: var(--s-3);
}

h3 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    font-weight: 600;
    margin-bottom: var(--s-2);
}

section {
    padding: var(--s-8) 0;
    border-bottom: 1px solid var(--l-border);
}

.lead {
    color: var(--l-text-2);
    max-width: 100%;
    margin-bottom: var(--s-5);
}

.hero {
    padding: var(--s-8) 0 var(--s-7);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: var(--s-7);
    align-items: center;
}

.hero-copy > p {
    color: var(--l-text-2);
    max-width: 620px;
    margin-bottom: var(--s-4);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: var(--s-3);
}

.microcopy {
    color: var(--l-text-3);
    font-size: 13px;
    margin-bottom: var(--s-4);
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.badge {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    color: var(--l-text-2);
    font-size: 12px;
    line-height: 16px;
    font-weight: 550;
}

    .badge::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--pb-red);
    }

.hero-media {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--l-surface-2);
    min-height: 430px;
    box-shadow: 0 24px 80px rgba(11, 11, 11, .12);
}

    .hero-media img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 430px;
        object-fit: cover;
        object-position: center;
    }

.service-grid,
.why-grid,
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--l-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--l-border);
}

.card {
    background: #fff;
    padding: var(--s-4);
    min-height: 190px;
}

.card-media {
    width: 100%;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--l-surface-2);
    margin-bottom: var(--s-4);
}

    .card-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.card ul,
.check-list {
    list-style: none;
    margin: var(--s-3) 0 0;
    padding: 0;
    display: grid;
    gap: 9px;
    color: var(--l-text-2);
}

    .card li,
    .check-list li {
        display: flex;
        gap: 9px;
        align-items: flex-start;
    }

        .card li::before,
        .check-list li::before {
            content: "";
            width: 6px;
            height: 6px;
            margin-top: 9px;
            border-radius: 50%;
            background: var(--pb-red);
            flex: 0 0 auto;
        }

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--l-border);
    border: 1px solid var(--l-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: var(--s-5);
}

.step {
    background: #fff;
    padding: var(--s-4);
    min-height: 160px;
}

.step-num {
    color: var(--pb-red);
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: var(--s-3);
}

.step-image {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: var(--r-md);
    background: radial-gradient(circle at center, rgba(238, 22, 66, 0.08), rgba(255, 255, 255, 0) 68%);
    margin-bottom: var(--s-3);
}

.step p,
.card p {
    color: var(--l-text-2);
}

.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    padding: var(--s-4);
    border-radius: var(--r-lg);
    background: var(--d-bg);
    color: #fff;
}

    .cta-strip p {
        color: var(--d-text-2);
        margin-top: 4px;
    }

.homologation {
    background: var(--l-surface);
}

.homologation-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: var(--s-6);
    align-items: center;
}

.homologation-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--l-border);
    border: 1px solid var(--l-border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.homologation-item {
    background: #fff;
    padding: var(--s-4);
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: flex-start;
}

    .homologation-item::before {
        content: none;
    }

.homologation-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--r-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pb-red);
    background: var(--pb-red-soft);
}

    .homologation-icon svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.homologation-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--l-text);
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
}

.homologation-item p {
    margin: 0;
    color: var(--l-text-2);
    font-size: 14px;
    line-height: 20px;
}

.why-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: var(--s-4);
}

.why-card-image {
    display: block;
    width: 100%;
    max-width: 245px;
    height: 130px;
    object-fit: contain;
    margin: var(--s-3) auto var(--s-4);
}

.benefit-grid {
    padding : var(--s-3);
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: var(--s-5);
}

.comparison-table {
    margin: 0 0 var(--s-5);
    border: 1px solid var(--l-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
}

    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 16px 18px;
        border-bottom: 1px solid var(--l-border);
        text-align: center;
        vertical-align: middle;
    }

    .comparison-table th {
        color: var(--l-text);
        background: var(--l-surface-2);
        font-size: 13px;
        line-height: 18px;
        font-weight: 750;
    }

        .comparison-table th:first-child,
        .comparison-table td:first-child {
            text-align: left;
            width: 62%;
        }

    .comparison-table tbody tr:last-child td {
        border-bottom: 0;
    }

    .comparison-table tbody tr:nth-child(even) {
        background: #fbfbfb;
    }

.status {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
}

.status--yes {
    color: var(--pb-green);
    background: rgba(17, 185, 110, 0.12);
}

.status--no {
    color: var(--pb-red);
    background: rgba(238, 22, 66, 0.10);
}

.persuasive-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--s-4);
    align-items: center;
    padding: var(--s-5);
    background: var(--l-text);
    color: #fff;
    border-radius: var(--r-lg);
}

    .persuasive-box p {
        color: var(--d-text-2);
        max-width: 760px;
    }

.faq-list {
    max-width: 900px;
    margin: var(--s-5) auto 0;
    border-top: 1px solid var(--l-border);
}

details {
    border-bottom: 1px solid var(--l-border);
}

summary {
    cursor: pointer;
    padding: 22px 0;
    font-weight: 750;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: var(--s-4);
}

    summary::-webkit-details-marker {
        display: none;
    }

    summary::after {
        content: "+";
        color: var(--pb-red);
    }

details[open] summary::after {
    content: "-";
}

details p {
    color: var(--l-text-2);
    padding: 0 0 22px;
    max-width: 720px;
}

h2 {
    max-width : 100% !important
}

@media (max-width: 1080px) {
    .hero-grid,
    .homologation-panel,
    .persuasive-box {
        grid-template-columns: 1fr;
    }

    .steps,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    h1 {
        font-size: 44px;
        line-height: 44px;
    }

    h2 {
        font-size: 32px;
        line-height: 34px;
    }

    section,
    .hero {
        padding: var(--s-6) 0;
    }

    .hero-grid {
        gap: var(--s-5);
    }

    .hero-media,
    .hero-media img {
        min-height: 300px;
    }

    .card-media {
        height: 220px;
    }

    .service-grid,
    .steps,
    .homologation-list,
    .why-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        border: 0;
        background: transparent;
        overflow: visible;
    }

        .comparison-table table,
        .comparison-table thead,
        .comparison-table tbody,
        .comparison-table tr,
        .comparison-table th,
        .comparison-table td {
            display: block;
        }

        .comparison-table thead {
            display: none;
        }

        .comparison-table tr {
            padding: var(--s-4);
            margin-bottom: 10px;
            border: 1px solid var(--l-border);
            border-radius: var(--r-md);
            background: #fff;
        }

        .comparison-table tbody tr:nth-child(even) {
            background: #fff;
        }

        .comparison-table td {
            width: 100%;
            padding: 10px 0;
            border-bottom: 1px solid var(--l-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--s-3);
            text-align: right;
        }

            .comparison-table td::before {
                content: attr(data-label);
                color: var(--l-text-2);
                font-family: var(--font-mono);
                font-size: 11px;
                line-height: 14px;
                letter-spacing: .12em;
                text-transform: uppercase;
                font-weight: 500;
                text-align: left;
            }

            .comparison-table td:first-child {
                width: 100%;
                display: block;
                padding-top: 0;
                text-align: left;
                color: var(--l-text);
                font-weight: 750;
            }

                .comparison-table td:first-child::before {
                    display: block;
                    margin-bottom: 6px;
                }

            .comparison-table td:last-child {
                border-bottom: 0;
                padding-bottom: 0;
            }

    .cta-strip,
    .persuasive-box {
        display: grid;
    }

    main .btn {
        width: 100%;
    }
}
