/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100vh;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #e0e0e0, #ffffff); /* Gradiente suave de cinza claro para branco */
    color: #333; /* Texto em cinza escuro para contraste */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
	position: relative; /* Adiciona isso para alinhar o pseudo-elemento */
}

/* Para um toque mais sofisticado, adicionando uma textura suave */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('groovepaper.webp'); /* Textura sutil */
    opacity: 0.1; /* Textura quase imperceptível */
    z-index: -1; /* Mantém a textura atrás do conteúdo */
}

header {
    background-color: #000000; /* Cor de fundo escuro para o cabeçalho */
    color: #ecf0f1; /* Texto claro para contraste */
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Melhorar a aparência do conteúdo */
.main-content {
    background-color: #ffffff; /* Cor de fundo clara para o conteúdo */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave para dar profundidade */
    padding: 40px;
    margin: 20px;
    border-radius: 10px;
}

/* Definir bordas arredondadas e sombra para elementos destacados */
.card {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 15px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Efeito de elevação suave ao passar o mouse */
}

/* Ajuste no rodapé */
footer {
    background-color: #000000; /* Cor de fundo escura */
    color: #ecf0f1; /* Texto claro */
    text-align: center;
    padding: 20px;
}

/* Estilos do Menu */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    z-index: 1001;
    position: relative;
}

/* Estilos de Navegação */
.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #ff6347;
}

.nav ul li a.active {
    color: #ff6347;
    border-bottom: 2px solid #ff6347;
    padding-bottom: 2px;
}

/* Estilos do Menu de Hambúrguer para telas pequenas */
@media (max-width: 768px) {
    .nav ul {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    #menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 100px; /* Ajuste para acomodar o conteúdo */
        background-color: black;
        color: #fff;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        padding: 2rem 0;
        z-index: 999;
    }

    #menu.show {
        display: flex;
        transform: translateY(0);
        flex-direction: column;
        align-items: center;
    }

    #menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    #menu ul li a {
        color: #fff;
        font-size: 1.5rem;
        text-decoration: none;
        transition: color 0.3s;
    }

    #menu ul li a:hover {
        color: #ff6347;
    }

    /* Estilo para o "X" de fechar */
    .menu-toggle.active::before {
        content: 'X';
        font-size: 2rem;
        color: #ff6347;
    }
}

/* Seção Hero / Banner */
.hero {
    background: linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52)), url('banner1.webp') no-repeat center center/cover;
    width: 100%;
    min-height: 600px;
    padding-top: 70px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}



/* Hero bullets */
.hero-bullets {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0 24px;
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-bullet svg {
    flex-shrink: 0;
    color: #ff6347;
}

@media (max-width: 600px) {
    .hero-bullets {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* Seção Aplicações */
.aplicacoes {
    padding: 70px 20px;
    background-color: #fff;
    text-align: center;
}

.aplicacoes h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 48px;
    padding-bottom: 14px;
    position: relative;
}

.aplicacoes h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background-color: #ff6347;
    border-radius: 2px;
}

.aplicacoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.aplicacao-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: left;
    border-top: 3px solid #ff6347;
    transition: box-shadow 0.2s, transform 0.2s;
}

.aplicacao-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}

.aplicacao-icone {
    margin-bottom: 18px;
}

.aplicacao-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.aplicacao-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .aplicacoes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Seção Conheça a Primerack */
.conheca-primerack {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: white;
}

.conheca-primerack .conteudo {
    display: flex;
    align-items: center; /* Manter alinhamento horizontal em telas grandes */
    max-width: 1200px;
    width: 100%;
    gap: 30px; /* Espaço entre a imagem e o texto */
}

.conheca-primerack .imagem img {
    width: 100%;
    max-width: 500px; /* Limite máximo da largura da imagem */
    height: auto; /* Mantém a proporção */
    border-radius: 8px;
}

.conheca-primerack .texto {
    max-width: 600px;
    text-align: left; /* Alinhamento normal em telas grandes */
}

