
:root {
    --bg: #0b0c0e;
    --bg-soft: #111318;
    --bg-alt: #171a20;
    --card: #1d2027;
    --line: rgba(255, 255, 255, 0.10);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.76);
    --soft: rgba(255, 255, 255, 0.58);
    --green: #20f263;
    --gold: #c79a50;
    --container: 1240px;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 22px;
}

.section {
    padding: 86px 0;
    border-top: 1px solid var(--line);
}

.section-dark {
    background: #0b0c0e;
}

.section-soft {
    background: #111318;
}

.section-alt {
    background: #171a20;
}

.label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 8px 13px;
    border-left: 3px solid var(--green);
    background: rgba(255, 255, 255, 0.055);
    color: #baffcc;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.title {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.2px;
}

.title span,
.hero-title span,
.prefooter h2 span {
    color: var(--green);
}

.subtitle {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.line {
    width: 100%;
    height: 1px;
    margin: 24px 0 0;
    background: linear-gradient(90deg, var(--green), rgba(255, 255, 255, 0.14), transparent);
}

.btn-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    min-height: 56px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #070707;
    border: 2px solid var(--green);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn:hover {
    background: #101010;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 5px;
    background: var(--green);
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
}

.hero {
    min-height: 820px;
    position: relative;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.60) 42%, rgba(0, 0, 0, 0.24) 100%),
        url("../img/hero.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #0b0c0e);
    pointer-events: none;
}

.header {
    position: relative;
    z-index: 10;
    padding: 18px 0;
    background: rgba(0, 0, 0, 0.32);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    max-width: 300px;
}

.logo img {
    width: auto;
    max-height: 76px;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px;
}

.menu a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    padding: 10px 13px;
    border-radius: 6px;
    transition: all 0.22s ease;
}

.menu a:hover {
    color: var(--green);
    background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
    display: none;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: 675px;
    display: flex;
    align-items: center;
    padding: 50px 0 100px;
}

.hero-box {
    max-width: 710px;
}

.hero-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 74px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -2px;
    text-shadow: 0 5px 24px rgba(0, 0, 0, 0.55);
}

.hero-text {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(15px, 2vw, 19px);
    line-height: 1.75;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-info span {
    padding: 8px 12px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
}

.about-grid,
.split,
.contact-grid,
.prefooter-box {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 38px;
    align-items: start;
}

.split {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
}

.text p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.82;
}

.highlight {
    margin-top: 24px;
    padding: 22px;
    border-radius: 8px;
    border-left: 4px solid var(--green);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.75;
}

.cards,
.reviews-grid,
.portfolio-grid,
.material-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

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

.card,
.review-card,
.material-card,
.contact-panel,
.map-panel {
    padding: 26px;
    border-radius: 12px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.card {
    padding: 24px;
    transition: all 0.25s ease;
}

.card:hover,
.portfolio-card:hover,
.material-card:hover,
.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(32, 242, 99, 0.42);
}

.card-wide {
    grid-column: span 2;
    background: linear-gradient(135deg, #18231d, #1c1f26);
    border-color: rgba(32, 242, 99, 0.22);
}

.card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 8px;
    background: rgba(32, 242, 99, 0.10);
    border: 1px solid rgba(32, 242, 99, 0.26);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.card h3,
.review-card h3,
.material-card h3,
.portfolio-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 900;
}

.card p,
.review-card p,
.material-card p,
.portfolio-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.72;
}

