/* Zerando básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: clip;
}

body {
    font-family: Arial, sans-serif;
    background-color: #dee2e6
}

/* Barra Vermelha Topo */
.top-bar {
    background-color: #ac2d28;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 14px;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 10px 5%;
    position: fixed;

   

}

.navbar .logo img {
    height: 8rem;
   
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c9302c;
    font-size: 1.1rem;

}

/* Banner Principal */
.banner {
    background-image: url('imagens/portrait-male-security-guard-wit\ \(2\).jpg');
    /* Substituir pelo caminho da imagem */
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    color: white;
    position: relative;
    animation: surgir 3s alternate;
}
/*
Animando o meu background img  
*/
@keyframes surgir{
    0%,
    100%{
        transform: scale(1);
    }

    40%,
    60%{
        transform: scale(1.03);
    }
}


/*
   esses 4 ponteiros significam que separei as camadas,para que eu possa comecar a estelizar estelizar a parte do paragrafo do h1
   */
.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    
}

.banner-content {
    position: relative;
    max-width: 600px;
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    position: relative;
    animation: text 3s 1;
}

/*
Animando o meu primeiro h1 do site 
*/

@keyframes text {
    0%{
        color: white;
        margin-bottom: 100px;
    }

   
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}
 
/*
A parte dos soluçoes e serviços
*/
.serviços h1 {
    color: #ac2d28;
    text-align: center;
    font-family:  "Bebas Neue", sans-serif;
    margin-top: 2rem;
    position: relative;

}

.serviços p {
    color: #100f0fd5;
    text-align: center;
    margin-top: 2rem;
    font-size: 1.0rem;
    cursor: pointer;
}

.card {
    border-radius: 5rem 5rem;
    margin: 0;
    flex: 1;
    transition: .3s  ease;
    box-shadow: 2px 2px  rgba(0, 0, 0, 0.432);
    margin-top: 2rem;
}

.card:hover{

    transform: translateY(-10px);
    box-shadow: 0 0 50px 10px  #00000034;
    
    
}

.card-body {
    background-color: #F8F8FF;
}
.pontos{
    color: wheat;
}

.wrapper {
    margin: 150px auto;
    width: 60%;
}

.imagem {
    max-width: 320px;
    float: left;
    border: 3px solid #fff;
    border-radius: 2rem 10rem;
    margin-right: 15px;
   

}

.text-body h2 {
    font-size: 42px;

}

.text-body p {
    font-size: 16px;
    margin-top: 2rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: lighter;

}

/*
Estelizando o meu footer 
*/
.container{
    max-width: 1170px;
    margin: auto;
    
}

.footer{
    background: #24262b;
    padding: 70px 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

/*
o display flex usei 
para que os links que estao no meu saite possam ficar um ao lado do outro
mas depos usei o flex1 e o flex direction colum para ficar 100% ao lado do o
*/

.footer-col{
   display: flex;
   flex: 1;
   flex-direction: column;
   
}

.footer-col h3{
    font-size: 14px;
    color: white;
   margin-bottom: 15px;
    font-weight: 500;
    position: relative;
}

.footer-col h3::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background: #ac2d28;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
    text-align: center;
}

.footer-col ul{
    list-style: none;
    padding: 0;
}

.footer-col ul li a{
   font-size: 16px;
   text-decoration: none;
   color: #bbbbbb;
   display: block;
   transition: 2s;
}

.footer-col a:hover{
    text-decoration: underline;
    color: #ac2d28;
    font-size: 1.2rem;
}

.footer-col .social-link{
    display: inline-block;
    transition: 3s;

}

.footer-col .social-link a:hover{
    color: antiquewhite;
    font-size: 1.2rem;
    border-radius: 10px;
}
