/* BRALARMSEG - Design Industrial */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vermelho: #E31E24;
    --vermelho-escuro: #B71C1C;
    --preto: #000000;
    --cinza-escuro: #1A1A1A;
    --cinza-medio: #333333;
    --cinza-claro: #666666;
    --branco: #FFFFFF;
    --cinza-bg: #F5F5F5;
}

body {
    font-family: 'Rajdhani', sans-serif;
    color: var(--preto);
    background: var(--branco);
    line-height: 1.6;
}

/* Header Industrial */
.header-industrial {
    background: var(--preto);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--vermelho);
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-bralarmseg {
    display: flex;
    flex-direction: column;
}

/*.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--vermelho);
    letter-spacing: 2px;
}*/

.logo-subtitle {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.7rem;
    color: var(--branco);
    letter-spacing: 3px;
    margin-top: -5px;
}

.nav-industrial {
    display: flex;
    gap: 40px;
}

.nav-industrial a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--branco);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-industrial a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vermelho);
    transition: width 0.3s ease;
}

.nav-industrial a:hover::after {
    width: 100%;
}

/* Hero Industrial */
.hero-industrial {
    position: relative;
    min-height: 100vh;
    background: var(--cinza-escuro);
    padding: 140px 40px 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(227, 30, 36, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 30, 36, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-content-industrial {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: var(--vermelho);
    color: var(--branco);
    padding: 8px 20px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.hero-title-industrial {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--branco);
    line-height: 1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--vermelho);
    text-shadow: 0 0 20px rgba(227, 30, 36, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--cinza-bg);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--vermelho);
    line-height: 1;
}

.stat-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.7rem;
    color: var(--cinza-claro);
    letter-spacing: 1px;
    margin-top: 5px;
}

.btn-industrial {
    display: inline-block;
    background: var(--vermelho);
    color: var(--branco);
    padding: 18px 40px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-industrial:hover {
    background: var(--vermelho-escuro);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

.hero-image-tech {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
}

.tech-frame {
    width: 100%;
    height: 100%;
    border: 3px solid var(--vermelho);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    animation: pulse-frame 3s ease-in-out infinite;
}

@keyframes pulse-frame {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.tech-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, var(--vermelho) 48%, var(--vermelho) 52%, transparent 52%);
    background-size: 100px 100px;
    opacity: 0.1;
    animation: move-lines 20s linear infinite;
}

@keyframes move-lines {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* Section Headers */
.section-header-industrial {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-industrial.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--vermelho);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title-industrial {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--preto);
    letter-spacing: 2px;
}

/* Produtos Section */
.produtos-section {
    padding: 100px 40px;
    background: var(--cinza-bg);
}

.produtos-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.produto-card {
    background: var(--branco);
    border: 2px solid var(--cinza-escuro);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: all 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--vermelho);
}

.produto-image {
    position: relative;
    background: var(--cinza-escuro);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cinza-medio) 0%, var(--cinza-escuro) 100%);
}

.produto-icon {
    font-size: 5rem;
    filter: grayscale(1) brightness(0.8);
}

.produto-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--vermelho);
    color: var(--branco);
    padding: 5px 15px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.produto-badge.destaque {
    background: var(--preto);
}

.produto-info {
    padding: 30px;
}

.produto-nome {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 10px;
}

.produto-codigo {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem;
    color: var(--cinza-claro);
    margin-bottom: 20px;
}

.produto-specs {
    list-style: none;
    margin-bottom: 25px;
}

.produto-specs li {
    font-size: 0.95rem;
    color: var(--cinza-medio);
    margin-bottom: 8px;
    padding-left: 10px;
}

.produto-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--cinza-bg);
}

.produto-preco {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--vermelho);
}

.btn-produto {
    background: var(--preto);
    color: var(--branco);
    padding: 10px 25px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-produto:hover {
    background: var(--vermelho);
}

/* Especificações Section */
.especificacoes-section {
    padding: 100px 40px;
    background: var(--preto);
}

.specs-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.specs-content .section-title-industrial {
    color: var(--branco);
    margin-bottom: 50px;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.spec-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.spec-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.spec-text h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--vermelho);
    margin-bottom: 8px;
}

.spec-text p {
    color: var(--cinza-bg);
    line-height: 1.6;
}

.specs-visual {
    position: relative;
    height: 500px;
}

.tech-diagram {
    position: relative;
    width: 100%;
    height: 100%;
}

.diagram-layer {
    position: absolute;
    border: 2px solid var(--vermelho);
    opacity: 0.3;
}

.diagram-layer:nth-child(1) {
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 95%);
    animation: rotate-layer 10s linear infinite;
}

