

/* Estilização dos campos de entrada */
input, textarea {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ccc;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 2px solid #fff;
	 box-shadow: 0 0 10px rgba(53, 151, 212, 0.9), 
                0 0 10px rgba(53, 151, 212, 0.9);
	font-size: 16px;
    transition: border 0.3s ease-in-out;
}

/* Efeito ao focar nos campos */
input:focus, textarea:focus {
    border: 2px solid #fff;
    outline: none;
}

/* Botão de envio */
button-2 {
    width: 50%;
    
	padding: 10px  40%;  /* Diminuindo o padding para reduzir o tamanho */
   
    background: #0075A0;
    border: none;
    color: white;
    font-size: 18px;
      border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

/* Efeito ao passar o mouse */
button-2:hover {
    background: #23FCFF;
}

/* Mensagens de sucesso e erro */
.success {
    color: green;
    text-align: center;
    font-weight: bold;
}

.error {
    color: red;
    text-align: center;
    font-weight: bold;
}

    .style1 {color: #000000}



/* Seção do mapa */
.mapa-container {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff, #F7F7F7); /* Gradiente suave */
    color: white;
    border-radius: 12px;  /* Borda arredondada */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;  /* Para esconder elementos que saem da borda */
    position: relative;
}

/* Título */
.mapa-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Sombra para destacar */
}

/* Botão de alternância */
.btn-toggle {
    background-color: #ff6f61; /* Cor de fundo do botão */
     width: 30%;
	color: white;
    padding: 10px 20px;  /* Diminuindo o padding para reduzir o tamanho */
    font-size: 16px;  /* Ajustando o tamanho da fonte */
    border: none;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    margin-bottom: 30px;
}

/* Efeito do botão ao passar o mouse */
.btn-toggle:hover {
    background-color: #ff4a39;  /* Cor mais intensa ao passar o mouse */
    transform: scale(1.05); /* Leve aumento de tamanho */
}


/* Caixa do mapa */
.mapa-box {
    width: 100%;
    max-width: 900px;
    height: 450px;
    margin: 0 auto;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Efeito visual suave para exibir o mapa */
.mapa-box iframe {
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transition: all 0.3s ease;
}

/* Responsividade */
@media (max-width: 768px) {
    .mapa-box {
        height: 300px;
    }
}
