:root {
    --pc-navy: #003a66;
    --pc-blue: #3051a0;
    --pc-light-blue: #50b8fd;
    --pc-steel: #f0f5fb;
    --pc-muted: #6f7f92;
    --pc-white: #ffffff;
    --pc-line: #dfe4eb;
    --pc-green: #25d366;
    --pc-shadow: 0 24px 60px rgba(8, 18, 35, .16);
}

.pc-page, .pc-page * { box-sizing: border-box; }

.pc-page {
    color: var(--pc-navy);
    background: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

.pc-page img { display: block; max-width: 100%; }
.pc-page a { color: inherit; text-decoration: none; }
.pc-page button { font: inherit; }

.pc-page h1, .pc-page h2, .pc-page h3 {
    margin: 0;
    font-family: Poppins, Arial, sans-serif;
    font-weight: 600;
    line-height: 1.08;
}

.pc-page h1 {
    margin-top: 20px;
    font-size: clamp(3rem, 5.2vw, 5.5rem);
    letter-spacing: -.045em;
}

.pc-page h1 em {
    display: block;
    color: var(--pc-light-blue);
    font-style: normal;
}

.pc-page h2 {
    margin-top: 16px;
    font-size: clamp(2.45rem, 4vw, 4.2rem);
    letter-spacing: -.035em;
}

.pc-page h3 { font-size: 1.5rem; }
.pc-page p { margin: 0; }

.pc-section { padding: 100px 0; }

.pc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pc-light-blue);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.pc-eyebrow::before {
    width: 28px;
    height: 3px;
    content: "";
    background: currentColor;
}

.pc-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    text-align: center;
    transition: .2s ease;
}

.pc-button:hover { color: #fff; transform: translateY(-2px); }

.pc-button-whatsapp {
    background: var(--pc-green);
    box-shadow: 0 12px 28px rgba(37, 211, 102, .22);
}
.pc-button-whatsapp:hover { background: #1eaf54; }

.pc-button-form {
    color: var(--pc-navy);
    border-color: var(--pc-navy);
    background: #fff;
}
.pc-button-form:hover { color: #fff; background: var(--pc-navy); }

.pc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--pc-navy);
    font-weight: 800;
}

.pc-text-link span { color: var(--pc-light-blue); font-size: 1.35rem; }

/* HERO - padrão exato aprovado */
.pc-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #fff 0 58%, var(--pc-steel) 58%);
}

.pc-hero::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    content: "";
    background: var(--pc-light-blue);
}

.pc-hero-grid {
    min-height: 690px;
    display: grid;
    grid-template-columns: .96fr .84fr;
    align-items: stretch;
    gap: 80px;
}

.pc-hero-copy { align-self: center; padding: 72px 0; }

.pc-hero-copy > p {
    max-width: 650px;
    margin-top: 28px;
    color: #4e5a6c;
    font-size: 1.1rem;
}

.pc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 38px;
}

.pc-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 36px 0 0;
    padding: 0;
    color: #303c4c;
    list-style: none;
    font-size: .88rem;
    font-weight: 700;
}
.pc-hero-points span { color: var(--pc-light-blue); }

.pc-hero-media { position: relative; min-height: 690px; }