.conheca-primerack h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #111;
    padding-bottom: 12px;
    position: relative;
}

.conheca-primerack h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background-color: #ff6347;
    border-radius: 2px;
}

.conheca-primerack p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Responsividade para telas pequenas */
@media (max-width: 768px) {
    .conheca-primerack {
        flex-direction: column; /* Coloca imagem e texto em coluna */
        align-items: center; /* Centraliza horizontalmente */
    }

    .conheca-primerack .conteudo {
        flex-direction: column; /* Mantém em coluna */
        align-items: center; /* Centraliza horizontalmente */
        gap: 20px; /* Espaço reduzido entre a imagem e o texto */
    }

    .conheca-primerack .texto {
        text-align: center; /* Centraliza o texto em telas pequenas */
    }
}


.hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero p {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.btn-hero {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.btn-hero:hover {
    background-color: #333;
}

/* Seção de Contato */
.contato {
    padding: 100px 20px 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contato-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
}

.info {
    flex: 0 0 40%;
    color: #222;
    line-height: 1.8;
    margin-top: 50px;
    padding: 0 20px 0 40px;
}

.info-titulo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-bottom: 14px;
    padding-bottom: 14px;
    position: relative;
}

.info-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background-color: #ff6347;
    border-radius: 2px;
}

.info-subtitulo {
    font-size: 1rem;
    color: #666;
    margin: 20px 0 30px;
    line-height: 1.6;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.info-icon {
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-item strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
}

.info-item a,
.info-item span {
    font-size: 0.95rem;
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}

.info-item a:hover {
    color: #ff6347;
}

.divider {
    width: 1px;
    background-color: #000;
    height: auto;
    margin: 0 20px;
}

form {
	max-width: 600px;
    margin: 0 auto;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #fff;
    margin-top: 50px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #222;
}

form input,
form textarea {
	font-family: 'Lato', sans-serif;
    padding: 12px;
    font-size: 1rem;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

form textarea {
    height: 150px;
    resize: vertical;
}

form input:focus,
form textarea:focus {
    border-color: #ff6347;
    outline: none;
}

form button {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 5px;
}

form button:hover {
    background-color: #333;
    transform: scale(1.05);
}

/* Seção Sobre — Hero */
.sobre-hero {
    background: #111;
    padding: 80px 24px;
    text-align: center;
}

.sobre-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
    font-style: italic;
}

/* Seção Sobre a Empresa */
.sobre-nos {
    padding: 60px 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.sobre-nos-texto {
    padding: 60px 24px;
}

.sobre-nos-texto .texto-sobre {
    max-width: 720px;
    margin: 0 auto;
}

.sobre-conteudo {
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.texto-sobre h1,
.texto-sobre h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    padding-bottom: 14px;
    position: relative;
}

.texto-sobre h1::after,
.texto-sobre h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background-color: #ff6347;
    border-radius: 2px;
}

.texto-sobre p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Responsividade para telas pequenas */
@media (max-width: 768px) {
    .sobre-conteudo {
        flex-direction: column; /* Altera para coluna em telas pequenas */
        padding-top: 20px; /* Reduz o padding para evitar muito espaço */
    }

    .imagem-sobre img {
        margin-top: 20px; /* Reduz a margem para menos espaço acima da imagem */
        max-width: 100%; /* Garante que a imagem ocupe toda a largura do container */
    }

    .texto-sobre h1 {
        font-size: 2rem; /* Reduz o tamanho do texto */
    }

    .texto-sobre p {
        font-size: 1rem; /* Reduz o tamanho do parágrafo */
    }
}

/* Seção Missão, Visão e Valores */
.missao-visao-valores {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.mvv-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: 3px solid #ff6347;
    border-radius: 10px;
    padding: 32px 28px;
    text-align: left;
}

.mvv-icone {
    margin-bottom: 16px;
}

.mvv-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.mvv-card p {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.7;
}

.mvv-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mvv-lista li {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }
}

.missao-visao-valores h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 14px;
}

