@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== NAVBAR ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    overflow-x: hidden;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    background: url('../img/imagem\ 1\ banner.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 22px);
    margin-bottom: 36px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: 300ms;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-primary {
    background: #1abc9c;
    color: #fff;
}

.btn-primary:hover {
    background: #16a085;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1da851;
}

.btn-whatsapp img {
    width: 22px;
}

/* ===================== DIFERENCIAIS ===================== */
.diferenciais {
    padding: 80px 20px;
    background: #f9f9f9;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.diferencial-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border-bottom: 4px solid #1abc9c;
    transition: 300ms;
}

.diferencial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.diferencial-icon {
    background: #1abc9c1a;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.diferencial-icon img {
    width: 36px;
}

.diferencial-item h4 {
    font-size: 15px;
    font-weight: 800;
    color: #222;
    margin-bottom: 8px;
}

.diferencial-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* ===================== NOSSOS SERVIÇOS ===================== */
.servicos-manutencao {
    padding: 80px 20px;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    color: #222;
    margin-bottom: 12px;
}

.section-title p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.servico-card {
    background: #101010;
    border-radius: 16px;
    padding: 36px 28px;
    color: #fff;
    transition: 300ms;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.servico-icon {
    background: #1abc9c;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.servico-icon img {
    width: 30px;
    filter: brightness(0) invert(1);
}

.servico-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1abc9c;
}

.servico-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* ===================== PROCESSO TÉCNICO ===================== */
.processo {
    padding: 80px 20px;
    background: #f9f9f9;
}

.processo-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.processo-text {
    flex: 1;
    min-width: 280px;
}

.processo-text h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 900;
    color: #222;
    margin-bottom: 16px;
}

.processo-text > p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}

.processo-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.processo-lista li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.processo-lista li img {
    width: 22px;
    flex-shrink: 0;
}

.processo-image {
    flex: 1;
    min-width: 280px;
}

.processo-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ===================== QUEM CONFIA ===================== */
.confia {
    padding: 80px 20px;
    background: #101010;
    color: #fff;
}

.confia .section-title h2 {
    color: #fff;
}

.confia .section-title p {
    color: #aaa;
}

.confia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.confia-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #1c1c1c;
    padding: 28px;
    border-radius: 16px;
    border-left: 4px solid #1abc9c;
    transition: 300ms;
}

.confia-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.confia-icon {
    background: #1abc9c;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.confia-icon img {
    width: 28px;
    filter: brightness(0) invert(1);
}

.confia-item h4 {
    font-size: 16px;
    font-weight: 800;
    color: #1abc9c;
    margin-bottom: 6px;
}

.confia-item p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}

/* ===================== CTA FINAL ===================== */
.cta-final {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-final .btn-primary {
    background: #fff;
    color: #1abc9c;
}

.cta-final .btn-primary:hover {
    background: #f0f0f0;
}

.cta-final .btn-whatsapp {
    background: #101010;
    color: #fff;
}

.cta-final .btn-whatsapp:hover {
    background: #222;
}

/* ===================== BOTÃO TOPO ===================== */
#btnTopo {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 99;
    background: #1abc9c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 300ms;
}

#btnTopo:hover {
    background: #16a085;
    transform: translateY(-3px);
}

/* ===================== FOOTER ===================== */
.footer {
    background-color: #101010;
    color: #fff;
    padding-top: 60px;
}

.logo-footer img {
    width: 100%;
    max-width: 2000px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.footer-container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px 40px;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a img {
    width: 24px;
    height: 24px;
}

.footer-col a:hover {
    opacity: 0.7;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100px;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 13px;
}

.footer-bottom a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: bold;
    transition: 300ms;
}

.footer-bottom a:hover {
    color: #ff3131;
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .processo-wrapper {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .socials {
        align-items: center;
    }

    .footer-col h4,
    .footer-col p,
    .footer-col ul,
    .footer-col li,
    .footer-col a {
        text-align: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}

/* ===================== SISTEMAS ELÉTRICOS ===================== */
.eletrico {
    padding: 80px 20px;
    background: #0a0a0a;
    color: #fff;
}

.eletrico .section-title h2 {
    color: #fff;
}

.eletrico .section-title p {
    color: #aaa;
}

.eletrico-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 20px;
}

.eletrico-caso {
    background: #111;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #222;
}

.eletrico-caso-titulo {
    font-size: 18px;
    font-weight: 800;
    color: #1abc9c;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eletrico-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.eletrico-foto {
    position: relative;
    flex: 1;
    min-width: 160px;
    max-width: 220px;
}

.eletrico-label-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    transform: none;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
    white-space: nowrap;
    letter-spacing: 1px;
}