.pc-hero-media::after {
    position: absolute;
    right: -24px;
    bottom: 0;
    width: 130px;
    height: 130px;
    content: "";
    background-image: radial-gradient(#fff 1.4px, transparent 1.4px);
    background-size: 12px 12px;
    opacity: .48;
    pointer-events: none;
}

.pc-hero-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.pc-hero-badge {
    position: absolute;
    left: -34px;
    bottom: 38px;
    z-index: 4;
    width: 150px;
    height: 150px;
    display: grid;
    place-content: center;
    color: #fff;
    background: var(--pc-blue);
    box-shadow: var(--pc-shadow);
    text-align: center;
    transform: rotate(-2deg);
}

.pc-hero-badge strong {
    font: 700 2.15rem/1 Poppins, sans-serif;
    text-transform: uppercase;
}

.pc-hero-badge span {
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* FAIXA */
.pc-trust-strip { color: #fff; background: var(--pc-navy); }
.pc-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.pc-trust-grid > div {
    min-height: 150px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 28px 30px;
    border-left: 1px solid rgba(255,255,255,.12);
}

.pc-trust-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.pc-trust-grid strong { font-family: Poppins, sans-serif; font-size: 1.15rem; font-weight: 600; }
.pc-trust-grid span { margin-top: 7px; color: #aeb9c8; font-size: .82rem; line-height: 1.45; }

/* CONTEÚDO */
.pc-two-columns {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 80px;
}
.pc-copy { color: var(--pc-muted); font-size: 1.02rem; }
.pc-copy p + p { margin-top: 20px; }

.pc-benefits, .pc-projects { background: var(--pc-steel); }

.pc-center-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}
.pc-center-heading .pc-eyebrow { justify-content: center; }
.pc-center-heading p { margin-top: 18px; color: var(--pc-muted); }

.pc-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 54px;
    border: 1px solid var(--pc-line);
}

.pc-benefit-card {
    position: relative;
    min-height: 340px;
    padding: 36px 30px;
    border-right: 1px solid var(--pc-line);
    background: #fff;
}

.pc-benefit-card:last-child { border-right: 0; }

.pc-benefit-card.pc-featured {
    color: #fff;
    background: var(--pc-navy);
    transform: translateY(-14px);
    box-shadow: var(--pc-shadow);
}

.pc-card-number {
    display: block;
    margin-bottom: 62px;
    color: var(--pc-light-blue);
    font: 700 1rem/1 Poppins, sans-serif;
}

.pc-benefit-card p { margin-top: 18px; color: var(--pc-muted); font-size: .9rem; }
.pc-benefit-card.pc-featured p { color: #b9c3d0; }

.pc-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pc-feature-image { min-height: 520px; overflow: hidden; }
.pc-feature-image img { width: 100%; height: 100%; object-fit: cover; }

.pc-feature-copy > p { margin-top: 24px; color: var(--pc-muted); }
.pc-feature-copy ul { margin: 28px 0 32px; padding-left: 20px; color: var(--pc-muted); }
.pc-feature-copy li + li { margin-top: 10px; }

/* PROCESSO */
.pc-process { color: #fff; background: var(--pc-navy); }
.pc-process h2 { color: #fff; }
.pc-process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.pc-process-copy p { max-width: 460px; margin: 24px 0 34px; color: #aeb9c8; }
.pc-steps { margin: 0; padding: 0; list-style: none; }

.pc-steps li {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(255,255,255,.13);
}
.pc-steps li + li { padding-top: 30px; }
.pc-steps li > span { color: var(--pc-light-blue); font: 700 1.8rem/1 Poppins, sans-serif; }
.pc-steps strong { display: block; font: 600 1.35rem/1.15 Poppins, sans-serif; }
.pc-steps p { margin-top: 8px; color: #aeb9c8; font-size: .9rem; }

/* GALERIA */
.pc-gallery {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 16px;
}

.pc-gallery-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: #d5dae1;
    cursor: zoom-in;
}

.pc-gallery-item::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 54%, rgba(4,12,23,.72));
}

.pc-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.pc-gallery-item:hover img { transform: scale(1.045); }
.pc-gallery-item span {
    position: absolute;
    left: 24px;
    bottom: 18px;
    z-index: 4;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}

.pc-gallery-tall { grid-row: 1 / 3; }
.pc-gallery-wide { grid-column: 2 / 4; }

.pc-gallery-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.pc-more-photos {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid var(--pc-navy);
    border-radius: 3px;
    color: var(--pc-navy);
    background: #fff;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: .04em;
    transition: .2s ease;
}
.pc-more-photos:hover { color: #fff; background: var(--pc-navy); transform: translateY(-2px); }
.pc-gallery-more > span { color: var(--pc-muted); font-size: .9rem; }

/* ORÇAMENTO */
.pc-quote-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center;
}
.pc-quote-copy > p { max-width: 510px; margin-top: 24px; color: var(--pc-muted); }

.pc-contact-block {
    display: flex;
    flex-direction: column;
    margin-top: 45px;
    padding-left: 22px;
    border-left: 4px solid var(--pc-light-blue);
}

.pc-contact-block span {
    margin-bottom: 8px;
    color: var(--pc-muted);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pc-contact-block a:first-of-type { font: 600 1.8rem/1.2 Poppins, sans-serif; }
.pc-contact-block a:last-of-type { margin-top: 4px; color: var(--pc-muted); font-size: .9rem; }

.pc-quote-options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.pc-quote-option {
    min-height: 335px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 28px;
    border-top: 5px solid var(--pc-light-blue);
    background: var(--pc-steel);
    box-shadow: var(--pc-shadow);
}

.pc-quote-option > i { margin-bottom: 28px; color: var(--pc-blue); font-size: 2.6rem; }
.pc-quote-option.pc-quote-whatsapp > i { color: var(--pc-green); }
.pc-quote-option p { flex-grow: 1; margin: 17px 0 25px; color: var(--pc-muted); font-size: .92rem; }
.pc-quote-option .pc-button { width: 100%; }

/* CARROSSEL */
.pc-carousel-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 78px 84px 46px;
    background: rgba(2,7,14,.94);
}

.pc-carousel-modal.is-open { display: flex; }

.pc-carousel-stage {
    position: relative;
    width: min(1180px, 86vw);
    height: min(780px, 82vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-carousel-slide {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pc-carousel-slide.is-active { display: flex; }

.pc-carousel-slide img {
    display: block;
    max-width: 100%;
    max-height: calc(100% - 52px);
    width: auto;
    height: auto;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

.pc-carousel-caption {
    margin-top: 14px;
    color: rgba(255,255,255,.94);
    font-size: .95rem;
    font-weight: 700;
    text-align: center;
}

.pc-carousel-counter {
    position: absolute;
    right: 0;
    bottom: -4px;
    padding: 6px 10px;
    border-radius: 3px;
    color: #fff;
    background: rgba(0,0,0,.38);
    font-size: .85rem;
    font-weight: 700;
}

.pc-carousel-close {
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 100002;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--pc-light-blue);
    cursor: pointer;
    font-size: 2rem;
}

.pc-carousel-nav {
    position: fixed;
    top: 50%;
    z-index: 100001;
    width: 56px;
    height: 72px;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background: rgba(255,255,255,.12);
    cursor: pointer;
    font-size: 3rem;
    transform: translateY(-50%);
}

.pc-carousel-nav:hover { background: var(--pc-light-blue); }
.pc-carousel-prev { left: 22px; }
.pc-carousel-next { right: 22px; }
body.pc-carousel-open { overflow: hidden; }

/* RESPONSIVO */
@media (max-width: 980px) {
    .pc-hero { background: #fff; }
    .pc-hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
    .pc-trust-grid, .pc-benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .pc-benefit-card.pc-featured { transform: none; }
    .pc-feature-grid, .pc-process-grid, .pc-quote-grid { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 700px) {
    .pc-section { padding: 72px 0; }
    .pc-page h1 { font-size: clamp(3rem, 15vw, 4.7rem); }

    .pc-hero-grid {
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .pc-hero-copy { padding: 62px 0 50px; }

    .pc-hero-media {
        min-height: 540px;
        margin-inline: -14px;
    }

    .pc-hero-badge {
        left: 18px;
        bottom: 20px;
        width: 120px;
        height: 120px;
    }

    .pc-hero-actions { align-items: stretch; flex-direction: column; }
    .pc-hero-actions .pc-text-link { align-self: flex-start; }
    .pc-hero-points { flex-direction: column; }

    .pc-trust-grid, .pc-benefit-grid, .pc-two-columns, .pc-quote-options {
        grid-template-columns: 1fr;
    }

    .pc-two-columns { gap: 24px; }

    .pc-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 390px 220px 220px;
    }

    .pc-gallery-tall { grid-column: 1 / 3; grid-row: auto; }
    .pc-gallery-wide { grid-column: 1 / 3; }

    .pc-gallery-more { align-items: stretch; flex-direction: column; text-align: center; }
    .pc-more-photos { width: 100%; }

    .pc-carousel-modal { padding: 70px 48px 34px; }
    .pc-carousel-stage { width: 88vw; height: 78vh; }
    .pc-carousel-nav { width: 42px; height: 62px; font-size: 2.4rem; }
    .pc-carousel-prev { left: 4px; }
    .pc-carousel-next { right: 4px; }
    .pc-carousel-close { top: 12px; right: 12px; }
}
