* {
    font-family: "Arial", monospace;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;

    margin: 0 auto;
    text-align: center;

}

.description {
    color: rgb(49, 49, 49);
    margin: 20px 0;
}

.logo {
    width: 200px;
    display: flex;
    margin-top: 15px;
}

.catalog {
    width: 800px;
    height: 300px;
    
    display: flex;
    justify-content: center;
    align-items: center
}

.catalog div {
    color: rgb(49, 49, 49);
    border: 1.5px solid rgb(148, 148, 148);
    border-radius: 8px;
    height: 250px;

    font-size: 12px;
    gap: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.catalog img {
    width: 200px;
    height: 85px;
}

.catalog h2 {
    margin-bottom: 35px;
}

.catalog button {
    width: 120px;
    
    padding: 8px;
    background: none;
    border: 1px solid;
    border-radius: 8px;

    color: rgb(49, 49, 49);
}

.catalog button:hover {
    cursor: pointer;
    box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.2);
}

.contacts {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 800px;
    gap: 12px;
    margin-top: 40px;
}

.contacts a {
    background-color: #1100ad;

    padding: 15px 0;
    text-align: center;
    display: inline-block;

    margin: 4px;
    transition-duration: 0.3s;
    cursor: pointer;
    border-radius: 50px;
    border: 2px solid #d30000;
    box-shadow: 8px 10px 0px 0px #d30000;
}

.contacts a button {
    background: none;

    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.contacts a:hover {
    transform: translateY(4px) translateX(4px);
    box-shadow: 6px 6px 0px 0px #d30000;
}

.footer {
    position: fixed;
    bottom: 0;

    width: 100%;
    height: 80px;
    background-color: rgb(10, 25, 35);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    font-weight: 400;
}

.catalog button:disabled {
    cursor: not-allowed;
}

@media (max-width: 800px) {
    .description {
        font-size: 0.9rem;
    }

    .catalog {
        display: inline-block;
        width: fit-content;
    }

    .catalog div {
        margin-bottom: 20px;
    }

    .contacts {
        margin-top: 200px;
        margin-bottom: 100px;
        width: 90vw;
    }

    .footer {
        height: 50px;
    }
}

/* Estilo para o modal */
.modal {
    display: none; /* Inicialmente escondido */
    position: fixed; /* Fixo na tela */
    z-index: 1; /* Fica acima de outros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Habilita rolagem se necessário */
    background-color: rgb(0,0,0); /* Fundo preto */
    background-color: rgba(0,0,0,0.4); /* Fundo preto com opacidade */
}

/* Estilo para o conteúdo do modal */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% do topo e centralizado */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Largura do modal */
}

/* Estilo para o botão de fechar */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* Reset de estilos básicos */

/* Estilo do container principal */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    /*min-height: 100vh;*/
    background-color: #f2f2f2;
}

/* Estilo do formulário */
form {
    margin-top: 10px;
    margin-bottom: 10px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* Estilo do título do formulário */
form h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

/* Estilo dos labels */
form label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

/* Estilo dos inputs e textarea */
form input[type="text"],
form input[type="email"],
form input[type="password"],
form select,
form textarea {
    width: 93%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form textarea:focus {
    border-color: #007BFF;
    outline: none;
    background-color: #fff;
}

/* Estilo do botão de envio */
form button[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
    background-color: #0056b3;
}