/* =========================================
   1. CONFIGURAÇÕES GLOBAIS E VARIÁVEIS
   ========================================= */
:root {
    --dark-bg: #062626;
    --orange: #f28018;
    --yellow: #fccb05;
    --white: #ffffff;
    --gray-light: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body.page-home {
    background-color: var(--gray-light);
    overflow-x: hidden;
    font-size: 18px;
}

body.page-plataformas {
    background-color: var(--gray-light);
    overflow-x: hidden;
    font-size: 14px;
}

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

.orange-bar {
    background: var(--orange);
    color: var(--white);
    text-align: center;
    padding: 22px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 24px;
}

/* =========================================
   2. HEADER E NAVEGAÇÃO (Com Logo Flutuante)
   ========================================= */
.header-main {
    background: var(--orange);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 65px;
}

.logo-wrapper {
    position: absolute;
    left: -92px;
    top: 0;
    z-index: 110;
}

.logo-side {
    height: 110px;
    width: auto;
    display: block;
    margin-top: 10px;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.2));
}

.nav-top ul {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

/* Regra unificada para links do menu superior */
.nav-top ul li a {
    background: transparent !important;
    color: var(--white) !important;
    border: none !important;
    padding: 8px 15px !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.nav-top ul li a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--dark-bg) !important;
}

.nav-top ul li a.active {
    color: var(--dark-bg) !important;
    background: rgba(255, 255, 255, 0.3) !important;
}

/* =========================================
   3. REGRAS DA HOME (.page-home)
   ========================================= */
.page-home .hero {
    background: var(--dark-bg);
    display: flex;
    min-height: 500px;
    overflow: hidden;
    padding: 0 5%;
}

.page-home .hero-content {
    flex: 1;
    padding: 80px 2%;
    color: var(--white);
    z-index: 2;
}

.page-home .hero-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.page-home .btn-saiba-mais {
    background: var(--yellow);
    color: black;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-radius: 4px;
    transition: 0.3s ease;
}

.page-home .btn-saiba-mais:hover {
    background: var(--white);
    transform: scale(1.05);
}

.page-home .hero-diagonal-bg {
    flex: 1.8;
    background: var(--white);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    padding-left: 60px;
}

.page-home .carousel-track {
    display: flex;
    gap: 20px;
    animation: slide 25s linear infinite;
}

.page-home .hero-card {
    min-width: 450px;
    height: 400px;
    border: 5px solid var(--yellow);
    overflow: hidden;
}

.page-home .hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-2000px);
    }
}

