@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4c444b;
    border-bottom: 3px solid #ababac;
    padding: 0px 30px;
    height: 110px;
    font-family: "Robo"
  }
  
  .navbar a{
    text-decoration: none;
    color: white;
    font-family: "Roboto Condensed", serif;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
  }
  
  .nav-links a{
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
  }
  
  
  .nav-links a:hover, .nav-btn{
    background-color: #4c444b;
    transition: all 0.2s;
  }
  
  .nav-links a:hover{
    background-color: white;
  }
  
  .nav-links .nav-btn:hover{
    background-color: #e1f32c;
  }
  
  .nav-links a:hover, .nav-btn:hover li{
    color: #4c444b;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    background-color: #333;
    height: 3px;
    width: 25px;
    margin: 3px 0;
  }

  #adminBtn{
  display: none;
}

main{
    height: 1000px;
    background-image: url("../images/imgContato1.jpg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.container {
    margin-top: 5%;
    background-color: #ffffff;
    width: 900px;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    position: relative;
    background: url('fundo.jpg') no-repeat center center;
    background-size: cover;
  }
  
  @keyframes FadeInLeft{
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to { opacity: 1 }
}

.animation-fadeInLeft{
  animation: FadeInLeft 1s ease-in;
}

  .formulario{
    display: flex;
  }

  /* Texto da esquerda */
  .texto-contato {
    flex: 1;
    margin-right: 30px;
  }
  
  .texto-contato h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #453e47;
    font-family: "Kdam Thmor Pro", serif;
  }
  
  .texto-contato p {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #555555;
  }
  
  /* Formulário */
  form {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  form input {
    height: 50px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 0 10px;
    font-size: 1rem;
  }
  
  form input::placeholder {
    color: #777777;
  }
  
  /* Input maior */
  form .mensagem {
    height: 200px;
  }
  
  /* Botão */
  .botao-enviar {
    background-color: #d6ff32;
    color:#4c444b;
    border: none;
    padding: 15px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    width: 50%;
    border-radius: 10px;
  }
  
  .botao-enviar:hover {
    background-color: #c4e82c;
  }

  footer {
    background-color: #453e47;
    color: #fff;
    padding: 40px 10px;
    font-family: Arial, sans-serif;
    font-weight: bold;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .footer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-section h2 {
    margin-bottom: 10px;
  }
  
  .footer-section p {
    margin: 5px 0;
  }
  
  .footer-section a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    cursor: pointer;
    color: #d6ff32;
  }
  
  .bi-whatsapp{
    margin-right: 10px;
  }

  @media (max-width: 375px){
    .menu-toggle {
      display: flex;
    }
  
    .navbar{
      width: 100vw;
      padding: 0;
      justify-content: space-around;
    }
  
    nav .logo img{
      width: 100px;
    }

    .navbar a{
      width: 100px;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #f2f2f2;
      width: 100%;
      text-align: center;
      height: 20%;
      gap: 0;
    }
    
    .nav-links{
      margin-top: 5%;
      z-index: 1000;
    }
  
    .nav-links a{
        width: 100%;
        background-color: #4c444b;
    }
  
    .nav-links a li{
        width: 100%;
    }
  
    .nav-links .nav-btn{
      background-color: #d6ff32;
    }
  
    .nav-links.active {
      display: flex;
    }

    main{
      height: 1000px;
    }

    .texto-contato{
      flex: 0;
    }

    main .container .formulario{
      flex-direction: column;
    }

    main .container .formulario h1{
      font-size: 2rem;
      text-align: center;
    }

    main .container .formulario .texto-contato{
      margin-right: 0;
    }

    main .container .formulario .texto-contato p{
      font-size: 1rem;
      text-align: center;
      margin: 20px 0;
    }

    .botao-enviar{
      display: block;
      margin: 0 auto;
    }

    .footer-container{
      gap: 20px;
    }
  
  .footer-section{
    width: 200px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-section p{
    margin: 0;
  }
  
  .logo{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  }

  @media (min-width: 376px) and (max-width: 950px){
    .menu-toggle {
      display: flex;
    }
  
    .navbar{
      width: 100vw;
      padding: 0;
      justify-content: space-around;
    }
  
    nav .logo img{
      width: 100px;
    }

    .navbar a{
      width: 100px;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #f2f2f2;
      width: 100%;
      text-align: center;
      height: 20%;
      gap: 0;
    }
    
    .nav-links{
      margin-top: 5%;
      z-index: 1000;
    }
  
    .nav-links a{
        width: 100%;
        background-color: #4c444b;
    }
  
    .nav-links a li{
        width: 100%;
    }
  
    .nav-links .nav-btn{
      background-color: #d6ff32;
    }
  
    .nav-links.active {
      display: flex;
    }

    
    
    .texto-contato{
      flex: 0;
    }
    
    main{
      height: 1000px;
    }

    main .container .formulario{
      flex-direction: column;
    }


    main .container .formulario h1{
      font-size: 2rem;
      text-align: center;
    }

    main .container .formulario form button{
      display: flex;
      justify-content: center;
      text-align: center;
    }


    main .container .formulario .texto-contato{
      margin-right: 0;
    }

    main .container .formulario .texto-contato p{
      font-size: 1rem;
      text-align: center;
      margin: 20px 0;
    }

    .botao-enviar{
      display: block;
      margin: 0 auto;
    }

    .footer-container{
      gap: 20px;
    }
  
  .footer-section{
    width: 200px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-section p{
    margin: 0;
  }
  
  .logo{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  }