@charset "utf-8";
/* CSS Document */
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo geral do corpo */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Container centralizado */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Cabeçalho */
header {
	background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 100px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 8px 8px 0 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #211C97;
}

#header .logo img {
  max-height:90px;
}

.scrolled-offset {
  margin-top: 100px;
}


/* Estilos para formulários */
form {
    margin-top: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="number"],
form input[type="date"],
form input[type="time"],
form select,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #3149D5;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #3149D5;
}

/* Estilos para tabelas */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th, table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #f2f2f2;
}

/* Imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Estilos para galerias de imagens */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery img {
    width: calc(33.333% - 10px);
    border-radius: 4px;
}

/* Responsividade para telas médias */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    form input, form select, form textarea, form button {
        font-size: 14px;
        padding: 8px;
    }

    table th, table td {
        padding: 10px;
    }
    
    .gallery img {
        width: calc(50% - 10px);
    }
}

/* Responsividade para telas pequenas */
@media (max-width: 480px) {
    header {
        font-size: 18px;
        padding: 15px;
    }

    form input, form select, form textarea, form button {
        font-size: 12px;
    }

    table th, table td {
        font-size: 10px;
        padding: 8px;
    }

    .gallery img {
        width: 100%;
    }
}