.mini-stats,
.client-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.mini-stat,
.client-stat {
    padding: 18px 12px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.mini-stat strong,
.client-stat strong {
    display: block;
    margin-bottom: 7px;
    color: var(--green);
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

.client-stat strong {
    color: #ffffff;
    font-size: clamp(34px, 4vw, 50px);
}

.mini-stat span,
.client-stat span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.client-stat span {
    color: var(--gold);
}

.image-box {
    min-height: 430px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.28)),
        url("../img/ambiente-1.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.portfolio-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 28px;
}

.tab {
    display: inline-flex;
    padding: 10px 15px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.22s ease;
}

.tab:hover,
.tab.active {
    color: var(--green);
    border-color: rgba(32, 242, 99, 0.45);
    background: rgba(32, 242, 99, 0.10);
}

.portfolio-card {
    min-height: 310px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #1c1f26;
    box-shadow: var(--shadow);
    transition: all 0.28s ease;
}

.portfolio-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.78)),
        var(--portfolio-image, url("../img/hero.png"));
    background-size: cover;
    background-position: center;
    opacity: 0.72;
    transition: all .25s ease;
}

.portfolio-card:hover::before {
    transform: scale(1.05);
    opacity: .82;
}

.portfolio-inner {
    position: relative;
    z-index: 2;
    min-height: 310px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.portfolio-tag {
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 7px 11px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.56);
    border-left: 3px solid var(--green);
    color: #d9ffe2;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.review-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: all .25s ease;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 1px;
}

.review-source {
    display: block;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.54);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.review-note {
    margin-top: 22px;
    padding: 18px;
    border-radius: 10px;
    background: rgba(32, 242, 99, 0.08);
    border: 1px solid rgba(32, 242, 99, 0.20);
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.65;
}

.contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    margin-top: 34px;
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: rgba(32, 242, 99, 0.10);
    border: 1px solid rgba(32, 242, 99, 0.26);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

.contact-item a,
.contact-item span {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}

.form-box {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.form-box input,
.form-box select,
.form-box textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.20);
    color: #fff;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    outline: none;
    font-family: inherit;
}

.form-box textarea {
    min-height: 120px;
    resize: vertical;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
    border-color: rgba(32,242,99,.45);
}

.form-box option {
    background: #111318;
    color: #fff;
}

.hidden-field {
    display: none !important;
}

.map-frame {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
    border-radius: 10px;
    margin-top: 18px;
    overflow: hidden;
    filter: grayscale(15%) contrast(1.05);
}

