/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: white;
}

/* Header */
header {
    background-color: #000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: auto;
    max-height: 120px;
    width: auto;
    max-width: 140px;
    animation: floatLogo 2s ease-in-out infinite alternate;
    background-color: #000; /* <-- fundo preto forçado */
    border-radius: 10px;
    box-shadow: 0 0 10px #ff7a00;
}


/* Animação personalizada */
@keyframes floatLogo {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Efeito hover */
header .logo img:hover,
.logo-img:hover {
    transform: scale(1.05) rotate(1deg);
}


header nav a {
    margin-left: 20px;
}

header nav .icon {
    width: 30px;
    transition: transform 0.3s;
}

header nav .icon:hover {
    transform: scale(1.2);
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, #000, #121212);
}

.hero h1 {
    font-size: 2.8em;
    color: #ff7a00;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    color: #ccc;
}

/* Catálogo */
.catalogo {
    padding: 60px 40px;
    background-color: #181818;
}

.catalogo h2 {
    text-align: center;
    color: #ff7a00;
    margin-bottom: 40px;
    font-size: 2em;
}

.produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card h3 {
    padding: 15px;
    text-align: center;
}

.card:hover {
    transform: scale(1.05);
}

.card .btn {
    display: block;
    background-color: #ff7a00;
    color: white;
    text-align: center;
    padding: 10px;
    margin: 0 20px 20px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.card .btn:hover {
    background-color: #ff5500;
}

/* Produto detalhe */
.produto-detalhe {
    padding: 60px 20px;
    text-align: center;
}

.produto-detalhe img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
}

.produto-detalhe h1 {
    color: #ff7a00;
    margin: 20px 0;
}

.produto-detalhe .btn {
    display: inline-block;
    background-color: #ff7a00;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.produto-detalhe .btn:hover {
    background-color: #ff5500;
}

/* Footer */
footer {
    background-color: #000;
    padding: 20px 40px;
    text-align: center;
}

footer p {
    color: #777;
}