.depois-badge {
    background: #1abc9c;
}

.painel-badge {
    background: #2c6fad;
}

.eletrico-placeholder {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    padding-bottom: 20px;
}

.eletrico-placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
}

.eletrico-arrow-icon {
    font-size: 22px;
    color: #1abc9c;
    flex-shrink: 0;
    opacity: 0.8;
}

/* ===================== INTEGRAÇÃO VEICULAR ===================== */
.veicular {
    padding: 80px 20px;
    background: #111;
    color: #fff;
}

.veicular-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.veicular-text {
    flex: 1;
    min-width: 280px;
}

.veicular-text h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.veicular-text > p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 32px;
}

.veicular-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.veicular-card {
    background: #1a1a1a;
    border-left: 4px solid #444;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    transition: 300ms;
}

.veicular-card:hover {
    border-left-color: #1abc9c;
    background: #1c2c1c;
}

.veicular-card.destaque-veicular {
    border-left-color: #1abc9c;
    background: #1c2c1c;
}

.veicular-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: #1abc9c;
    margin-bottom: 10px;
}

.veicular-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.veicular-card ul li {
    font-size: 13px;
    color: #bbb;
    padding-left: 12px;
    position: relative;
}

.veicular-card ul li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: #1abc9c;
    font-size: 18px;
    line-height: 1;
    top: -1px;
}

.veicular-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veicular-image img{
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===================== MARCAS REDESIGN ===================== */
.marcas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.marcas-principal-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 2px solid #0057a810;
}

.marcas-nossa-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #1abc9c;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.marcas-principal-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-top: 8px;
}

.marcas-secundarias {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marcas-outras-label {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marcas-tags-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.marca-tag-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    padding: 12px 20px;
    border-radius: 10px;
    transition: 200ms;
}

.marca-tag-v2.forcelift {
    background: #1a1a1a;
    color: #fff;
}

.marca-tag-v2.forcelift strong {
    color: #f39c12;
}

.marca-tag-v2.genie {
    background: #e8f4ff;
    color: #0066cc;
    font-style: italic;
}

.marca-tag-v2.genie em {
    font-size: 22px;
}

.marca-tag-v2.jlg {
    background: #fff8e1;
    color: #f39c12;
    font-size: 22px;
    line-height: 1.2;
}

.marcas-certif-card {
    background: #0d1a0d;
    border-radius: 20px;
    padding: 28px;
    color: #fff;
    border: 1px solid #1abc9c33;
}

.marcas-certif-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.marcas-certif-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: #1abc9c;
    margin-bottom: 12px;
}

.marcas-certif-card p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

/* ===================== PRONTIDÃO EM CAMPO ===================== */
.prontidao {
    position: relative;
    background: url('../img/imagem\ 1\ banner.png') center / cover no-repeat;
    padding: 100px 20px;
    overflow: hidden;
}

.prontidao-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 50%, rgba(26,188,156,0.3) 100%);
}

.prontidao-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.prontidao-text {
    max-width: 560px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(26,188,156,0.3);
}

.prontidao-text h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.prontidao-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 28px;
}

.prontidao-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.prontidao-badge {
    background: rgba(26,188,156,0.2);
    border: 1px solid rgba(26,188,156,0.5);
    color: #1abc9c;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
}

/* ===================== CTA INFO ===================== */
.cta-contato-info {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* ===================== SECTION LABEL ===================== */
.section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #1abc9c;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

/* ===================== COMPROMISSO ===================== */
.compromisso {
    padding: 80px 20px;
    background: #fff;
}

.compromisso-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.compromisso-image {
    flex: 1;
    min-width: 280px;
}

.compromisso-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.compromisso-text {
    flex: 1;
    min-width: 280px;
}

.compromisso-text h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 900;
    color: #222;
    margin-bottom: 16px;
}

.compromisso-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
}

.compromisso-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-size: 24px;
    font-weight: 900;
    color: #1abc9c;
}

.stat-label {
    font-size: 12px;
    color: #888;
    font-weight: 600;
}

/* ===================== CICLO ===================== */
.ciclo {
    padding: 80px 20px;
    background: #f9f9f9;
}

.ciclo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: center;
    margin-top: 20px;
}

.ciclo-card {
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}

.ciclo-verde {
    background: #1abc9c;
    color: #fff;
}

.ciclo-escuro {
    background: #333;
    color: #fff;
}

.ciclo-cinza {
    background: #888;
    color: #fff;
}

.ciclo-num {
    font-size: 36px;
    font-weight: 900;
    opacity: 0.5;
    margin-bottom: 12px;
}

.ciclo-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ciclo-card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
}

.ciclo-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ciclo-logo img {
    width: 80px;
}