.page-home .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.page-home .product-item {
    background: var(--white);
    text-align: center;
    padding-bottom: 30px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.page-home .product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.page-home .product-item p {
    font-size: 20px;
    font-weight: bold;
    padding: 15px;
}

.page-home .img-box {
    height: 380px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.page-home .img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.page-home .leia-mais-btn {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: #333;
    padding: 2px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.page-home .product-item:hover .leia-mais-btn {
    background: var(--orange);
    color: var(--white);
}

.page-home .como-alugar-container {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.page-home .como-alugar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.page-home .balao-pergunta {
    background: var(--white);
    padding: 50px;
    border-radius: 60px 60px 60px 0;
    color: var(--dark-bg);
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}

.page-home .alugar-steps-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.page-home .step {
    /* Estilos base que você já tem */
    background-color: transparent;
    /* Necessário para o efeito de preenchimento da sombra */
    color: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid var(--orange);
    /* Borda oficial */

    /* Lógica do Botão 3: Sombra interna que preenche o balão */
    /* O primeiro valor preenche o fundo, o segundo prepara a sombra externa */
    box-shadow: 100px 100px 100px 100px var(--orange) inset, 0 0 0 0 var(--orange);

    /* Transição suave para todas as propriedades */
    transition: all 150ms ease-in-out;
}

/* Efeito Hover (Inspirado no Botão 3) */
.page-home .step:hover {
    /* Inverte a sombra: a interna encolhe e a externa cria o brilho (glow) */
    box-shadow: 0 0 0 0 var(--orange) inset, 0 0 15px 4px var(--orange);

    /* Zoom leve para complementar a interatividade */
    transform: scale(1.05);

    /* Garante que o texto continue legível (opcional: mudar para laranja se o fundo ficar branco) */
    color: var(--white);

    /* Opcional: mudar a borda para branco no hover como você queria antes */
    /* border-color: var(--white); */
}

.page-home .servicos-area {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.page-home .servicos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-home .service-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border-bottom: 6px solid var(--orange);
    transition: 0.3s ease;
}

.page-home .service-card:hover {
    transform: translateY(-8px);
}

.page-home .service-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.page-home .service-card i {
    font-size: 45px;
    color: var(--orange);
    margin-bottom: 20px;
}

/* =========================================
   4. REGRAS DE PLATAFORMAS (.page-plataformas)
   ========================================= */
.page-plataformas .tech-info-section {
    background: var(--dark-bg);
    color: #fff;
    padding: 50px 0;
}

.page-plataformas .orange-border-list p {
    border-left: 5px solid var(--orange);
    padding-left: 15px;
    margin-bottom: 10px;
}

.page-plataformas .products-detail-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.page-plataformas .product-card-detail {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid var(--orange);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.page-plataformas .product-card-detail:hover {
    transform: scale(1.02);
}

.page-plataformas .card-body {
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 30px;
    min-height: 320px;
}

.page-plataformas .img-container {
    flex: 1;
    max-width: 320px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-plataformas .img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: scale(1.15);
}

.page-plataformas .specs-wrapper {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-plataformas .specs-table {
    width: 100%;
    border-collapse: collapse;
}

.page-plataformas .specs-table td {
    padding: 12px 5px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 13px;
}

.page-plataformas .specs-table td:first-child {
    background: #fdfdfd;
    font-weight: bold;
    border-right: 4px solid var(--orange);
    width: 140px;
}

.page-plataformas .specs-table i {
    color: var(--orange);
    margin-right: 8px;
}

/* =========================================
   5. SOBRE NÓS E MAPAS
   ========================================= */
.map-section {
    padding: 50px 0;
    background: var(--white);
    text-align: center;
}

.map-section h2 {
    color: var(--dark-bg);
    margin-bottom: 30px;
}

.map-container h4 {
    margin-bottom: 15px;
    color: var(--orange);
}

.compromisso-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.compromisso-section .service-card {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
    text-align: left !important;
    padding: 0 20px !important;
}

.compromisso-section .service-card h4 {
    color: var(--white) !important;
    font-size: 22px;
    margin-bottom: 15px;
}

.compromisso-section .service-card p {
    color: var(--white) !important;
    font-size: 16px;
    line-height: 1.6;
}

/* =========================================
   6. RODAPÉ UNIFICADO (Corrigido)
   ========================================= */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 70px 0 30px;
    border-top: 4px solid var(--orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: var(--orange);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    padding-bottom: 8px;
    text-transform: uppercase;
    font-size: 16px;
}

/* Regra para links gerais no footer */
.footer-col ul li a {
    color: var(--white) !important;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    font-weight: normal !important;
    /* Remove negrito de todos */
    background: transparent !important;
    padding: 0 !important;
    display: inline-block;
    text-transform: none !important;
}

.footer-col ul li a:hover {
    color: var(--orange) !important;
    padding-left: 5px !important;
}

/* Remove o negrito específico do link de Orçamentos no Footer */
.main-footer .footer-col ul li a[href*="orcamento"] {
    font-weight: normal !important;
    text-transform: none !important;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 18px;
    transition: 0.3s;
}

.wa {
    background-color: #25d366;
}

.fb {
    background-color: #3b5998;
}

.ig {
    background-color: #e4405f;
}

.in {
    background-color: #0077b5;
}

.yt {
    background-color: #ff0000;
}

.icon:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Estado Ativo para links do Footer */
.main-footer .footer-col ul li a.active {
    color: var(--orange) !important;
    /* Destaca com o laranja oficial */
    font-weight: bold !important;
    /* Dá um pouco mais de peso */
    padding-left: 5px;
    /* Mantém o alinhamento de destaque */
}

/* Adiciona um pequeno marcador antes do link ativo (opcional, fica bem elegante) */
.main-footer .footer-col ul li a.active::before {
    content: "» ";
    color: var(--orange);
}

/* =========================================
   7. RESPONSIVIDADE
   ========================================= */
@media (max-width: 1024px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }

    .logo-wrapper {
        position: static;
        margin-bottom: 20px;
    }

    .logo-side {
        height: 80px;
        margin-top: 0;
    }

    .nav-top ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-home .hero {
        flex-direction: column;
        text-align: center;
    }

    .page-home .hero-diagonal-bg {
        clip-path: none;
        padding: 20px;
    }

    .page-home .products-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .page-plataformas .product-card-detail {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .como-alugar-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   BOTÃO CATÁLOGO - EFEITO COOL BEANS
   ========================================= */
.btn-cool-beans {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--orange);
    border-radius: 3rem;
    color: var(--orange);
    /* Cor do texto e ícone inicial */
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    /* Essencial para esconder o fundo antes do hover */
    z-index: 1;
    background: transparent;
    /* Começa transparente para o efeito aparecer */
    transition: all .2s ease-in-out;
    cursor: pointer;
}

/* O fundo laranja que desliza (Pseudo-elemento) */
.btn-cool-beans::after {
    content: '';
    background-color: var(--orange);
    border-radius: 3rem;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    /* Inicia fora da visão, à esquerda e inclinado */
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: transform .3s ease-out;
    z-index: -1;
    /* Fica atrás do texto */
}

/* Ícone do PDF */
.btn-cool-beans i {
    margin-right: 10px;
}

/* Efeito ao passar o mouse */
.btn-cool-beans:hover::after {
    transform: translate(0, 0);
    /* Desliza para dentro */
}

.btn-cool-beans:hover {
    color: var(--white) !important;
    /* Texto muda para branco */
    transform: scale(1.05);
    /* Leve aumento */
    border-color: transparent;
}

/* =========================================
   ORÇAMENTO - VALIDAÇÃO / FEEDBACK JS
   ========================================= */
.form-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 6px;
    font-weight: 600;
    line-height: 1.4;
}

.form-message.error {
    background: #ffe9e9;
    color: #8a1f1f;
    border: 1px solid #f3b2b2;
}

.form-message.success {
    background: #e9f8ef;
    color: #176b35;
    border: 1px solid #a9e0bd;
}

.input-error {
    border-color: #d93025 !important;
    box-shadow: 0 0 0 2px rgba(217, 48, 37, .12);
}

@media (max-width: 768px) {
    #orcamento-form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================
   PLATAFORMAS - VITRINE COMERCIAL V2
   ========================================= */
.platforms-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0b3a38 58%, var(--orange) 58%, var(--orange) 100%);
    color: var(--white);
    padding: 72px 0 58px;
}

.platforms-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    color: var(--yellow);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    margin-bottom: 12px;
}

.platforms-hero h1 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.platforms-hero p {
    font-size: 17px;
    line-height: 1.65;
    max-width: 680px;
    color: rgba(255, 255, 255, .88);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-outline-platform {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .7);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    transition: .2s ease;
}

.btn-outline-platform:hover {
    background: #fff;
    color: var(--dark-bg);
}

.platforms-hero-card {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 26px;
    padding: 16px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.platforms-hero-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.platforms-summary {
    background: #fff;
    margin-top: -1px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.summary-item {
    background: #f7f8fa;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .05);
}

.summary-item strong {
    display: block;
    color: var(--dark-bg);
    font-size: 25px;
    margin-bottom: 6px;
}

.summary-item span {
    color: #60656d;
    font-weight: 650;
}

.platforms-section {
    padding: 76px 0;
    background: #f7f8fa;
}

.platforms-title {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.platforms-title h2 {
    color: var(--dark-bg);
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 12px;
}

.platforms-title p {
    color: #5f6670;
    line-height: 1.65;
    font-size: 16px;
}

.platform-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0 40px;
}

.platform-filter {
    border: 1px solid #d7dce2;
    background: #fff;
    color: #222;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.platform-filter.active,
.platform-filter:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.platform-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.12);
}

.platform-card.featured {
    border: 2px solid var(--orange);
}

.platform-card[hidden] {
    display: none !important;
}

.platform-card-media {
    background: #f0f2f3;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.platform-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.platform-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.platform-tag {
    display: inline-block;
    width: fit-content;
    padding: 7px 13px;
    border-radius: 999px;
    background: #fff1dc;
    color: #9a4a00;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.platform-tag.dark {
    background: #173937;
    color: #fff;
}

.platform-card h3 {
    margin: 14px 0 10px;
    font-size: 20px;
    color: var(--dark-bg);
    line-height: 1.25;
}

.platform-card p {
    color: #5d636b;
    line-height: 1.55;
    margin-bottom: 16px;
}

.platform-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.platform-card li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 9px;
    color: #30343a;
}

.platform-card li i {
    color: var(--orange);
    margin-top: 3px;
    min-width: 16px;
}

.platform-card li strong {
    margin-right: 4px;
}

.btn-platform-card {
    margin-top: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: var(--dark-bg);
    color: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900;
    transition: .2s ease;
}

.btn-platform-card:hover {
    background: var(--orange);
    color: #fff;
}

.platform-cta-section {
    background: var(--dark-bg);
    padding: 56px 0;
    color: #fff;
}

.platform-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.platform-cta-box h2 {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 8px;
}

.platform-cta-box p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .platforms-hero-inner,
    .summary-grid,
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platforms-hero {
        background: var(--dark-bg);
    }
}

@media (max-width: 768px) {
    .platforms-hero-inner,
    .summary-grid,
    .platform-grid,
    .platform-cta-box {
        grid-template-columns: 1fr;
    }

    .platform-cta-box {
        display: grid;
        text-align: center;
    }

    .platforms-hero-card img {
        height: 260px;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .platforms-hero {
        padding: 46px 0 38px;
    }

    .platforms-section {
        padding: 50px 0;
    }

    .platform-card-media {
        height: 170px;
    }
}

/* =========================================
   HERO COMERCIAL - MUNCK E RETRO V4
   ========================================= */
.equipment-hero {
    position: relative;
    overflow: hidden;
}

.equipment-hero::after {
    content: '';
    position: absolute;
    right: -90px;
    top: 0;
    width: 42%;
    height: 100%;
    background: rgba(242, 128, 24, .22);
    transform: skewX(-18deg);
    pointer-events: none;
}

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

.munck-hero {
    background: linear-gradient(135deg, #061e32 0%, #082a44 58%, var(--orange) 58%, var(--orange) 100%);
}

.retro-hero {
    background: linear-gradient(135deg, #061e32 0%, #082a44 58%, var(--orange) 58%, var(--orange) 100%);
}

.equipment-hero-card {
    position: relative;
    overflow: hidden;
}

.equipment-hero-card::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.68) 100%);
    z-index: 1;
    pointer-events: none;
}

.equipment-hero-card img {
    filter: saturate(1.06) contrast(1.02);
}

.hero-card-caption {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 32px;
    z-index: 2;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.08;
    text-shadow: 0 3px 14px rgba(0,0,0,.45);
}

@media (max-width: 1024px) {
    .equipment-hero::after {
        display: none;
    }

    .munck-hero,
    .retro-hero {
        background: #061e32;
    }
}

@media (max-width: 560px) {
    .hero-card-caption {
        left: 28px;
        right: 28px;
        bottom: 26px;
        font-size: 17px;
    }
}


/* =========================================
   CATÁLOGO DE EQUIPAMENTOS - V5
   ========================================= */
.page-catalogo .catalog-hero {
    background: linear-gradient(135deg, #061e32 0%, #082a44 58%, var(--orange) 58%, var(--orange) 100%);
}

.catalog-intro {
    background: #f6f7f9;
    padding: 42px 0 18px;
}

.catalog-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.catalog-summary-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.05);
}

.catalog-summary-card i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    background: var(--yellow);
    margin-bottom: 14px;
    font-size: 20px;
}