.prefooter {
    padding: 78px 0;
    background: linear-gradient(135deg, #0a0c0b 0%, #102016 48%, #090a0c 100%);
    border-top: 1px solid rgba(32, 242, 99, 0.18);
    border-bottom: 1px solid rgba(32, 242, 99, 0.18);
}

.prefooter-box {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    padding: 36px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.prefooter h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
    font-weight: 900;
}

.prefooter p {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.prefooter-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.footer {
    width: 100%;
    background: #050607;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    padding: 76px 0 54px;
    background: linear-gradient(180deg, #0b0d10 0%, #050607 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.75fr 0.9fr 1fr;
    gap: 38px;
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-logo img {
    width: auto;
    max-height: 82px;
}

.footer-description {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15.5px;
    line-height: 1.82;
}

.footer-seals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-seal {
    padding: 8px 11px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
}

.footer-title {
    margin: 0 0 20px;
    padding-bottom: 14px;
    position: relative;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    height: 2px;
    background: var(--green);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    transition: all 0.22s ease;
}

.footer-links a:hover {
    color: var(--green);
    transform: translateX(3px);
}

.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-contact-item {
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14.5px;
    line-height: 1.55;
    font-weight: 700;
}

.footer-bottom {
    padding: 22px 0;
    background: #020303;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.footer-bottom strong {
    color: #ffffff;
}

.footer-bottom a {
    color: var(--green);
    font-weight: 900;
}

@media (max-width: 1100px) {
    .about-grid,
    .split,
    .contact-grid,
    .prefooter-box {
        grid-template-columns: 1fr;
    }

    .prefooter-actions {
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .header-inner {
        align-items: center;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .menu {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 92px;
        z-index: 99;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #090a0c;
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 14px;
        box-shadow: var(--shadow);
    }

    body.menu-open .menu {
        display: flex;
    }

    .menu a {
        padding: 14px;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .portfolio-grid,
    .material-grid,
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 62px 0;
    }

    .hero {
        min-height: 760px;
        background-image:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48)),
            url("../img/hero.png");
    }

    .hero-content {
        min-height: auto;
        padding: 42px 0 80px;
    }

    .hero-title {
        font-size: 41px;
        letter-spacing: -1px;
    }

    .title {
        font-size: 32px;
        letter-spacing: -0.7px;
    }

    .subtitle,
    .text p,
    .prefooter p {
        font-size: 15.5px;
        line-height: 1.7;
    }

    .btn {
        width: 100%;
    }

    .cards,
    .client-stats,
    .mini-stats,
    .portfolio-grid,
    .material-grid,
    .reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card-wide {
        grid-column: span 1;
    }

    .prefooter-box {
        padding: 24px;
    }

    .footer-top {
        padding: 54px 0 42px;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


.google-reviews-section {
    background:
        linear-gradient(180deg, #111318 0%, #0d0f13 100%);
}

.google-score-box {
    margin-top: 30px;
    margin-bottom: 26px;
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: 22px;
    align-items: center;
    padding: 26px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(32,242,99,0.12), rgba(255,255,255,0.045));
    border: 1px solid rgba(32, 242, 99, 0.22);
    box-shadow: var(--shadow);
}

.google-score-box strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 30px;
    letter-spacing: 2px;
    line-height: 1;
}

.google-score-box span {
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
}

.google-score-box p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .google-score-box {
        grid-template-columns: 1fr;
    }

    .google-score-box strong {
        font-size: 24px;
    }
}


/* V6 - Google reviews compacto, carrossel automático, antes do footer */
.gv-google-reviews {
    width: 100%;
    padding: 58px 0 !important;
    background: #ffffff !important;
    color: #202124 !important;
    border-top: 1px solid #e8eaed !important;
    border-bottom: 1px solid #e8eaed !important;
    overflow: hidden !important;
}

.gv-google-reviews * {
    box-sizing: border-box;
}

.gv-google-head {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
}

.gv-google-brand {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    padding: 10px 14px;
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(60,64,67,.08);
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.gv-google-brand strong {
    margin-left: 8px;
    color: #5f6368;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.gv-g-blue { color: #4285F4; }
.gv-g-red { color: #EA4335; }
.gv-g-yellow { color: #FBBC05; }
.gv-g-green { color: #34A853; }

.gv-google-head h2 {
    margin: 0 0 10px;
    color: #202124 !important;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1px;
}

.gv-google-head p {
    margin: 0;
    max-width: 760px;
    color: #5f6368 !important;
    font-size: 16px;
    line-height: 1.65;
}

.gv-google-rating {
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(60,64,67,.08);
}

.gv-google-rating strong {
    display: block;
    color: #fbbc05;
    font-size: 25px;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 8px;
}

.gv-google-rating span {
    display: block;
    color: #202124;
    font-size: 14px;
    font-weight: 900;
}

.gv-reviews-carousel {
    position: relative;
    width: 100%;
}

.gv-reviews-viewport {
    width: 100%;
    overflow: hidden !important;
}

.gv-reviews-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 18px !important;
    width: 100%;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    padding: 4px 2px 16px !important;
    scrollbar-width: none !important;
}

.gv-reviews-track::-webkit-scrollbar {
    display: none !important;
}

.gv-review-card {
    flex: 0 0 calc((100% - 36px) / 3) !important;
    max-width: calc((100% - 36px) / 3) !important;
    min-height: 235px !important;
    padding: 18px !important;
    background: #ffffff !important;
    color: #202124 !important;
    border: 1px solid #dadce0 !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 24px rgba(60,64,67,.12) !important;
    scroll-snap-align: start !important;
    display: flex !important;
    flex-direction: column !important;
}

.gv-review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.gv-review-google {
    font-size: 17px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.gv-review-stars {
    color: #fbbc05 !important;
    font-size: 14px !important;
    letter-spacing: 1px;
    white-space: nowrap;
}

.gv-review-card h3 {
    margin: 0 0 8px !important;
    color: #202124 !important;
    font-size: 18px !important;
    line-height: 1.22 !important;
    font-weight: 900 !important;
}

.gv-review-card p {
    margin: 0 !important;
    color: #3c4043 !important;
    font-size: 14px !important;
    line-height: 1.58 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 5 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.gv-review-source {
    margin-top: auto !important;
    padding-top: 12px !important;
    border-top: 1px solid #e8eaed !important;
    color: #5f6368 !important;
    font-size: 10.5px !important;
    line-height: 1.35;
    font-weight: 900 !important;
    letter-spacing: .45px;
    text-transform: uppercase;
}

.gv-review-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 42px;
    height: 50px;
    border: 1px solid #dadce0;
    border-radius: 12px;
    background: #ffffff;
    color: #202124;
    box-shadow: 0 8px 24px rgba(60,64,67,.18);
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gv-review-arrow:hover {
    color: #4285F4;
    border-color: #c6dafc;
}

.gv-review-prev {
    left: -18px;
}

.gv-review-next {
    right: -18px;
}

.gv-review-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 8px;
}

.gv-review-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #dadce0;
    cursor: pointer;
}

.gv-review-dots button.active {
    width: 22px;
    background: #4285F4;
}

.gv-google-action {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.gv-google-action .btn {
    background: #ffffff !important;
    color: #202124 !important;
    border-color: #dadce0 !important;
    box-shadow: 0 8px 24px rgba(60,64,67,.12) !important;
}

.gv-google-action .btn:hover {
    background: #f8f9fa !important;
    color: #202124 !important;
    border-color: #c6dafc !important;
}

.gv-google-action .icon {
    background: #4285F4 !important;
    color: #ffffff !important;
}

@media (max-width: 1000px) {
    .gv-google-head {
        grid-template-columns: 1fr;
    }

    .gv-google-rating {
        text-align: left;
    }

    .gv-review-card {
        flex-basis: calc((100% - 18px) / 2) !important;
        max-width: calc((100% - 18px) / 2) !important;
    }
}

@media (max-width: 767px) {
    .gv-google-reviews {
        padding: 44px 0 !important;
    }

    .gv-google-brand {
        font-size: 21px;
    }

    .gv-google-head {
        gap: 16px;
        margin-bottom: 20px;
    }

    .gv-google-head h2 {
        font-size: 31px;
    }

    .gv-google-rating {
        padding: 16px;
    }

    .gv-reviews-carousel {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .gv-review-card {
        flex-basis: 82% !important;
        max-width: 82% !important;
        min-height: 220px !important;
        padding: 16px !important;
    }

    .gv-review-card h3 {
        font-size: 17px !important;
    }

    .gv-review-card p {
        font-size: 13.5px !important;
        -webkit-line-clamp: 6 !important;
    }

    .gv-review-arrow {
        top: auto;
        bottom: -52px;
        transform: none;
        width: 40px;
        height: 46px;
        font-size: 30px;
    }

    .gv-review-prev {
        left: 16px;
    }

    .gv-review-next {
        right: 16px;
    }

    .gv-review-dots {
        margin-top: 16px;
        min-height: 46px;
        align-items: center;
    }

    .gv-google-action {
        margin-top: 12px;
    }
}


/* ===== V8: ajustes mantendo layout original ===== */
.tab.is-disabled,
.tab:disabled {
    opacity: .36;
    cursor: not-allowed;
    pointer-events: none;
}

.portfolio-card::before {
    opacity: .86;
}

.portfolio-card:hover::before {
    opacity: .96;
}

.about-grid .cards {
    align-self: stretch;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 42px rgba(37, 211, 102, .36);
    transition: all .25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 24px 52px rgba(37, 211, 102, .45);
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
}

@media (max-width: 760px) {
    .logo img {
        max-height: 58px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-float svg {
        width: 34px;
        height: 34px;
    }
}


/* ===== V9: logo do cliente + fotos reais no portfólio ===== */
.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.logo img,
.footer-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.logo img {
    max-height: 88px;
}

.footer-logo img {
    max-height: 74px;
}

.portfolio-card {
    isolation: isolate;
}

.portfolio-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.portfolio-card::before {
    z-index: 1;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.82));
    opacity: 1;
}

.portfolio-inner {
    z-index: 2;
}

@media (max-width: 760px) {
    .logo img {
        max-height: 62px;
    }

    .footer-logo img {
        max-height: 62px;
    }
}


/* ===== V10: correção definitiva das fotos do portfólio e logo enviada ===== */
.logo,
.footer-logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.logo img,
.footer-logo img {
    display: block !important;
    width: auto !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.logo img {
    max-height: 92px !important;
    max-width: 440px !important;
}

.footer-logo img {
    max-height: 78px !important;
    max-width: 300px !important;
}

.portfolio-card {
    position: relative !important;
    overflow: hidden !important;
    background: #11151c !important;
    min-height: 310px !important;
}

.portfolio-card .portfolio-photo {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 310px !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 0 !important;
    transform: scale(1.001);
}

.portfolio-card::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(to bottom, rgba(0,0,0,.06) 0%, rgba(0,0,0,.26) 42%, rgba(0,0,0,.82) 100%) !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

.portfolio-card:hover .portfolio-photo {
    transform: scale(1.055);
    transition: transform .35s ease;
}

.portfolio-card:hover::before {
    opacity: 1 !important;
}

.portfolio-inner {
    position: relative !important;
    z-index: 2 !important;
}

.portfolio-card[style] {
    background-image: none !important;
}

@media (max-width: 760px) {
    .logo img {
        max-height: 68px !important;
        max-width: 290px !important;
    }

    .footer-logo img {
        max-height: 64px !important;
        max-width: 260px !important;
    }
}


/* ===== V11: portfólio ativo com fotos enviadas pelo cliente ===== */
.logo,
.footer-logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.logo img,
.footer-logo img {
    display: block !important;
    width: auto !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.logo img {
    max-height: 92px !important;
    max-width: 460px !important;
}

.footer-logo img {
    max-height: 78px !important;
    max-width: 320px !important;
}

.portfolio-card {
    position: relative !important;
    overflow: hidden !important;
    background: #11151c !important;
    min-height: 310px !important;
}

.portfolio-card .portfolio-photo {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 310px !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 0 !important;
    transform: scale(1.001);
}

.portfolio-card::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(to bottom, rgba(0,0,0,.05) 0%, rgba(0,0,0,.25) 42%, rgba(0,0,0,.82) 100%) !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

.portfolio-card:hover .portfolio-photo {
    transform: scale(1.055);
    transition: transform .35s ease;
}

.portfolio-inner {
    position: relative !important;
    z-index: 2 !important;
}

.nav a[href="#portfolio"],
.footer a[href="#portfolio"] {
    pointer-events: auto !important;
    opacity: 1 !important;
    cursor: pointer !important;
}

@media (max-width: 760px) {
    .logo img {
        max-height: 68px !important;
        max-width: 300px !important;
    }

    .footer-logo img {
        max-height: 64px !important;
        max-width: 260px !important;
    }
}


/* ===== V12: rodapé ambientes corrigido ===== */
.footer a[data-open-portfolio] {
    pointer-events: auto !important;
    opacity: 1 !important;
    cursor: pointer !important;
}


/* ===== V13: correção definitiva rodapé ambientes ===== */
.footer-col h3 + ul a[data-open-portfolio] {
    color: inherit;
    pointer-events: auto !important;
    cursor: pointer !important;
}


/* ===== V14: rodapé sem menus + ajuste de textos regionais ===== */
.footer-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr) !important;
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}
