/* =========================================================
   UNIFORMES EXPRESSO — V3 CSS (Layout King Malharia)
   Cores: Vermelho #D71920 | Azul Marinho #1A2E5B
   Font: Outfit (Google Fonts)
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    --red: #D71920;
    --red-dk: #B5151B;
    --navy: #1A2E5B;
    --navy-dk: #132244;
    --dark: #111111;
    --gray: #f5f5f5;
    --text: #333;
    --white: #ffffff;
    --radius: 16px;
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    --transition: all .3s ease;
}

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

/* ============ HEADER — 100% width & sticky ============ */
header#main-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 999;
    background: var(--white) !important;
    padding: 0 !important;
    float: none !important;
    width: 100% !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08) !important;
}

header#main-header .row {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
    height: 80px;
    box-shadow: none !important;
    margin: 0 !important;
}

header#main-header .logo {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    height: 80px !important;
}

header#main-header .logo img {
    max-height: 68px !important;
    margin: 0 !important;
    width: auto !important;
    transition: var(--transition) !important;
}

header#main-header nav#main_nav {
    display: flex !important;
    float: none !important;
    align-items: center !important;
    height: 80px !important;
}

header#main-header nav#main_nav ul {
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 5px;
}

header#main-header nav#main_nav ul li {
    display: flex !important;
    float: none !important;
    margin: 0 !important;
}

header#main-header nav#main_nav ul li a {
    display: inline-flex !important;
    align-items: center !important;
    float: none !important;
    padding: 10px 20px !important;
    line-height: normal !important;
    height: auto !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: var(--navy) !important;
    background: transparent !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    transition: var(--transition) !important;
    white-space: nowrap !important;
}

header#main-header nav#main_nav ul li a:hover,
header#main-header nav#main_nav ul li a.nav_on {
    background: rgba(26, 46, 91, 0.08) !important;
    color: var(--red) !important;
}

header#main-header nav#main_nav ul li a:after {
    display: none !important;
}

header#main-header nav#main_nav ul li.menu_orcamento a {
    background: var(--red) !important;
    color: #fff !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(215, 25, 32, 0.4) !important;
    font-weight: 700 !important;
}

header#main-header nav#main_nav ul li.menu_orcamento a:hover {
    background: var(--red-dk) !important;
    transform: translateY(-2px) !important;
}

.bt-navbar {
    display: none !important;
    background: var(--red) !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 991px) {
    header#main-header .row {
        border-radius: 0 !important;
        padding: 0 !important;
        height: 70px;
    }

    header#main-header .logo {
        height: 70px !important;
    }

    header#main-header nav#main_nav {
        display: none !important;
    }

    .bt-navbar {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

/* ============ MOBILE SIDE MENU ============ */
#side_menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: var(--navy);
    z-index: 9999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

#side_menu.push_side_menu_left {
    left: 0;
}

#side_menu ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

#side_menu ul li a {
    display: block;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

#side_menu ul li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--red);
}

/* ============ HERO ============ */
.km-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background: var(--dark) top/cover no-repeat;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    float: none !important;
}

.km-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 46, 91, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.km-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 30px;
}

.km-hero-content h1 {
    font-size: 40px;
    font-weight: 400 !important;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.km-hero-content p {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
    line-height: normal;
}

/* Hero overlapping card (King Malharia style) */
.km-hero-card {
    position: relative;
    z-index: 3;
    margin-top: -100px;
    background: var(--navy-dk);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.km-hero-card-inner {
    display: flex;
    align-items: stretch;
}

.km-hero-card-img {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.km-hero-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    min-height: 280px;
    padding: 25px;
}

.km-hero-card-text {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.km-hero-card-text p {
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .km-hero-card-inner {
        flex-direction: column;
    }

    .km-hero-card-img {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .km-hero-card-img img {
        min-height: 200px;
        height: 200px;
        padding: 15px;
    }

    .km-hero-card-text {
        padding: 30px;
    }

    .km-hero-card {
        margin-top: -60px;
    }
}

/* Scroll indicator */
.km-scroll-indicator {
    text-align: center;
    padding: 40px 0;
}

.km-scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--navy);
    border-radius: 14px;
    margin: 0 auto 10px;
    position: relative;
}

.km-scroll-indicator .mouse .wheel {
    width: 4px;
    height: 8px;
    background: var(--red);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 22px;
    }
}

.km-scroll-indicator i {
    color: var(--navy);
    font-size: 18px;
    display: block;
}

/* ============ BUTTONS ============ */
.km-btn-hero {
    display: inline-block;
    background: var(--red);
    color: #fff !important;
    padding: 18px 50px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(215, 25, 32, 0.4);
}

.km-btn-hero:hover {
    background: var(--red-dk);
    transform: translateY(-3px) scale(1.02);
}

.km-btn-primary {
    display: inline-block;
    background: var(--red);
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(215, 25, 32, 0.3);
}

.km-btn-primary:hover {
    background: var(--red-dk);
    transform: translateY(-3px) scale(1.02);
}

.km-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--red) !important;
    border: 2px solid var(--red);
    padding: 10px 25px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: var(--transition);
}