.diagram-layer:nth-child(2) {
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    clip-path: polygon(5% 0, 100% 5%, 100% 100%, 0 100%);
    animation: rotate-layer 15s linear infinite reverse;
}

.diagram-layer:nth-child(3) {
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    animation: rotate-layer 20s linear infinite;
}

@keyframes rotate-layer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Certificações Section */
.certificacoes-section {
    padding: 100px 40px;
    background: var(--cinza-bg);
}

.certificacoes-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cert-card {
    background: var(--branco);
    border: 3px solid var(--preto);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-card:hover {
    border-color: var(--vermelho);
    transform: translateY(-5px);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--vermelho);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.cert-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--preto);
    margin-bottom: 10px;
}

.cert-card p {
    color: var(--cinza-claro);
    font-size: 0.95rem;
}

/* Por que Section */
.porque-section {
    padding: 100px 40px;
    background: var(--cinza-escuro);
}

.porque-container {
    max-width: 1400px;
    margin: 0 auto;
}

.porque-section .section-title-industrial {
    color: var(--branco);
    text-align: center;
    margin-bottom: 60px;
}

.porque-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.porque-item {
    background: var(--cinza-medio);
    padding: 40px;
    border-left: 5px solid var(--vermelho);
    transition: all 0.3s ease;
}

.porque-item:hover {
    background: var(--preto);
    transform: translateX(10px);
}

.porque-numero {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--vermelho);
    display: block;
    margin-bottom: 15px;
    opacity: 0.3;
}

.porque-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 15px;
}

.porque-item p {
    color: var(--cinza-bg);
    line-height: 1.6;
}

/* Contato Section */
.contato-section {
    padding: 100px 40px;
    background: var(--vermelho);
}

.contato-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contato-info .section-title-industrial {
    color: var(--branco);
    margin-bottom: 30px;
}

.contato-desc {
    color: var(--branco);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contato-dados {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dado-item {
    display: flex;
    flex-direction: column;
}

.dado-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.dado-valor {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--branco);
}

.form-industrial {
    background: var(--branco);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-industrial input,
.form-industrial select,
.form-industrial textarea {
    width: 100%;
    padding: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    border: 2px solid var(--cinza-escuro);
    background: var(--branco);
    color: var(--preto);
    transition: all 0.3s ease;
}

.form-industrial input:focus,
.form-industrial select:focus,
.form-industrial textarea:focus {
    outline: none;
    border-color: var(--vermelho);
}

.form-industrial textarea {
    resize: vertical;
}

/* Footer */
.footer-industrial {
    background: var(--preto);
    color: var(--branco);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--vermelho);
    margin-bottom: 15px;
}

.footer-col h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col p {
    color: var(--cinza-claro);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: var(--cinza-claro);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--vermelho);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--cinza-medio);
    text-align: center;
}

.footer-bottom p {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem;
    color: var(--cinza-claro);
}

/* Produtos Section Styles - Index Integration */
.produtos {
    background: var(--preto);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.produtos .section-title.white {
    color: var(--branco);
    margin-bottom: 50px;
}

.produtos-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

/* Botões de navegação flutuantes */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(227, 30, 36, 0.3);
    color: var(--branco);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.carousel-nav-btn:hover {
    background: rgba(227, 30, 36, 0.8);
    border-color: var(--vermelho);
    transform: translateY(-50%);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-btn.prev {
    left: 10px;
}

.carousel-nav-btn.next {
    right: 10px;
}

/* Wrapper para aplicar o degrade */
.produtos-carousel::before,
.produtos-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 20px;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.produtos-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--preto), transparent);
}

.produtos-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--preto), transparent);
}

.produtos-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 20px 40px 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--vermelho) var(--cinza-escuro);
}

/* Força scrollbar sempre visível mesmo quando não precisa rolar */
.produtos-container {
    overflow-x: scroll !important;
}

/* Firefox - força scrollbar sempre visível */
@supports (scrollbar-width: thin) {
    .produtos-container {
        scrollbar-width: thin;
        overflow-x: scroll;
    }
}

/* WebKit (Chrome, Safari, Edge) - força scrollbar sempre visível */
.produtos-container::-webkit-scrollbar {
    -webkit-appearance: none !important;
    width: 12px !important;
    height: 12px !important;
}

.produtos-container::-webkit-scrollbar:horizontal {
    height: 12px !important;
}

