/* Reset e Criação de Variáveis de cor reutilizáveis*/

:root {
    --azul-escuro: #014D74;
    --azul-claro: #1482BC;
    --branco: #FFFF;
    --cinza-medio: #292B2C;
    --color-background-dark: #1C1F24;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Definição de Tipografia e Header */

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--branco);
    background-color: var(--color-background-dark);
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    margin-left: auto;
}

nav li {
    display: flex;
    height: 45px;
    font-weight: bold
}

nav li a {
    display: flex;
    align-items: center;
    padding: 0 20px;

}

nav a {
    transition: color .2s ease;
}

nav a:hover {
    color: var(--azul-claro)
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    position: sticky;
    top: 0px;
    left: 0;
    width: 100%;
    height: 90px;
    background: #3d424d;
}

.logo {
    height: 45px;
    width: auto;
}

.CTA {
    background: var(--azul-claro);
    gap: 5px;
    border-radius: 12px;
    margin-right: 30px;
    font-size: 16px;
    height: 45px
}

.CTA-ZAP {
    height: 25px;
    width: auto;
}


/*
nav {
    border: 2px solid red;
}

nav ul {
    border: 2px solid blue;
}

nav li {
    border: 2px solid green;
}

header {
    border: 2px solid red;
}

nav {
    border: 2px solid blue;
}
/*


/* Card-Hero */

.hero-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

#hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;
    background-image: url(img/Hero\ Banner\ -\ Noite.png);

    background:
        linear-gradient(90deg,
            rgb(28, 31, 36) 0%,
            rgba(28, 31, 36, 0.842) 25%,
            rgba(28, 31, 36, 0.527) 50%,
            rgba(28, 31, 36, 0.301) 75%,
            rgba(28, 31, 36, 0) 100%),

        url("img/Hero\ Banner\ -\ Noite.png");

    min-height: calc(100vh - 80px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

}

.hero-conteudo {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 60px;
    margin-top: 60px;
}


.hero-conteudo h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.9;
}

.hero-conteudo h1 span {
    display: block;
    font-size: 25px;
    margin-top: 8px;
    font-weight: 600;
    color:#1792d4;
    line-height: 0.9;
}

.hero-conteudo p {
    font-size: 1.2rem;
    line-height: 1.3;

    margin-top: 10px;
    margin-bottom: 20px;

    opacity: .85;
}

.botao-cta {
    background: var(--azul-claro);
    display: inline-flex;
    align-items: center;
    padding: 15px 0px 15px 30px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 20px;
    gap: 15px;
    width: 48%
}

.botao-cta:hover{
    background-color: #3d424d;
    color: #1792d4;
}

.CTA-ZAP-botao {
    height: 35px;
    width: auto;
}

.icon-p-social {
    display: flex;
    gap: 15px;
}

.icon-p-social img {
    height: 60px;
    width: auto;
}


.prova-social{
    background-color:var(--color-background-dark);
    position: relative;
    margin-top: -120px;
    width: 90%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;

    border-radius: 30px;

    display: flex;
    justify-content: space-around;

    padding: 40px;
}

.palavra-destaque{
    color: #1792d4;
    font-weight: 750;
    font-size: 20px;
    
}

#servicos{
    background-color: #FFFF;
}

article{
    display: flex;
    
    background:#ffffff;

    border-radius:16px;

    padding:30px;

    display:flex;

    gap:25px;

    align-items:flex-start;

    box-shadow:
        0 8px 25px rgba(0,0,0,.08);

    transition:.3s;
}

#treinamentos{
    padding: 100px 0;


        background:
        radial-gradient(
            circle at center,
            rgba(20,130,188,0.25) 0%,
            rgba(20,130,188,0.12) 25%,
            rgba(20,130,188,0.05) 45%,
            transparent 70%
        ),

        linear-gradient(
            90deg,
            #0B111B 0%,
            #0F1724 50%,
            #0B111B 100%
        );
}

.black-card{

    background:
        rgba(14, 22, 36, 0.85);

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius:20px;

    padding:40px;

    transition:.3s;
    
    color:#ffffff
}


#servicos{
    padding: 100px 0;
}

.section-title{
    font-weight: 750;
    color: #1792d4;
    margin: 0px 0 10px 100px;
}

.section-subtitle1{
    font-size: 20px;
    margin: 0px 0 2px 100px;
}

.section-subtitle2{
    font-size: 20px;
    margin: 0px 0 50px 100px;
}



#servicos p{
    color: #292B2C;
    
}

.section-subtitle1{
    font-size: 30px;
    font-weight: 750;
}

h2{
    color: #1792d4;
}

.conteiner-de-cards {
    display: grid;
    grid-template-columns:
        repeat(auto-fit,minmax(500px,1fr));
    gap: 30px;
    max-width:1700px;

    margin:0 auto;
    
    color: #1C1F24;
}

.conteiner-de-cards article{

    padding:30px;
    border-radius:15px;
}

.card-text h3{
    font-size: 20px;
    font-weight: 750;
    margin-bottom: 10px;
}

.card-header{
    display: flex;
}

.card-header img{
    height: 150px;
}

.card-header h3{
    color: #1C1F24;
}
.card-header p{
    color: #FFFF
}

#cta{
    display: flex;
    margin: 30px 200px 30px 200px;
    align-items: center;
    gap: 30px;
    
}

#cta img{
    height: 100px;
    width: auto;
}

#footer {
    background-color: #3d424d;
    Display: flex;
    padding: 40px 60px;
    gap: 30px;
}

#footer h4{
    color:#1792d4;
    font-size: 30px;
    font-weight: 750;
}

.footer-item{
    display:flex;
    gap: 10px;

}

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.footer-social{
    display:flex;
    gap:35px;
    margin-top: 30px;
    margin-left: 10px;
}

.footer-social img{
    width: 40px;
    height: auto;
}

.logo-footer{
    height:50px;
    width:auto;
}

.footer-brand p{
    max-width:550px;
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top: 15px;
}