.catalog-summary-card strong {
    display: block;
    color: #111;
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.catalog-summary-card span {
    color: #555;
    line-height: 1.55;
}

.catalog-section {
    background: #f6f7f9;
    padding: 48px 0 70px;
}

.catalog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 38px;
}

.catalog-filter {
    border: 1px solid #d9dee6;
    background: #fff;
    color: #222;
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: all .2s ease;
}

.catalog-filter.active,
.catalog-filter:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-1px);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.catalog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 14px 34px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
}

.catalog-card-media {
    height: 190px;
    position: relative;
    overflow: hidden;
    background: #071f33;
}

.catalog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.04) contrast(1.02);
    transition: transform .25s ease;
}

.catalog-card:hover .catalog-card-media img {
    transform: scale(1.04);
}

.catalog-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.58) 100%);
}

.catalog-tag {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 1;
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--yellow);
    color: #111;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.catalog-tag.dark {
    background: #061e32;
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
}

.catalog-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.catalog-brand {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .78rem;
    margin-bottom: 8px;
}

.catalog-card h3 {
    color: #111;
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 5px;
}

.catalog-card h4 {
    color: #475569;
    font-size: .98rem;
    margin-bottom: 12px;
}

.catalog-card p {
    color: #555;
    line-height: 1.52;
    margin-bottom: 16px;
}