.km-btn-outline:hover {
    background: var(--red);
    color: #fff !important;
    border-color: var(--red);
}

.km-produto-card .km-btn-outline {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.km-produto-card .km-btn-outline:hover {
    border-color: var(--red);
    background: var(--red);
}

/* ============ LABELS ============ */
.km-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 12px;
}

.km-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.km-section-header h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.km-section-header h2 strong {
    color: var(--red);
}

/* ============ SOBRE — White bg + watermark (King Malharia style) ============ */
.km-sobre {
    background: #fff !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    float: none !important;
    width: 100%;
}

.km-sobre-watermark {
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.03;
    pointer-events: none;
    width: 50%;
}

.km-sobre-watermark img {
    width: 100%;
}

.km-sobre-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.km-sobre-img {
    flex: 0 0 45%;
    max-width: 45%;
}

.km-sobre-img img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    display: block;
    border-radius: var(--radius);
}

.km-sobre-texto {
    flex: 1;
    padding: 20px 0;
}

.km-sobre-texto .km-label {
    color: var(--red);
}

.km-sobre-texto h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.km-sobre-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .km-sobre-inner {
        flex-direction: column;
        gap: 30px;
    }

    .km-sobre-img {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .km-sobre-img img {
        height: 300px;
    }
}

/* ============ SEGMENT BANNER (King Malharia full-width band) ============ */
.km-segment-banner {
    background: var(--red) !important;
    padding: 20px 0;
    text-align: center;
    float: none !important;
    width: 100%;
}

.km-segment-banner h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.km-segments {
    background: var(--gray) !important;
    padding: 50px 0;
    float: none !important;
    width: 100%;
}

.km-segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.km-segment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.km-segment-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.km-segment-item i {
    font-size: 28px;
    color: var(--red);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(215, 25, 32, 0.08);
    border-radius: 12px;
    flex-shrink: 0;
}

.km-segment-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

@media (max-width: 768px) {
    .km-segments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .km-segment-banner h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .km-segments-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ MID CTA SECTION ============ */
.km-mid-cta {
    background: #fff !important;
    padding: 80px 0;
    text-align: center !important;
    float: none !important;
    width: 100%;
}

.km-mid-cta h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 30px;
}

.km-mid-cta h2 strong {
    color: var(--red);
}

/* ============ PRODUTOS — Dark background alternating rows ============ */
.km-produtos {
    background: var(--dark) !important;
    padding: 80px 0;
    position: relative;
    float: none !important;
    width: 100%;
}

.km-produtos .km-section-header {
    margin-bottom: 40px;
    text-align: center;
}

.km-produtos .km-section-header h2 {
    color: #FFE600 !important;
    font-size: clamp(34px, 4.5vw, 46px);
    font-weight: 700;
    text-transform: none;
}

.km-produtos-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1.5px solid #FFE600;
}

.km-produtos-row:first-of-type {
    padding-top: 20px;
}

.km-produtos-col-img {
    flex: 0 0 45%;
    max-width: 45%;
}

.km-produtos-col-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.km-produtos-col-info {
    flex: 1;
    color: #ffffff;
}

.km-produtos-col-info h3 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 20px;
}

.km-produtos-col-info h3 span.highlight {
    color: #FFE600;
}

.km-produtos-checklist {
    margin-top: 15px;
    margin-bottom: 25px;
}

.km-produtos-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 500;
}

.km-produtos-checkbox {
    width: 22px;
    height: 22px;
    background: #FFE600;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
}

