/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #000000d0, #0d47a1);
    padding: 1rem 2rem;
    color: white;
    height: 60px;
}

header .logo img {
    max-width: 200px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

header .logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

header nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease-in-out;
}

header nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: #FFEB3B;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

header nav ul li a:hover {
    color: #FFEB3B;
}

header nav ul li a:hover::after {
    width: 100%;
    left: 0;
}
.contato {
    background-color: #fff;
    padding: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contato h1 {
    color: #000000a9;
    margin-bottom: 1rem;
}

.contato p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

.contato-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 1.5rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #333;
    text-align: left;
}

.contato-item i {
    font-size: 1.5rem;
    color: #000000b4;
}

/* Formulário de Contato */
.form-contato {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-contato label {
    font-weight: bold;
    text-align: left;
}

.form-contato input,
.form-contato textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-contato button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #000000b7;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.form-contato button:hover {
    background: #2196F3;
}

/* Mapa */
.mapa {
    text-align: center;
    padding: 2rem;
}

.mapa h2 {
    color: #0D47A1;
    margin-bottom: 1rem;
}

.mapa iframe {
    width: 100%;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
.contato {
    padding: 1rem;
}

.contato-info {
    flex-direction: column;
    align-items: center;
}

.form-contato input,
.form-contato textarea {
    font-size: 0.9rem;
}

.contato-item {
    flex-direction: column;
    text-align: center;
}
#info-mapa {
    flex-direction: column;
    align-items: center;
}
}
/* Estilização do Rodapé */
footer {
    background: linear-gradient(90deg, #000000d0, #0d47a1);
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho no rodapé */
footer::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 250%;
    height: 250%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.6s ease-in-out;
}

footer:hover::before {
    top: 0;
    left: 0;
}

/* Links do Rodapé */
footer a {
    color: #ffffffbd;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out, transform 0.2s;
}

footer a:hover {
    color: #FFEB3B;
    transform: scale(1.05);
}