.produtos-container::-webkit-scrollbar-track {
    background: var(--cinza-escuro) !important;
    border-radius: 10px;
    margin: 0 40px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

.produtos-container::-webkit-scrollbar-track:horizontal {
    background: var(--cinza-escuro) !important;
}

.produtos-container::-webkit-scrollbar-thumb {
    background: var(--vermelho) !important;
    border-radius: 10px;
    border: 2px solid var(--cinza-escuro);
    min-width: 50px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

.produtos-container::-webkit-scrollbar-thumb:horizontal {
    background: var(--vermelho) !important;
    border-radius: 10px;
}

.produtos-container::-webkit-scrollbar-thumb:hover {
    background: var(--vermelho-escuro) !important;
}

.produtos-container::-webkit-scrollbar-thumb:active {
    background: #c01016 !important;
}

/* Específico para macOS - força sempre visível */
.produtos-container::-webkit-scrollbar-button {
    display: none;
}

.produtos-container::-webkit-scrollbar-corner {
    background: transparent;
}

.produtos .produto-card {
    min-width: 350px;
    max-width: 350px;
    height: auto;
    background: var(--cinza-escuro);
    padding: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--cinza-medio);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.produtos .produto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.1), transparent);
    transition: left 0.5s;
}

.produtos .produto-card:hover::before {
    left: 100%;
}

.produtos .produto-card:hover {
    transform: translateY(-15px);
    border-color: var(--vermelho);
    box-shadow: 0 15px 50px rgba(227, 30, 36, 0.4);
}

.produtos .produto-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--cinza-medio);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.produtos .produto-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.produtos .produto-card:hover .produto-image img {
    transform: scale(1.1);
}

.produtos .produto-nome {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--branco);
    letter-spacing: 1px;
    margin: 20px 20px 15px;
    line-height: 1.3;
}

.produtos .produto-specs {
    list-style: none;
    margin: 0 20px 20px;
    flex-grow: 1;
    padding-left: 0;
}

.produtos .produto-specs li {
    font-size: 14px;
    color: var(--cinza-claro);
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;
}

.produtos .produto-specs li:before {
    content: '•';
    color: var(--vermelho);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.produtos .btn-produto {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--branco);
    background: var(--vermelho);
    border: none;
    padding: 14px;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.produtos .btn-produto:hover {
    background: #b8070e;
}


/* Responsive */
@media (max-width: 1024px) {
    .hero-image-tech {
        display: none;
    }

    .specs-container,
    .contato-container {
        grid-template-columns: 1fr;
    }

    .produtos-carousel {
        padding: 0 60px;
    }

    .produtos .produto-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        gap: 20px;
    }

    .nav-industrial {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-industrial {
        padding: 120px 20px 60px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
    }

    .porque-grid {
        grid-template-columns: 1fr;
    }

    .certificacoes-grid {
        grid-template-columns: 1fr;
    }

    /* Produtos Responsivo Mobile */
    .produtos {
        padding: 60px 0;
    }

    .produtos-carousel::before,
    .produtos-carousel::after {
        width: 50px;
    }

    .produtos-container {
        padding: 20px 15px 30px;
        gap: 20px;
        overflow-x: scroll !important;
        overflow-y: visible;
    }

    .produtos-container::-webkit-scrollbar {
        height: 10px;
    }

    .produtos-container::-webkit-scrollbar:horizontal {
        height: 10px;
    }

    .produtos-container::-webkit-scrollbar-track {
        margin: 0 15px;
    }

    .produtos .produto-card {
        min-width: 300px;
        max-width: 300px;
        height: auto;
    }

    .produtos .produto-image {
        height: 200px;
    }

    .produtos .produto-nome {
        font-size: 16px;
        margin: 15px 15px 12px;
    }

    .produtos .produto-specs {
        margin: 0 15px 15px;
    }

    .produtos .produto-specs li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .produtos .btn-produto {
        width: calc(100% - 30px);
        margin: 0 15px 15px;
        padding: 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .produtos-carousel::before,
    .produtos-carousel::after {
        width: 30px;
    }

    .produtos .produto-card {
        min-width: 280px;
        max-width: 280px;
    }

    .produtos-container {
        padding: 20px 10px 30px;
        gap: 15px;
        overflow-x: scroll !important;
        overflow-y: visible;
    }

    .produtos-container::-webkit-scrollbar {
        height: 8px;
    }

    .produtos-container::-webkit-scrollbar:horizontal {
        height: 8px;
    }

    .produtos-container::-webkit-scrollbar-track {
        margin: 0 10px;
    }

    .hero-title-industrial {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Botões de navegação responsivos */
    .carousel-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .carousel-nav-btn.prev {
        left: 5px;
    }

    .carousel-nav-btn.next {
        right: 5px;
    }
}