.km-produtos-badge {
    display: inline-block;
    background: #FFE600;
    color: #111111 !important;
    font-weight: 700;
    font-size: clamp(14px, 1.8vw, 16px);
    padding: 12px 28px;
    border-radius: 50px;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.25);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .km-produtos-row {
        flex-direction: column !important;
        gap: 30px;
        padding: 40px 0;
    }

    .km-produtos-row.km-row-reverse {
        flex-direction: column-reverse !important;
    }

    .km-produtos-col-img {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .km-produtos-col-info {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .km-produtos-checklist {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ============ PORTFÓLIO (Clientes Slider) ============ */
.km-portfolio {
    background: var(--gray) !important;
    padding: 80px 0;
    float: none !important;
    width: 100%;
    overflow: hidden;
}

.km-portfolio .km-section-header {
    margin-bottom: 50px;
}

.km-portfolio .km-section-header h2 {
    font-size: clamp(34px, 4.5vw, 46px);
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
    line-height: 1.2;
    text-align: center;
}

.km-portfolio-carousel {
    position: relative;
    padding: 0 40px;
}

.km-portfolio-slide {
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.km-portfolio-circle {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: #1A2E5B !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(26, 46, 91, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    padding: 18px;
}

.km-portfolio-circle:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(26, 46, 91, 0.22);
}

.km-portfolio-circle img {
    max-width: 90%;
    max-height: 90%;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

/* Owl Controls custom style for Portfolio (Client logo slider) */
.km-portfolio .owl-controls {
    margin-top: 25px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.km-portfolio .owl-pagination {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.km-portfolio .owl-pagination .owl-page {
    display: inline-block;
    cursor: pointer;
}

.km-portfolio .owl-pagination .owl-page span {
    display: block;
    width: 8px;
    height: 8px;
    background: #cccccc !important;
    border-radius: 50%;
    transition: all .3s ease;
    margin: 0 !important;
    opacity: 1 !important;
}

.km-portfolio .owl-pagination .owl-page.active span {
    background: #000000 !important;
    transform: scale(1.1);
}

.km-portfolio .owl-buttons .owl-prev,
.km-portfolio .owl-buttons .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent !important;
    color: #cccccc !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 20;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.km-portfolio .owl-buttons .owl-prev {
    left: -20px;
}

.km-portfolio .owl-buttons .owl-next {
    right: -20px;
}

.km-portfolio .owl-buttons .owl-prev:hover,
.km-portfolio .owl-buttons .owl-next:hover {
    color: #999999 !important;
    background: transparent !important;
}

@media (max-width: 768px) {
    .km-portfolio-carousel {
        padding: 0 10px;
    }

    .km-portfolio-circle {
        width: 130px;
        height: 130px;
        padding: 14px;
    }

    .km-portfolio .owl-buttons {
        display: none !important;
        /* Hide arrows on mobile for better space */
    }
}

/* ============ DEPOIMENTOS ============ */
.km-depoimentos {
    background: var(--navy) !important;
    padding: 80px 0;
    float: none !important;
    width: 100%;
}

.km-depoimentos .km-section-header {
    margin-bottom: 40px;
}

.km-depoimentos .km-section-header h2 {
    color: #fff !important;
    font-size: clamp(28px, 4vw, 42px);
}

.km-depoimentos .km-label {
    color: rgba(255, 255, 255, 0.6) !important;
}

.km-depoimentos-slider {
    margin-top: 20px;
}

.km-dep-item {
    padding: 10px 15px 30px;
}

.km-dep-card-whatsapp {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.km-dep-card-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.km-dep-card-whatsapp img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

/* Owl pagination for depoimentos */
.km-depoimentos .owl-controls {
    margin-top: 30px;
    text-align: center;
}

.km-depoimentos .owl-pagination {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.km-depoimentos .owl-pagination .owl-page {
    display: inline-block;
    cursor: pointer;
}

.km-depoimentos .owl-pagination .owl-page span {
    display: block;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    transition: all .3s ease;
    margin: 0 !important;
    opacity: 1 !important;
}

.km-depoimentos .owl-pagination .owl-page.active span {
    background: #ffffff !important;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .km-dep-item {
        padding: 8px 10px 20px;
    }

    .km-dep-card-whatsapp {
        padding: 14px;
        border-radius: 16px;
    }
}

/* ============ CONTATO — Dark bg + bordered card (King Malharia style) ============ */
.km-contato {
    background: var(--dark) !important;
    padding: 80px 0;
    float: none !important;
    width: 100%;
}

.km-contato-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.km-contato-texto h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.km-contato-texto h2 strong {
    color: var(--red);
}

.km-contato-texto>p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    margin-bottom: 30px;
}

.km-contato-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
}

.km-contato-lista li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.km-contato-lista li i {
    color: var(--red);
    font-size: 18px;
    width: 22px;
}

.km-contato-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.km-contato-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
}

.km-contato-social a:hover {
    border-color: var(--red);
    color: var(--red);
}

.km-contato-form {
    background: #1a1a1a;
    border-radius: var(--radius);
    padding: 40px;
    border: 2px solid var(--red);
}

.km-contato-form h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.km-input {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    margin-bottom: 14px;
    outline: none;
    transition: var(--transition);
}

.km-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.km-input:focus {
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.1);
}

.km-textarea {
    min-height: 100px;
    resize: vertical;
}

.km-btn-submit {
    display: block;
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 60px;
    padding: 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(215, 25, 32, 0.35);
}

.km-btn-submit:hover {
    background: var(--red-dk);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .km-contato-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .km-contato-form {
        padding: 25px;
    }
}

/* ============ FOOTER — Centered logo (King Malharia style) ============ */
footer#orcamento,
footer.bg-navy {
    display: none !important;
}

.copyright.bg-dark-navy,
.copyright {
    background: #0b0b0b !important;
    color: rgba(255, 255, 255, 0.4) !important;
    text-align: center;
    padding: 40px 30px;
    font-size: 14px;
}

.copyright .footer-centered-logo {
    margin-bottom: 15px;
}

.copyright .footer-centered-logo img {
    max-height: 40px;
    opacity: 0.7;
}

.copyright a {
    color: var(--red) !important;
    text-decoration: none;
}

/* ============ WHATSAPP FLOAT ============ */
.btn_whatsapp_float,
.botao_whatsapp,
.btn_whatsapp_float.event_button_convert_whatsapp {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    text-decoration: none !important;
    z-index: 9999 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    transition: var(--transition) !important;
}

.btn_whatsapp_float:hover {
    transform: scale(1.1) !important;
}

/* Hide old elements */
.wrap_site {
    display: block !important;
}

.load_initial {
    display: none !important;
}

/* Mobile */
@media (max-width: 600px) {
    .km-hero {
        min-height: 680;
    }

    .km-hero-content h1 {
        font-size: 32px;
        margin-bottom: 0px;
    }

    .km-hero-content p {
        font-size: 32px;
    }

    .km-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .km-produtos-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ NEW PRODUTOS LAYOUT (MOCKUP STYLE) ============ */
.km-new-produtos-section {
    background: #000000;
    padding: 0;
    float: none !important;
    width: 100%;
}

.km-produtos-top-bar {
    background: #132244;
    padding: 22px 10px;
    text-align: center;
}

.km-produtos-top-bar h2 {
    color: #fff;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    margin: 0;
    text-transform: none;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.km-produtos-sub-bar {
    background: #000000;
    padding: 10px 10px;
    text-align: center;
}

.km-produtos-sub-bar p {
    color: #fff;
    font-size: clamp(11px, 1.3vw, 14px);
    font-weight: 600;
    margin: 0;
    text-transform: none;
    letter-spacing: 0.5px;
}

.km-produtos-grid-container {
    background: #000000 !important;
    padding: 0;
}

.km-produtos-top-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

.km-produtos-bottom-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin: 0 auto;    
}

.km-produto-grid-item-colado {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.km-produto-grid-item-colado img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.km-produto-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.km-produto-grid-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.km-produto-grid-item.with-border img {
    border: 6px solid #000000;
    border-radius: 20px;
}

.km-produtos-bottom-bar {
    background: #000000;
    border-top: 30px solid #132244;
    padding: 35px 10px;
    text-align: center;
}

.km-produtos-bottom-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #D71920;
    color: #fff !important;
    font-weight: 500;
    font-size: clamp(14px, 2vw, 17px);
    padding: 12px 35px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    border: none;
}

.km-produtos-bottom-badge:hover {
    transform: scale(1.03);
    background: #e6b22c;
}

.km-produtos-bottom-badge strong {
    font-size: clamp(16px, 2.2vw, 19px);
    font-weight: 800;
}

@media (max-width: 991px) {
    .km-produtos-top-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .km-produtos-bottom-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 25px 15px;
    }
}

@media (max-width: 575px) {
    .km-produtos-top-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .km-produtos-bottom-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px 10px;
    }
}