.catalog-card ul {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.catalog-card li {
    color: #333;
    margin-bottom: 7px;
}

.catalog-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-catalog-download,
.btn-catalog-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    min-height: 42px;
    padding: 0 16px;
    font-weight: 900;
    text-decoration: none;
    font-size: .88rem;
}

.btn-catalog-download {
    background: var(--orange);
    color: #fff;
}

.btn-catalog-quote {
    background: transparent;
    color: var(--orange);
    border: 1px solid var(--orange);
}

.catalog-note-section {
    background: #061e32;
    padding: 50px 0;
}

.catalog-note-box {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 34px;
    color: #fff;
}

.catalog-note-box h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.catalog-note-box p {
    color: rgba(255,255,255,.82);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .catalog-summary-grid,
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .catalog-summary-grid,
    .catalog-grid,
    .catalog-note-box {
        grid-template-columns: 1fr;
    }

    .catalog-note-box {
        text-align: center;
    }

    .catalog-card-media {
        height: 170px;
    }
}

/* Ajustes Catálogo - Muncks e Retroescavadeiras */
.catalog-tag.orange {
  background: #ff6b00;
  color: #fff;
}

.catalog-tag.yellow {
  background: #f6c400;
  color: #1d1d1d;
}

.catalog-card[data-type="munck"] .catalog-card-media::after,
.catalog-card[data-type="retroescavadeira"] .catalog-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.28));
  pointer-events: none;
}

