.catalogo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: linear-gradient(to right, #061a2b, #0b2c44, #061a2b);
}

.logo-catalogo {
    width: 90px;
    height: auto;
    border: 2px solid #00cfff;
    border-radius: 12px;
    box-shadow: 0 0 12px #00cfff;
}

.titulo-catalogo {
    text-align: center;
    color: white;
}

.titulo-catalogo h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: bold;
}

.titulo-catalogo p {
    margin: 0;
    font-size: 1.2rem;
}


/* Área dos produtos criada pelo JavaScript */
.produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

/* Card do produto */
.produto {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

/* Efeito ao passar o mouse */
.produto:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Imagem do produto */
.produto img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f5f5f5;
}

/* Nome do produto */
.produto h3 {
    padding: 15px 15px 10px;
    margin: 0;
    font-size: 1.3rem;
    color: #0b2c44;
    text-align: center;
}

/* Lista de características */
.produto ul {
    list-style: none;
    padding: 0 20px 20px;
    margin: 0;
}

/* Itens da lista */
.produto ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

/* Ícone de check */
.produto ul li::before {
    content: "✔";
    color: #00cfff;
    font-weight: bold;
    margin-right: 10px;
}

/* Categoria */
.categoria {
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
}

/* Título da categoria */
.categoria h2 {
    background: linear-gradient(90deg, #061a2b, #0b4da2);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.footer {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.carousel{
    display:flex;
    align-items:center;
    gap:10px;
}

.produtos{
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px;
}

.produtos::-webkit-scrollbar{
    display:none;
}

.produto{
    flex: 0 0 250px;       /* largura */
    min-height: 380px;     /* altura */
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.12);
    transition: .3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.produto:hover{
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.produto img{
    width: 100%;
    height: 170px;
    object-fit: contain;
    background: #f8f8f8;
    padding: 12px;
}

.produto h3{
    font-size:15px;
    line-height:1.4;
    color:#222;
    font-weight:600;
    margin:12px;
    height:42px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.preco{
    font-size:28px;
    font-weight:700;
    color:#00a651;
    text-align:center;
    margin:8px 0;
}

.preco::before{
    content:"À vista";
    display:block;
    font-size:11px;
    color:#777;
    font-weight:500;
}

.produto ul{
    list-style: none;
    margin: 0;
    padding: 0 18px 15px;
}

.produto ul li{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #f1f1f1;
}

.produto ul li:last-child{
    border-bottom: none;
}

.produto ul li::before{
    content: "✓";
    color: #00a651;
    font-weight: bold;
    font-size: 14px;
}
button.prev,
button.next{

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    font-size:22px;

    background:#0b2c44;

    color:white;

}

button:hover{

    background:#0099ff;

}

.btn-whatsapp{

    display:block;

    margin:15px;

    padding:12px;

    text-align:center;

    background:#25D366;

    color:#fff;

    text-decoration:none;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;
}

.btn-whatsapp:hover{

    background:#1ebc59;

    transform:scale(1.03);

}