:root {
    --cor-principal: #003aff;
    --cor-escuro: #5a2feb82;
    --cor-secundaria: #2f148ab3;
    --cor-branco: #fbfbfb;
    --cor-azulclarinho: #00b4ff;
    --cor-preto: #090000;
    --cor-rosa: #fa40eac0;
}

/* Base Style */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

/* Page-specific backgrounds */
.produtos-page {
    background-image: url("img/grabemos-redes.sociais.avif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.contato-page {
    background-color: #ffc8c8f0;
}

/* Header and Navigation */

.menu-home a:hover {
    color: #0000FF; /* Azul */
}

.menu-produtos a:hover {
    color: #FFFF00; /* Amarelo */
}

.menu-contato a:hover {
    color: #FF0000; /* Vermelho */
}

/* Main Content and Sections */
.banner {
    width: 100%;
    height: 450px;
}

.principal {
    padding: 5em 0;
    background: #FEFEFE;
    width: 940px;
    margin: 0 auto;
}

.titulo-principal {
    text-align: center;
    font-size: 2em;
    margin: 0 0 1.25em;
    clear: left;
}

.principal p {
    margin: 0 0 1em;
}

.principal strong {
    font-weight: bold;
}

.principal em {
    font-style: italic;
}

.ferramentas {
    width: calc(40% - 26px);
    float: left;
    margin: 0 20px 20px 0;
}

.imagembeneficios {
    width: 60%;
}

/* Products Section */
.produtos {
    width: 940px;
    margin: 0 auto;
    padding: 50px 0;
}

.produtos li {
    display: inline-block;
    text-align: center;
    width: 30%;
    vertical-align: top;
    margin: 0 1.5%;
    padding: 30px 20px;
    box-sizing: border-box;
    border: 2px solid #000000;
    border-radius: 10px;
    transition: box-shadow 0.5s ease, border-color 0.5s ease;
}

.produtos li:hover {
    border-color: transparent;
    box-shadow: 
        0 0 10px 5px var(--cor-principal), 
        0 0 20px 10px var(--cor-azulclarinho), 
        0 0 30px 15px var(--cor-rosa),
        0 0 40px 20px var(--cor-escuro),
        0 0 50px 25px var(--cor-secundaria);
}

.produtos li:active {
    border-color: transparent;
    box-shadow: 0 0 50px 20px #088C19;
}

.produtos a {
    text-decoration: none;
    color: black;
}

.produtos h2 {
    font-size: 30px;
    font-weight: bold;
}

.produtos li:hover h2 {
    font-size: 34px;
}

.produto-descricao {
    font-size: 18px;
}

.produto-preco {
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
}

/* Contact Form */
.form-center {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
}

.form-center label, .form-center legend {
    display: block;
    font-size: 16px;
    margin: 0 0 10px;
}

.input-padrao {
    display: block;
    width: 100%;
    padding: 10px 25px;
    margin: 0 0 20px;
    box-sizing: border-box; /* Garante que o padding não aumente a largura total */
}

.checkbox {
    margin: 20px 0;
}

.enviar {
    width: 40%;
    padding: 15px 0;
    background: var(--cor-rosa);
    color: white;
    font-weight: bold;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    transition: 1s all;
    cursor: pointer;
}

.enviar:hover {
    transform: scale(1.2);
}

/* Table */
.table-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

table {
    margin: 20px 0 40px;
}

thead {
    background: #555555;
    color: white;
    font-weight: bold;
}

td, th {
    border: 1px solid #000000;
    padding: 8px 15px;
}

/* Map and Video */
.mapa {
    padding: 3em 0;
    background: linear-gradient(#FEFEFE, #888888);
}

.mapa p {
    margin: 0 0 2em;
    text-align: center;
}

.mapa-conteudo {
    width: fit-content;
    margin: 0 auto;
}

.video {
    width: 560px;
    margin: 2em auto;
}

/* Responsive Design */
@media screen and (max-width: 480px) {
    .caixa,
    .principal,
    .conteudo-beneficios,
    .mapa-conteudo,
    .video {
        width: auto;
    }

    h1 {
        text-align: center;
    }

    nav {
        position: static;
        text-align: center;
        display: block;
    }

    nav li {
        display: block;
        margin: 10px 0;
    }

    .lista-beneficios,
    .imagem-beneficios {
        width: 100%;
    }
}