/* =========================================
   ORÇAMENTO - HERO E FORMULÁRIO V7
   ========================================= */
body.page-orcamento,
body.page-plataformas {
    background: #f6f7f9;
}

.quote-hero {
    background: linear-gradient(135deg, #061e32 0%, #082a44 58%, var(--orange) 58%, var(--orange) 100%);
}

.quote-hero-card img {
    object-position: center;
}

.btn-quote-primary,
.btn-quote-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    transition: .2s ease;
}

.btn-quote-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 28px rgba(242, 128, 24, .28);
}

.btn-quote-primary:hover {
    background: #ff922b;
    transform: translateY(-1px);
}

.btn-quote-secondary {
    border: 2px solid rgba(255, 255, 255, .72);
    color: #fff;
}

.btn-quote-secondary:hover {
    background: #fff;
    color: #061e32;
}

.quote-summary-section {
    background: #fff;
    padding: 34px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.quote-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.quote-summary-card {
    background: #f6f7f9;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.quote-summary-card i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: #111;
    font-size: 20px;
    margin-bottom: 14px;
}

.quote-summary-card strong {
    display: block;
    color: #111;
    font-size: 1.06rem;
    margin-bottom: 8px;
}

.quote-summary-card span {
    color: #555;
    line-height: 1.55;
}

.quote-form-section {
    background: #f6f7f9;
    padding: 70px 0;
}

.quote-layout {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 28px;
    align-items: start;
}

.quote-info-panel,
.quote-form-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 16px 44px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.06);
}

