﻿:root {
    --af-primary: #2A53C2;
    --af-secondary: #132C6F;
    --af-light-blue: #F5F6FF;
    --heading-color: #050038;
    --text-color: #696688;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 15px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    color:var(--text-color)
}

section {
    padding-top: 90px;
    padding-bottom: 90px;
}

a{
    text-decoration:none;
}

  p a:hover {
        text-decoration: underline;
    }

.btn {
    --bs-btn-padding-x: 2rem;
    --bs-btn-border-radius: 2rem;
}
.af-primary {
    color: white;
    background-color: var(--af-primary);
}
    .af-primary:hover, .af-primary:active {
        color: white;
        background-color: var(--af-secondary);
    }
.af-primary-outline, .af-primary-outline:hover, .af-primary-outline:active {
    color: var(--af-primary);
    border: 1px solid var(--af-primary);
}

.af-secondary {
    color: var(--af-primary);
    background-color: white;
}

.text-primary {
    color: var(--af-primary)!important;
}

    .af-secondary:hover, .af-secondary:active {
        color: var(--af-secondary);
        background-color: white;
    }
h1,h2,h3,h4,h5,h6{
    color:var(--heading-color);
}

h1 {
    letter-spacing: -1px;
}
h2,h3 {
    letter-spacing: -0.5px
}

.light-bg {
    background-color: var(--af-light-blue);
}

.gradient-light-bg {
    background: linear-gradient(to bottom, var(--af-light-blue) 0%, rgba(245, 246, 255, 0) 100%);
}

.af-card{
    padding:15px;
}
.af-card img{
    width:48px;
}

.card {
    color: var(--text-color)!important
}

#depoimentos {
    background: linear-gradient(to top, var(--af-primary) 0%, var(--af-secondary) 100%);
    overflow:hidden;
}

#depoimentos h2{
    color:white;
    max-width:450px;
    font-weight:700;
    font-size:2.25rem;
}

    #depoimentos .depoimentos {
        margin-top: 40px;
        padding-bottom: 50px;
    }

    #depoimentos .swiper-pagination-bullet-active{
        background-color:white;
    }

    #depoimentos .depoimentos--card {
        background-color: white;
        border-radius: 1rem;
        box-shadow: 12px 12px 20px 0 rgba(0,0,0,0.1);
        padding: 2rem;
    }
    #depoimentos .depoimentos--card p b{
        color:var(--heading-color);
    }

    #depoimentos .depoimentos--card img{
        margin-bottom:8px;
    }



.af-form-wrapper {
    border-radius: 20px;
    background: #fff;
    box-shadow:0px 6px 25px rgba(24,4,139,.08);
}

    .af-form-wrapper h3 {
        font-size: 1.75rem;
    }

    .af-form-wrapper .form-control,
    .af-form-wrapper .form-select {
        height: 40px;
        border-radius: 8px;
        border-color: rgba(17,25,46,0.10);;
        font-size: 0.95rem;
        background-color: #F9FAFE;
    }

    .af-form-wrapper textarea.form-control {
        height: auto;
        min-height: 140px;
    }

    .af-form-wrapper label {
        color: #333333;
        font-weight:600;
        font-size: 0.9rem;
        margin-bottom:0.2rem
    }
    .af-form-wrapper ::placeholder {
        color: #676767;
        font-weight:400;
    }

#stats h2 {
    font-size: 2.3rem;
    font-weight:700;
}

#stats h3{
    font-weight:700;
    position:relative;
    display:inline-block
}

    #stats h3::before {
        content: "";
        position: absolute;
        top: 3px;
        left: -13px;
        width: 1px;
        height: calc(100% - 5px);
        background-color: var(--af-primary)
    }
#contato h2 {
    font-size: 2.4rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    #contato h2 {
        font-size: 3rem;
    }
    #contato h2 ~ p {
        font-size: 1.1rem;
    }
}

.video--placeholder {
    aspect-ratio: 16/9;
    background-color: #4670E0;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.video--placeholder > img{
    cursor:pointer;
    transition:transform .15s linear;
}

    .video--placeholder > img:hover{
        transform:scale(1.1);
    }

.carrossel--clientes img {
    display: block;
    margin: 0 auto;
    max-width: 160px; 
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}


#chamada {
    padding-top: 0;
}

    #chamada > div {
        text-align: center;
        background-color: var(--af-primary);
        border-radius: 1.2rem;
        padding: 3rem 1.2rem;
    }

    #chamada h2 {
        font-size: 2.4rem;
        color: white;
        font-weight: 600;
        max-width: 680px;
        margin: 0 auto;
    }

    #chamada p {
        max-width: 680px;
        margin: 0 auto 1rem;
    }

@media (min-width: 768px) {
    #chamada h2 {
        font-size: 3rem;
    }
}


#chamada p {
    color: rgba(255,255,255,.7);
}