.missao-visao-valores h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background-color: #ff6347;
    border-radius: 2px;
}

.missao h3, .visao h3, .valores h3 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 15px;
}

.mvv-conteudo p, .valores ul {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.valores ul {
    list-style-type: none;
    padding: 0;
}

.valores li {
    margin-bottom: 10px;
}

/* Produtos */
.produtos {
    padding: 50px 20px;
    background-color: #fff;
    margin-top: 50px;
    text-align: center;
}

.produto-intro {
    max-width: 720px;
    margin: 0 auto 35px auto;
    padding: 10px 0;
}

.produto-intro p {
    margin: 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Ajusta o espaçamento abaixo do título */
.produto-intro h2 {
    margin-bottom: 25px;
    font-size: 24px; /* Ajuste o tamanho do título conforme necessário */
}

.produtos h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 14px;
}

.produtos h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background-color: #ff6347;
    border-radius: 2px;
}

.produtos-em-destaque h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 14px;
}

.produtos-em-destaque h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background-color: #ff6347;
    border-radius: 2px;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 340px));
    justify-content: start;
    gap: 20px;
}

.produto-card {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.produto-card .btn {
    margin-top: auto;
}

.produto-card:hover {
    transform: translateY(-10px);
}

.produto-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.13));
}

.produto-card h3 {
    margin: 15px 0;
    color: #222;
}

.produto-card p {
    margin-bottom: 1rem;
    color: #666;
}

.btn {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #333;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
	font-weight: normal;
}

/* Responsividade */
@media (max-width: 768px) {
    .contato-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info, form {
        width: 100%;
        margin-left: 0;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .info {
        padding: 0 20px;
    }

    .info-titulo::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .info-items {
        align-items: center;
    }

    .info-item {
        justify-content: center;
    }

    .divider {
        display: none;
    }

    .nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #222;
        width: 100%;
        padding: 1rem;
        z-index: 1000;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .logo img {
        width: 70px;
		height: auto;
    }
}

/* Ajustar o tamanho padrão da logo */
.logo img {
    width: 70px;
    height: auto;
}

/* Responsividade - Ajustar logo em telas menores */
@media (max-width: 480px) {
    .logo img {
        width: 70px;
    }
}

/* Quando o menu for aberto */
.show {
    display: flex !important;
}

.produtos {
    text-align: center;
    padding: 50px 0;
    background-color: #f9f9f9;
}

.produtos-em-destaque {
    padding: 70px 20px;
    background-color: #f2f2f2;
    text-align: center;
}

/* Grid de 3 cards */
.destaque-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.destaque-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    border-top: 3px solid #ff6347;
}

.destaque-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.13);
}

.destaque-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    padding: 28px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.15));
}

