body {
  margin: 0;
  background-color: #0e0e0e; 
  color: white;
  font-family: Arial, sans-serif;
} /*correção da cor do site*/

.banner {
    height: 400px; 
    color: white; 
    padding: 20px;
    background-image: url('adonay-logo.png');
    background-size: cover;      
    background-position: center;
    background-repeat: no-repeat; 
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 768px) {
    .banner {
       display: none; 
    }
    
}

.apresentacao-mobile {
    display: none;
}
@media (max-width: 768px) {
  .apresentacao-mobile {
    display: block;
    text-align: center;
    padding: 40px 20px;
    background-color: #0e0e0e;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);

  }
}

.top {
    display: flex;
    gap: 100px;
    justify-content: center;
    align-items: center;
    height: 100px;
}
@media screen and (max-width: 768px) {
    .top {
        flex-direction: column;
        height: auto;
    }
}

.logo img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    justify-content: left;
    align-items: left;

}
@media screen and (max-width: 768px) {
    .logo img {
       display: none;
    }
    
}

.nav a{
    padding: 50px;
    text-decoration: none;
    font-size: 25px;
    gap: 10px;
    color: rgb(133, 131, 131);
    transition: 0.5s;
}
@media screen and (max-width: 768px) {
    .nav a {
        padding: 10px;
        font-size: 20px;
    }
    
}

.nav a:hover {
    color: white;
}

.zap-top {
    padding: 10px;
    font-size: 25px;
    font-family:'Trebuchet M';
    text-decoration: none;
    padding: 15px;
    background: rgb(10, 160, 10);
    border: 2px;
    border-radius: 60px;
    color: white;
    transition: 0.5s;
}
@media screen and (max-width: 768px) {
    .zap-top {
        padding: 10px;
        font-size: 20px;
    }
    
}

.zap-top:hover {
    background: none;
    color: rgb(10, 160, 10);
}

.destaque-texto {
    color:yellow;
    font-size: 30px;
}

.sobre {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
    .sobre {
        flex-direction: column;
        align-items: center;
    }
    
}

.sobre p {
    font-size: 18px;
    color: white;
    padding: 12px 20px;
    border-radius: 999px;
    background-color: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
    .sobre p {
        font-size: 16px;
        padding: 10px 15px;
    }
    
}

.WhatsApp-top {  
    padding: 10px;
    font-size: 25px;
    font-family:'Trebuchet M';
    text-decoration: none;
    padding: 15px;
    background: rgb(10, 160, 10);
    border: 2px;
    border-radius: 60px;
    color: white;
    transition: 0.5s;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .WhatsApp-top {
        padding: 10px;
        font-size: 20px;
    }
    
}

.WhatsApp-top:hover {
    background: none;
    color: rgb(10, 160, 10);
}

#servicos {
    display: flex;
    gap: 100px; 
    justify-content: center;
    align-items: center;
    padding: 50px; 
    border: 100px; 
}
@media screen and (max-width: 768px) {
    #servicos {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }
    
}

.servico-card {
    font-size: 30px;
    color: white;
    text-align: center;
    background-color: rgba(0, 102, 255, 0.15);
    border: 30px;
    border-radius: 40px; 
    padding: 20px;
    
}
@media screen and (max-width: 768px) {
    .servico-card {
        font-size: 24px;
        padding: 15px;
    }
    
}

.servico-card img {
    width: 300px;
    height: 200px;
    border-radius: 20px;
}
@media screen and (max-width: 768px) {
    .servico-card img {
        width: 100%;
        height: auto;
    }  
    
}

.galeria {
  text-align: center;
  margin-bottom: 60px;
}

.tl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.tl-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}


.contato-container {
    color: white;
    text-align: center;
    padding: 50px;
    font-size: 25px;
}
@media screen and (max-width: 768px) {
    .contato-container {
        padding: 20px;
        font-size: 20px;
    }
    
}

.contatos a {
    background-color: rgba(0, 102, 255, 0.15);
    gap: 20px;
    padding: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 20px;
}
@media screen and (max-width: 768px) {
    .contatos a {
        padding: 15px;
        font-size: 18px;
    }
    
}

.contatos a:hover {
    color: gray
}

footer {
    background-color: rgb(0, 0, 0);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 20px;
}
@media screen and (max-width: 768px) {
    footer {
        font-size: 16px;
        padding: 8px;
    }
    
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 18px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
    .whatsapp-btn {
        padding: 10px 20px;
        font-size: 16px;
    } 
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.sobre-nos {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.sobre-nos .conteudo {
    max-width: 900px;
    text-align: center;
}

.sobre-nos p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.sobre-nos img {
    width: 200px;
    height: auto;
    margin-top: 20px;
}

hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #444, transparent);
    margin: 60px 0;
}