.quote-info-panel {
    padding: 34px;
    position: sticky;
    top: 24px;
    overflow: hidden;
}

.quote-info-panel::before {
    content: '';
    position: absolute;
    right: -90px;
    top: -90px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(242,128,24,.12);
}

.eyebrow.dark {
    color: var(--orange);
}

.quote-info-panel h2,
.quote-form-header h2,
.quote-section-title h2 {
    color: #111;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.12;
    margin-bottom: 12px;
}

.quote-info-panel > p,
.quote-form-header p,
.quote-section-title p {
    color: #5d636b;
    line-height: 1.65;
}

.quote-steps {
    display: grid;
    gap: 18px;
    margin: 28px 0;
}

.quote-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
}

.quote-step > span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #061e32;
    color: #fff;
    font-weight: 900;
}

.quote-step strong {
    display: block;
    color: #111;
    margin-bottom: 4px;
}

.quote-step p {
    color: #60656d;
    line-height: 1.5;
    margin: 0;
}

.quote-contact-box {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #f1fff5;
    border: 1px solid rgba(31,181,86,.18);
    border-radius: 18px;
    padding: 18px;
}

.quote-contact-box i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    font-size: 23px;
}

.quote-contact-box strong {
    display: block;
    color: #111;
    margin-bottom: 3px;
}

.quote-contact-box a {
    color: #128c3b;
    font-weight: 900;
    text-decoration: none;
}

.quote-form-card {
    padding: 34px;
}

.quote-form-header {
    margin-bottom: 26px;
}

#orcamento-form {
    display: grid;
    gap: 20px;
}

.form-row.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field label {
    display: block;
    color: #111;
    font-weight: 900;
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #d9dee6;
    background: #fff;
    color: #111;
    border-radius: 14px;
    padding: 14px 15px;
    font: inherit;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(242,128,24,.14);
}

.input-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220,38,38,.11) !important;
}

.btn-quote-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 999px;
    padding: 15px 24px;
    background: var(--orange);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .02em;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 0 12px 28px rgba(242,128,24,.25);
}

.btn-quote-submit:hover {
    background: #ff922b;
    transform: translateY(-1px);
}

.btn-quote-submit:disabled {
    opacity: .75;
    cursor: not-allowed;
    transform: none;
}

.quote-equipment-section {
    background: #fff;
    padding: 62px 0 76px;
}

.quote-section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.quote-equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.quote-equipment-card {
    position: relative;
    min-height: 220px;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

.quote-equipment-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.quote-equipment-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 34%, rgba(0,0,0,.78) 100%);
}

.quote-equipment-card span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900;
    text-shadow: 0 2px 12px rgba(0,0,0,.38);
}

.quote-equipment-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .quote-hero {
        background: #061e32;
    }

    .quote-layout,
    .quote-summary-grid,
    .quote-equipment-grid {
        grid-template-columns: 1fr;
    }

    .quote-info-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .quote-form-section {
        padding: 48px 0;
    }

    .quote-info-panel,
    .quote-form-card {
        padding: 24px;
        border-radius: 20px;
    }

    .form-row.two {
        grid-template-columns: 1fr;
    }

    .quote-equipment-card {
        min-height: 190px;
    }
}

.step-link,
.step-link:visited,
.step-link:hover,
.step-link:active,
.step-link:focus {
   color: #fff;
   text-decoration: none;
}

.step-link {
    display:block;
}