/* Fonte usada no site */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500&display=swap');

/* Configurações da página */
* 
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Fundo, cor e altura total */
html, body 
{
  height: 100%;
  background-color: #000;
}

/* Estrutura da página (flexível) */
body 
{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main 
{
  flex: 1;
}

/* Cabeçalho */

header 
{
  background-color: #000;
  width: 100%;
  padding: 2px 0;
}

/* Container do cabeçalho */
.container 
{
  max-width: 1200px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  gap: 20px;
  flex-wrap: wrap;
}

.logo img 
{
  width: 150px;
  height: auto;
  cursor: pointer;
}

/* Menu */
.menu nav 
{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Links */
.menu nav a 
{
  color: azure;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

/* Mudar cor dos links */
.menu nav a:hover 
{
  color: #d4a043;
}

/* Botões das redes sociais */
.midias 
{
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Estilo dos ícones */
.midias .social 
{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-image: linear-gradient(45deg, #f1c04b, #d4a043);
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
}

/* Mudar cor dos botões das redes sociais */
.midias .social:hover 
{
  transform: scale(1.2);
  background-image: linear-gradient(45deg, #ff7100, #efa51b);
}

/* Rodapé */
footer 
{
  background-color: #000;
  color: azure;
  width: 100%;
  padding: 30px 0;
  text-align: center;
  letter-spacing: 1.5px;
}

/* Container do rodapé */
.footer-container 
{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-logo img 
{
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

.footertexto 
{
  font-size: x-small;
  padding: 10px 0;
}

/* Referente ao centro da página (main) */
.conteudo 
{
  background-image: url(./img/fundomenu.png);
  background-size: cover;
  background-position: center;
}

/* Container main (box1 e box2) */
.container-main 
{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 5px;
}

/* Box 1 e Box 2 */
.box1, .box2 
{
  width: 550px;
  min-height: 600px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-style: inset;
  border-color: #d4a043;
}

/* Título box 1 e box 2 */
.box1 h1, .box2 h2 
{
  position: relative;
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Fieldset formulário */
.f1
{
  border: 2px solid #d4a043;
  border-radius: 5px;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Fieldset Contato */
.f2 
{
  border: 2px solid #d4a043;
  border-radius: 5px;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Inputs, textarea */
.box1 input, .box1 textarea 
{
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #d4a043;
  border-radius: 6px;
  font-size: 14px;
  background-color: #fff;
}

/* Não alterar o tamanho do campo de texto */
.box1 textarea 
{
  resize: none;
}

/* Botão de enviar (Mudança de cor e efeito) */
button 
{
  background-color: #d4a043;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: #000;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

button:hover 
{
  background-color: #f1c04b;
}

/* Contato (UL)*/
.contato-info 
{
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Estilo das linhas */
.contato-info li 
{
  margin-bottom: 12px;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* Inserido ícones ao lado das informações e contato */
.contato-info i 
{
  color: #d4a043;
  font-size: 15px;
  width: 25px;
  text-align: center;
}