.area-atuacao__lista {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.area-atuacao__lista li {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 10px;
    padding: 20px;
    text-align: center;
    flex: 1 1 calc(33.333% - 20px);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.area-atuacao__lista li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    border-radius: 8px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.alert {
  padding: 8px 0 8px 22px;
    background-color: #f44336;
    color: white;
    margin-bottom: 15px;
    text-align: center;
    border-radius: 10px;
    max-width: 680px;
    width: 100%;
    margin: 40px auto;
  }
  
  .alert.success {background-color: #4CAF50;}
  .alert.info {background-color: #2196F3;}
  .alert.warning {background-color: #ff9800;}
  
  .closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .closebtn:hover {
    color: black;
  
} 

.slider {
    width: 100%;
  }
  .slider img {
    width: 100%;
    height: auto;
  }
  
  @media (max-width: 761px) {
    .slider {
      width: 100%;
    }
    .slider img {
      height: 350px;
      -o-object-fit: cover;
         object-fit: cover;
      width: 100%;
    }
  }
  /* Header */
  .header {
    background: #fff;
    min-height: 100px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
  }
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  .header .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    list-style: none;
    gap: 20px;
  }
  .header .menu li a {
    color: #000;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
  }
  
  .footer {
    background-color: #f8f8f8;
    width: 100%;
  }
  .footer .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1100px;
    gap: 20px;
    align-items: center;
  }
  .footer .container .footer__logo {
    width: 100%;
  }
  .footer .container .footer__logo img {
    width: 100%;
    height: auto;
  }
  .footer__whats {
    max-width: 70px;
    position: fixed;
    right: 10px;
    bottom: 70px;
    transition: all 0.3s;
    cursor: pointer;
  }
  .footer__whats:hover {
    transform: scale(1.1);
  }
  
  .empresa {
    background-color: #fff;
    padding: 30px;
  }
  .empresa .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  .empresa__text {
    width: 50%;
  }
  .empresa__text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #BF9874;
  }
  .empresa__text p {
    font-size: 1.2em;
    line-height: 1.5;
    max-width: 500px;
  }
  .empresa__text a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0A1525;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
  }
  .empresa__img {
    width: 500px;
    height: 500px;
    background-image: url("../img/souza-foto.jpeg");
    background-size: cover;
    border-radius: 10px;
    opacity: 0.8;
    background-repeat:no-repeat;
    transition: all 0.3s;
    cursor: pointer;
    scale: 0.9;
  }
  .empresa__img:hover {
    opacity: 1;
    scale: 1;
  }
  
  @media (max-width: 991px) {
    .empresa {
      width: 100%;
    }
    .empresa .container {
      flex-direction: column;
      align-items: flex-start;
    }
    .empresa__text {
      width: 100%;
    }
    .empresa__text h1 {
      font-size: 2rem;
    }
    .empresa__text p {
      font-size: 1.2em;
      max-width: 100%;
    }
    .empresa__img {
      width: 100%;
      margin-top: 20px;
    }
  }
  .area-atuacao {
    background-color: #0A1525;
    padding: 30px;
  }
  .area-atuacao .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  .area-atuacao__header {
    padding: 40px 0 0 0;
    text-align: center;
    max-width: 600px;
    margin-bottom: 40px;
  }
  .area-atuacao__header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #BF9874;
  }
  .area-atuacao__header p {
    font-size: 1.2em;
    line-height: 1.5;
    color: #a9bbd3;
  }
  .area-atuacao__lista {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .area-atuacao__lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: #eee;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
  }
  .area-atuacao__lista li:hover {
    background: #BF9874;
    color: #fff;
  }
  .area-atuacao__lista li h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .area-atuacao__lista li p {
    font-size: 1.2em;
    line-height: 1.5;
  }
  
  @media (max-width: 991px) {
    .area-atuacao {
      width: 100%;
    }
    .area-atuacao .container {
      flex-direction: column;
      align-items: flex-start;
    }
    .area-atuacao__header {
      text-align: left;
      width: 100%;
      max-width: 100%;
    }
    .area-atuacao__header h2 {
      font-size: 1.8rem;
    }
    .area-atuacao__lista {
      grid-template-columns: 1fr;
      padding: 0;
    }
  }
  @media (max-width: 767px) {
    .menu {
      display: none !important;
    }
  }
  .scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0A1525;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 999;
  }
  
  /* Container Principal */
  .contato {
    padding: 60px 0;
  }
  .contato h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #BF9874;
  }
  
  /* Estilização do Container */
  .contato .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  
  /* Estilização das Colunas */
  .contato .row {
    max-width: 600px;
    width: 100%;
    margin: 0px auto;
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  .contact-form .form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact-form .btn-contato {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .contact-form .btn-contato:hover {
    background-color: #0056b3;
  }
  
  /* Estilização dos Elementos de Informação de Contato */
  .contact-info h2 {
    font-size: 20px;
    color: #333;
  }
  
  .contact-info p, .contact-info ul {
    font-size: 16px;
    color: #666;
  }
  
  .contact-info ul {
    padding: 0;
    list-style: none;
  }
  
  .contact-info ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .contact-info ul li i {
    margin-right: 10px;
    color: #007bff;
  }
  
  .contact-info a {
    color: #007bff;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .contato .row {
      flex-direction: column;
    }
    .contato .col-md-6 {
      width: 100%;
    }
  }
  
   @media(max-width: 1000px) {
 
        .area-atuacao__lista {
            grid-template-columns: 1fr 1fr;
            width: 100%;
        }
   }
   
   @media(max-width: 500px) {
        .empresa {
          
            height: 930px;
        }
   }
   
  @media(max-width: 600px) {
        .empresa {
            padding:10px;

        }
        .empresa__text .title{
            line-height:1.2;
        }
        .empresa__img {
           width: 100%;
            background-size: 100% auto;
            background-repeat: no-repeat;
        }
        
        
        .area-atuacao__lista {
             grid-template-columns: 1fr;
            width:100%;
        }
        
        footer .container {
            padding:20px;
            text-align:center;
            flex-direction:column;
        }
            
        
       }
   

  
  
  /*# sourceMappingURL=main.css.map */
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  