.ciclo-arrow {
    font-size: 40px;
    color: #1abc9c;
}

/* ===================== CORRETIVA ===================== */
.corretiva {
    padding: 80px 20px;
    background: #111;
    color: #fff;
}

.corretiva-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.corretiva-image {
    flex: 1;
    min-width: 280px;
}

.corretiva-image img {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.corretiva-text {
    flex: 1;
    min-width: 280px;
}

.corretiva-text h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 28px;
}

.corretiva-itens {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.corretiva-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.corretiva-dot {
    width: 14px;
    height: 14px;
    background: #1abc9c;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 4px;
}

.corretiva-item h4 {
    font-size: 16px;
    font-weight: 800;
    color: #1abc9c;
    margin-bottom: 6px;
}

.corretiva-item p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
}

/* ===================== REFORMA ===================== */
.reforma {
    padding: 80px 20px;
    background: #fff;
}

.reforma-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.reforma-card {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 32px 24px;
    border-top: 4px solid #1abc9c;
    transition: 300ms;
}

.reforma-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.reforma-num {
    width: 46px;
    height: 46px;
    background: #1abc9c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 18px;
}

.reforma-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}

.reforma-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===================== PILARES ===================== */
.pilares {
    padding: 80px 20px;
    background: #0a0a0a;
    background-image: url('../img/DestaquePTA.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.pilares::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.82);
}

.pilares .container {
    position: relative;
    z-index: 1;
}

.pilares .section-title h2 {
    color: #fff;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.pilar-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26,188,156,0.25);
    border-radius: 16px;
    padding: 36px 28px;
    transition: 300ms;
}

.pilar-card:hover {
    background: rgba(26,188,156,0.1);
    border-color: #1abc9c;
    transform: translateY(-4px);
}

.pilar-num {
    font-size: 52px;
    font-weight: 900;
    color: rgba(26,188,156,0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.pilar-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.pilar-card p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

/* ===================== MARCAS ===================== */
.marcas {
    padding: 80px 20px;
    background: #fff;
}

/* ===================== CHECK (preventiva) ===================== */
.check {
    color: #1abc9c;
    font-weight: 900;
    font-size: 18px;
}

.destaque-box {
    background: #1abc9c1a;
    border-left: 4px solid #1abc9c;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin-top: 24px;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 1.5;
}

/* ===================== HERO LABEL ===================== */
.hero-label {
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
    color: #1abc9c;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-content h1 span {
    color: #1abc9c;
}

.hero-sub {
    font-size: clamp(15px, 1.8vw, 20px) !important;
    margin-bottom: 36px !important;
}

/* ===================== RESPONSIVO NOVO ===================== */
@media (max-width: 900px) {
    .marcas-layout {
        grid-template-columns: 1fr;
    }

    .veicular-wrapper {
        flex-direction: column;
    }

    .compromisso-wrapper,
    .corretiva-wrapper {
        flex-direction: column;
    }

    .eletrico-row {
        gap: 10px;
    }

    .eletrico-label-badge {
    bottom: -10px;
    }
}

@media (max-width: 600px) {
    .prontidao-content {
        justify-content: center;
    }

    .prontidao-text {
        padding: 28px 20px;
    }

    .eletrico-foto {
        min-width: 100px;
        max-width: 140px;
    }
}

/* Imagens reais na seção elétrica */
.eletrico-foto img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #333;
    display: block;
}

.eletrico-infografico {
    width: 100%;
}

.eletrico-infografico img {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid #333;
    display: block;
}

/* Logos reais na seção de marcas */
.marcas-logo-principal {
    width: 100%;
    max-width: 180px;
    height: 70px;
    object-fit: contain;
    margin: 12px 0;
}

/* Row de logos substituindo as .marcas-tags-row */
.marcas-logos-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Cada logo em sua caixa colorida — mesma estrutura do .marca-tag-v2 */
.marca-logo-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 10px;
    transition: 200ms;
    min-height: 54px;
}

.marca-logo-item.forcelift {
    background: #1a1a1a;
}

.marca-logo-item.genie {
    background: #e8f4ff;
}

.marca-logo-item.jlg {
    background: #fff8e1;
}

.marca-logo-item img {
    height: 32px;
    width: auto;
    max-width: 140px;
    object-fit: cover;
    display: block;
}

/* Force Lift e JLG já têm fundo escuro/claro na própria imagem — remover filtro */
.marca-logo-item.forcelift img {
    filter: brightness(0) invert(1);
    height: 28px;
    width: 100px;
}

.marca-logo-item.genie img {
    filter: none;
    height: 34px;
    width: 100px;
}

.marca-logo-item.jlg img {
    filter: none;
    height: 36px;
    width: 100px;
}
