@import url('https://fonts.googleapis.com/css2?family=Barrio&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: "Roboto Condensed", serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4c444b;
    border-bottom: 3px solid #ababac;
    padding: 0px 30px;
    height: 110px;
  }
  
  .navbar a{
    text-decoration: none;
    color: white;
    font-family: "Roboto Condensed", serif;
  }

  #adminBtn{
  display: none;
}
  
  .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;
  }
  

  main{
    color: #453e47;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  main .container{
    background-image: url("../images/imgSomos1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: space-between;
    width: 50%;
  }

  main .container h1{
    font-size: 6rem;
    margin-top: 8%;
    font-family: "Barrio", serif;
    text-align: center;
  }

  .container-p{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  main .container .container-p p{
    width: 70%;
    text-align: center;
    line-height: 24px;
    font-size: 1.2rem;
  }

  main .container-photo{
    display: flex;
    background-color: #e6e6e8;
    justify-content: center;
    height: 500px;
    gap: 3%;
    align-items: center;
  }

  main .container-photo video{
    width: 40%;
    height: 400px;
  }

  main .container-photo .container-photo-txt{
    width: 30%;
  }

  main .container-photo .container-photo-txt h3{
    font-size: 2rem;
  }

  main .container-photo .container-photo-txt p{
    margin-top: 20px;
    font-size: 1.2rem;
  }

  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 .container h1{
      font-size: 3rem;
    }

    main{
      background-image: none;
    }

    main .container{
      width: 100%;
      background-image: none;
      height: auto;
    }

    main .container h1{
      width: 90%;
    }

    .container-p{
      width: 100%;
      margin-top: 30px;
    }

    main .container-photo{
      flex-direction: column;
      height: 55%;
    }

    main .container-photo .container-photo-txt{
      width: 90%;
      height: auto;
      text-align: center;
      margin-top: 20px;
    }

    main .container-photo video{
      width: 90%;
  
    }
    .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: 700px) { /*Mobile - Telefones médios e grandes*/ 
    .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 .container h1{
      font-size: 3rem;
    }

    main{
      background-image: none;
    }

    main .container{
      width: 100%;
      background-image: none;
      height: auto;
    }

    main .container h1{
      width: 90%;
    }

    .container-p{
      width: 100%;
      margin-top: 30px;
    }

    main .container-photo{
      flex-direction: column;
      height: 55%;
    }

    main .container-photo .container-photo-txt{
      width: 90%;
      height: auto;
      text-align: center;
      margin-top: 20px;
    }

    main .container-photo video{
      width: 90%;
  
    }
    .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: 701px) and (max-width: 1000px) {

    .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 .container h1{
      font-size: 3rem;
    }

    main{
      background-image: none;
    }

    main .container{
      width: 100%;
      background-image: none;
      height: auto;
    }

    main .container h1{
      width: 90%;
    }

    .container-p{
      width: 100%;
      margin-top: 30px;
    }

    main .container-photo{
      flex-direction: column;
      height: 55%;
    }

    main .container-photo .container-photo-txt{
      width: 90%;
      height: auto;
      text-align: center;
      margin-top: 20px;
    }

    main .container-photo video{
      width: 90%;
      margin: 20px 0;
    }


    .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;
  }
  }