* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #111;
    color: #fff;
}

/* TOPO */
.topo {
    background: #000;
    padding: 16px 20px;
    border-bottom: 1px solid #222;
}

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

.logo-area img {
    width: 40px;
}

.logo-area span {
    font-size: 1.2rem;
    font-weight: bold;
}

/* BACKGROUND */
.bg-overlay {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
        url("../img/logo-defesa-tatica.jpg") center center no-repeat;
    background-size: contain;
    padding: 40px 0;
}

/* CONTAINER */
.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

/* INTRO */
.intro-produtos {
    text-align: center;
    margin-bottom: 40px;
}

.intro-produtos h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.intro-produtos p {
    color: #ccc;
    max-width: 720px;
    margin: auto;
}

/* GRID */
.produtos-fisicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* CARD */
.produto-card {
    background: rgba(0,0,0,0.85);
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.produto-card .icone {
    font-size: 42px;
    margin-bottom: 10px;
}

.produto-card h2 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.produto-card p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 18px;
    line-height: 1.4;
}

/* BOTÃO */
.botao {
    display: block;
    padding: 14px;
    background: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.botao:hover {
    background: #219150;
}

/* VOLTAR */
.voltar {
    margin-top: 50px;
    text-align: center;
}

.voltar a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
}

.voltar a:hover {
    text-decoration: underline;
}

/* RODAPÉ */
.rodape {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 0.9rem;
    color: #777;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .intro-produtos h1 {
        font-size: 1.6rem;
    }

    .produto-card h2 {
        font-size: 1.1rem;
    }

    .produto-card p {
        font-size: 0.95rem;
    }
}
