/* Botões principais */

.btn-main {
    background: transparent;
    padding: 14px 35px;
    border: 1px solid #0077b6;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-main:hover span {
    color: #fff;
}

.btn-main:after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: 100%;
    background: #0077b6;
    border-radius: 0 0 100% 100%/0 0 100% 100%;
    transition: all 0.6s cubic-bezier(1, 0, 0.55, 1);
}

.btn-main:hover:after {
    bottom: -10px;
}

.btn-main.btn-lit {
    border-color: #fff;
    color: #fff;
}

.btn-main.btn-lit:hover span {
    color: #1e1e1e;
}

.btn-main.btn-lit:after {
    background: #5ac8ff;
}


/* Seções e títulos */

.section-head h6 {
    font-size: 13px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0077b6;
    margin-bottom: 10px;
}


/* Preloader */

.pace .pace-progress {
    background: #0077b6;
}


/* Progress button (scroll up) */

.progress-wrap::after {
    color: #0077b6;
}

.progress-wrap svg.progress-circle path {
    stroke: #0077b6;
}


/* Autor/testemunhos */

.author-info h5 {
    font-size: 16px;
    color: #0077b6;
}

.swiper-pagination-bullet-active {
    background: #0077b6;
}


/* Bloco de citações */

.quote-block .content h6 {
    color: #0077b6;
}

.quote-block .content h6 span {
    color: #5ac8ff;
}


/* Ícones sociais */

.social-icons li a:hover {
    color: #5ac8ff;
}


/* Footer links */

.footer .footer_menu_list li a:hover {
    color: #5ac8ff;
}


/* Áreas de fundo suave */

.bg-light-custom {
    background-color: #e6f7ff;
}