@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body{
    font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.faixa-topo {
    background: linear-gradient(90deg, #ff7f00, #ffa300, #ff7f00);
}


/* Estilo padrão (desktop) */
.faixa-topo .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Estilo para mobile */
@media (max-width: 768px) {
    .faixa-topo .container {
        flex-direction: column;
        text-align: center;
    }

    .faixa-topo .logo {
        margin-bottom: 10px;
        max-width: 180px;
        height: auto;
    }

    .faixa-topo .mensagem-topo {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 1.4;
    }

    .faixa-topo .btn-cta {
        width: 100%;
        max-width: 250px;
    }
}



.logo {
    height: 70px;
    margin: 10px 0;
}

.logoRodape {
    height: 90px;
    margin: 30px 0;
}


.mensagem-topo{
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
    margin: 0px 40px;
}
/* Hero com overlay */
.hero {
    position: relative;
    background: url('../images/hero.jpg') center/cover no-repeat;
    min-height: 60vh;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* overlay preto 70% */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2; /* mantém texto acima do overlay */
}

.produto-card {
    max-width: 600px;
    border-radius: 30px;
    overflow: hidden;
    border: none;
    background: none; /* sem cor, já que o box é separado */
}

/* Imagem com altura fixa */
.produto-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 15px;
}

h2 {
    font-size: 42px;
    line-height: 48px;
    font-weight: 800;
    color: #000000;
}
h3 {
    font-size: 42px;
    line-height: 48px;
    font-weight: 800;
    color: #000000;
}
h5 {
    font-size: 30px;
    line-height: 34px;
    font-weight: 800;
    color: #000000;
}

.produto-card p {
    font-size: 19px;
    line-height: 24px;
    color: #444444;
}

/* Box cinza sobreposto */
.produto-card .card-body {
    position: relative;
    width: 90%; /* 10% menor que o card */
    margin: -60px auto 0 auto; /* sobe sobre a imagem */
    background: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

.rodape {
    background: linear-gradient(90deg, #ff7f00, #ffa300, #ff7f00);
}

.bgnav {
    background: linear-gradient(90deg, #ff7f00, #ffa300, #ff7f00);
}

/* Estilo geral do menu */
.navbar .nav {
    display: flex;
    padding: 10px 15px;
    gap: 15px; /* espaçamento entre itens no desktop */
    font-size: 18px;
}

/* Cor dos links normais */
.navbar .nav-link {
    color: #fff; /* branco */
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Cor ao passar o mouse */
.navbar .nav-link:hover {
    color: #fdea13!important; /* laranja */
}



/* Mobile: centralizar e 1 por linha */
@media (max-width: 768px) {
    .navbar .container {
        justify-content: center; /* centraliza o container */
    }
    .navbar .nav {
        flex-direction: column; /* itens um abaixo do outro */
        align-items: center; /* centraliza os itens */
        gap: 10px; /* espaçamento vertical */
    }
    .navbar .nav-link {
        display: block;
        text-align: center;
        padding: 10px 0;
    }
}


.btn-warning {
    background-color: #f7931e !important;
    border: none;
}

.btn-warning:hover {
    background-color: #e6831a !important;
}


.clientes img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 2;
    object-fit: contain;
    padding: 20px;
    border-radius: 8px;
}





/* ==== BOTÕES PADRÃO ==== */
.btn-cta {
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* ==== CTA Laranja (Ofertas, Saiba Mais) ==== */
.btn-cta-laranja {
    background: #f7931e;
    color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.btn-cta-laranja:hover {
    background: #e6831a;
    color: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* ==== CTA WhatsApp Verde ==== */
.btn-cta-whats {
    white-space: nowrap; /* impede quebra de linha */
    display: inline-flex; /* mantém ícone e texto alinhados */
    align-items: center; /* centraliza verticalmente */
    justify-content: center; /* centraliza horizontalmente */
    gap: 6px; /* espaçamento entre ícone e texto */
    background: #2ebb44;
    color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    padding: 15px 30px;
    border-radius: 50px;
    line-height: 1.2; /* evita desalinhamento no texto */
}
.btn-cta-whats i {
    vertical-align: middle;
    font-size: 22px;
    margin-right: 5px;
}
.btn-cta-whats:hover {
    background: #000000;
    color: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}



/* ==== CTA Saiba Mais (Produtos) ==== */
.btn-cta-saibamais {
    background: #f7931e; /* laranja */
    color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
}
.btn-cta-saibamais:hover {
    background: #000; /* preto no hover */
    color: #fff;
}