.destaque-info {
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.destaque-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.destaque-info p {
    font-size: 0.93rem;
    color: #666;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 14px;
}

.destaque-specs {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ff6347;
    background: rgba(255, 99, 71, 0.08);
    border: 1px solid rgba(255, 99, 71, 0.2);
    border-radius: 4px;
    padding: 3px 10px;
    letter-spacing: 0.03em;
    margin-bottom: 18px;
}

.destaque-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.destaque-actions .btn-ver-detalhes {
    padding: 9px 18px;
    font-size: 0.88rem;
}

.destaque-actions .btn {
    background: #ff6347;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background 0.2s;
    text-decoration: none;
}

.destaque-actions .btn:hover {
    background: #e5533d;
}

@media (max-width: 900px) {
    .destaque-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .destaque-grid {
        grid-template-columns: 1fr;
    }
}

.btn {
    background-color: #000000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-anterior, .btn-proximo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000000;
    color: white;
    border: none;
    padding: 10px;
    width: 40px; /* Defina uma largura fixa */
    height: 40px; /* Defina uma altura fixa igual à largura */
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    display: flex; /* Centraliza o conteúdo */
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
}

.btn-anterior {
    left: 10px; /* Ajuste conforme necessário */
}

.btn-proximo {
    right: 10px; /* Ajuste conforme necessário */
}

/* Responsividade para telas pequenas */
@media (max-width: 1400px) {
    .carrossel {
        width: 100%; /* O carrossel ocupa toda a largura */
        padding: 0 10px; /* Margens laterais menores */
    }
    
    .produto-item {
        flex-direction: column; /* Coloca os elementos em coluna */
        text-align: center; /* Centraliza o texto */
    }

    .produto-item img {
        width: 100%; /* A imagem ocupa toda a largura do container */
        margin: 0 auto; /* Centraliza a imagem */
    }

    .produto-info h3, .produto-info p {
        text-align: center; /* Centraliza o texto */
        margin-top: 15px; /* Espaçamento entre a imagem e o texto */
    }

    .btn-anterior, .btn-proximo {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* diferenciais */

.diferenciais {
    padding: 60px 20px;
    background-color: #111 !important;
    text-align: center;
    position: relative;
}

.diferenciais h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.diferenciais-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencial {
    flex: 1 1 30%;
    max-width: 30%;
    padding: 28px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diferencial img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.diferencial img {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.diferencial h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.diferencial p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.7;
}

.container-botao {
    display: flex;
    justify-content: center;
    margin-top: 30px;
	margin-bottom: 30px;
}

.btn-fale {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px; /* Adiciona bordas arredondadas */
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.btn-fale:hover {
    background-color: #333;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .diferencial {
        flex: 1 1 45%;
        max-width: 45%;
    }

    .hero {
        min-height: 420px;
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 2rem;
        padding: 0 16px;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 16px;
    }

    .produtos-em-destaque h2,
    .diferenciais h2 {
        font-size: 1.9rem;
    }

    .contato-projeto {
        padding: 30px 20px;
    }

    .contato-projeto .texto-contato h2 {
        font-size: 1.5em;
    }

    .produtos {
        padding: 30px 16px;
    }
}

@media (max-width: 480px) {
    .diferencial {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Footer melhorado */
.footer-content {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 40px 40px 24px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-col {
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col-brand {
    flex: 0 0 220px;
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 12px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.6;
    max-width: 200px;
}

.footer-col strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    color: #aaa;
    margin: 0;
}

.footer-copy {
    border-top: 1px solid #222;
    padding: 14px 0 0;
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }
    .footer-col {
        text-align: center;
    }
}

/* Botão de orçamento no header */
.btn-nav-orcamento {
    background-color: #ff6347;
    color: #fff !important;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-nav-orcamento:hover {
    background-color: #e5533d !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .btn-nav-orcamento { display: none; }
}

/* Hero — dual CTA */
.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn-hero-primary {
    background-color: #ff6347;
    color: #fff;
    padding: 13px 28px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-hero-primary:hover {
    background-color: #e5533d;
}

.btn-hero-secondary {
    background-color: transparent;
    color: #fff;
    padding: 13px 28px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 5px;
    border: 2px solid rgba(255,255,255,0.65);
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-hero-secondary:hover {
    background-color: rgba(255,255,255,0.12);
    border-color: #fff;
}

/* Página 404 */
.erro-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
    text-align: center;
    background: #fff;
}

.erro-404-inner {
    max-width: 500px;
}

.erro-404-numero {
    display: block;
    font-size: 7rem;
    font-weight: 700;
    color: #ff6347;
    line-height: 1;
    margin-bottom: 16px;
}

.erro-404 h1 {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 12px;
}

.erro-404 p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 32px;
}

.erro-404-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.erro-404-ctas .btn-hero-primary,
.erro-404-ctas .btn-hero-secondary {
    color: #fff;
}

.erro-404-ctas .btn-hero-secondary {
    border-color: #333;
    color: #333;
}

.erro-404-ctas .btn-hero-secondary:hover {
    background-color: #f2f2f2;
}

/* Stats bar */
.stats-bar {
    background-color: #111;
    padding: 44px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 4.8rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff6347;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6347;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

.stat-icon {
    width: auto;
    height: 4.5rem;
    object-fit: contain;
    mix-blend-mode: screen;
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* Como funciona */
.como-funciona {
    padding: 70px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.como-funciona h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 50px;
    padding-bottom: 14px;
    position: relative;
}

.como-funciona h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background-color: #ff6347;
    border-radius: 2px;
}

.etapas-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 860px;
    margin: 0 auto;
}

.etapa {
    flex: 1;
    padding: 0 20px;
    max-width: 230px;
}

.etapa-numero {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #ff6347;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.etapa h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.etapa p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.etapa-seta {
    font-size: 1.8rem;
    color: #ddd;
    flex-shrink: 0;
    padding-bottom: 46px;
}

@media (max-width: 640px) {
    .etapas-grid {
        flex-direction: column;
        gap: 10px;
    }
    .etapa-seta {
        transform: rotate(90deg);
        padding-bottom: 0;
    }
}

/* Labels do formulário */
form label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: -8px;
}

/* Span de erro telefone */
.telefone-erro {
    color: #e53935;
    font-size: 0.85rem;
    visibility: hidden;
    margin-top: -8px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 90px 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.88rem;
    color: #999;
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #ff6347;
}

.breadcrumb .sep {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb .atual {
    color: #999;
}

/* Filtros de produtos */
.filtros {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 20px 0;
}

.filtro-btn {
    padding: 8px 22px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.filtro-btn.ativo,
.filtro-btn:hover {
    background-color: #000;
    color: #fff;
}

.filtros-u {
    padding-top: 8px;
}

.filtro-u-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: #555;
    align-self: center;
    white-space: nowrap;
}

.filtro-u-btn {
    padding: 5px 14px;
    border: 1.5px solid #888;
    background: transparent;
    color: #555;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filtro-u-btn.ativo,
.filtro-u-btn:hover {
    background-color: #555;
    border-color: #555;
    color: #fff;
}

/* Scroll reveal (substitui ScrollReveal.js) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contato */

.contato-projeto {
    background-color: #f4f4f4; /* Cor de fundo */
    color: black; /* Cor do texto */
    padding: 40px;
    border-radius: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.conteudo-contato {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.texto-contato {
    flex: 2;
}

.texto-contato h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.texto-contato p {
    font-size: 1.1em;
}

.botao-contato {
    flex: 1;
    text-align: right;
}

.btn-contato {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #000; /* Cor da borda preta */
    background-color: #000; /* Cor de fundo preta */
    color: white; /* Cor do texto branca */
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.btn-contato:hover {
    background-color: #333;
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .conteudo-contato {
        flex-direction: column; /* Empilha os elementos em telas menores */
        align-items: center; /* Centraliza os elementos horizontalmente */
        text-align: center;    /* Centraliza o texto */
    }

    .texto-contato, .botao-contato {
        flex: 1 1 100%; /* Ocupa toda a largura disponível */
        text-align: center; /* Centraliza o texto e o botão */
        margin-bottom: 20px; /* Adiciona espaço entre os elementos */
    }

    .botao-contato {
        text-align: center; /* Centraliza o botão */
    }
}


/* ── Página de Produto Individual ─────────────────────────────── */
.produto-detalhe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    align-items: start;
}

.produto-galeria {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.galeria-principal {
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    min-height: 360px;
    position: relative;
    cursor: crosshair;
}

.galeria-principal img {
    width: 100%;
    max-width: 100%;
    max-height: 420px;
    height: auto;
    object-fit: contain;
    transition: opacity 0.15s;
    filter: drop-shadow(0 6px 24px rgba(0,0,0,0.18));
}

.galeria-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.galeria-thumb {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.15s;
}

.galeria-thumb:hover  { border-color: #ccc; }
.galeria-thumb.ativa  { border-color: #ff6347; }

/* ── Zoom de imagem do produto ─────────────────────────────────── */
.zoom-lens {
    position: absolute;
    width: 130px;
    height: 130px;
    border: 2px solid rgba(255, 99, 71, 0.75);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    pointer-events: none;
    display: none;
    z-index: 10;
    box-sizing: border-box;
}

.zoom-resultado {
    position: fixed;
    width: 420px;
    height: 420px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background-repeat: no-repeat;
    background-color: #f8f8f8;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    display: none;
    z-index: 9990;
    pointer-events: none;
    overflow: hidden;
}

.zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: rgba(0, 0, 0, 0.32);
    color: #fff;
    border-radius: 5px;
    padding: 4px 9px;
    font-size: 0.72rem;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 5;
    transition: opacity 0.2s;
}

.galeria-principal:hover .zoom-hint {
    opacity: 0;
}

/* Modal mobile */
.zoom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.zoom-modal-inner {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.zoom-modal-inner img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.zoom-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
    padding: 0;
}

@media (max-width: 900px) {
    .zoom-lens,
    .zoom-resultado,
    .zoom-hint { display: none !important; }
    .galeria-principal { cursor: zoom-in; }
}

.produto-detalhe-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.produto-categoria-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff6347;
    background: rgba(255,99,71,0.1);
    padding: 4px 12px;
    border-radius: 4px;
}

.produto-detalhe-info h1 {
    font-size: 2rem;
    color: #111;
    line-height: 1.2;
    margin: 0;
}

.produto-descricao {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.produto-specs {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 8px;
}

.spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label { font-weight: 700; color: #333; }
.spec-value  { color: #555; }

@media (max-width: 480px) {
    .spec-item {
        flex-direction: column;
        gap: 2px;
    }
    .spec-value {
        color: #444;
    }
}

.produto-cat-desc {
    border-left: 3px solid #ff6347;
    padding-left: 14px;
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
}

.produto-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.btn-produto-whatsapp {
    display: block;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: background 0.2s;
}

.btn-produto-whatsapp:hover { background: #1dba58; }

.btn-produto-contato {
    display: block;
    color: #ff6347;
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
    border: 1.5px solid #ff6347;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.btn-produto-contato:hover {
    background: #ff6347;
    color: #fff;
}

/* Outros modelos */
.produtos-relacionados {
    background: #f9f9f9;
    padding: 48px 20px 56px;
}

.produtos-relacionados h2 {
    text-align: center;
    font-size: 1.6rem;
    color: #111;
    margin-bottom: 0;
}

.produtos-relacionados h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #ff6347;
    margin: 10px auto 28px;
}

.relacionados-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.relacionado-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    text-decoration: none;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 10px;
    text-align: center;
}

.relacionado-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.relacionado-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border-radius: 6px;
    padding: 10px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}

.relacionado-card span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
}

/* Ver detalhes — no card de produtos.html */
.produto-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
}

.btn-ver-detalhes {
    display: block;
    text-align: center;
    padding: 8px 16px;
    border: 1.5px solid #333;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
}

.btn-ver-detalhes:hover {
    background: #333;
    color: #fff;
}

@media (max-width: 768px) {
    .produto-detalhe {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .galeria-principal {
        min-height: 240px;
        padding: 24px;
    }

    .relacionados-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .produto-detalhe-info h1 { font-size: 1.5rem; }
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    color: #fff;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 9999;
    font-size: 0.88rem;
    line-height: 1.5;
    flex-wrap: wrap;
}
.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}
.cookie-banner a {
    color: #ff6347;
    text-decoration: underline;
}
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn-aceitar {
    padding: 8px 20px;
    background: #ff6347;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.88rem;
    transition: background 0.2s;
}
.cookie-btn-aceitar:hover { background: #e5533d; }
.cookie-btn-recusar {
    padding: 8px 16px;
    background: transparent;
    color: #aaa;
    border: 1px solid #444;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.88rem;
    transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-recusar:hover { border-color: #aaa; color: #fff; }

/* Link no rodapé */
.footer-cookies-link {
    display: inline;
    font-size: inherit;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}
.footer-cookies-link:hover { color: #ccc; }






