@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600&display=swap');

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1rem;
    color: #787c83;
}

b,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

a {
    transition: .2s ease-in-out;
    text-decoration: none;
    color: #29bbff;
}

a:hover {
    color: #0086c4;
}

img {
    max-width: 100%;
}

.content-image img {
    box-shadow: 0px 10px 30px rgb(0 0 0 / 07%);
}

.padding-section {
    padding: 100px 0;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Header */

.main-header {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    transition: .2s ease-in-out;
}

.main-header.header-mod {
    background-color: #102542;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Logo */

.main-logo a {
    font-size: 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
}

.main-logo a span {
    font-weight: 600;
}

/* Menu */

.main-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.main-menu ul li {
    margin-right: 20px;
}

.main-menu ul li:last-child {
    margin-right: 0px;
}

.main-menu ul li a {
    text-decoration: none;
    color: #fff;
    position: relative;
}

.main-menu ul li a::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: .2s ease-in-out;
    opacity: 0;
}

.main-menu ul li a:hover::before {
    width: 70%;
    opacity: 1;
}

/* BTN */

.btnRF {
    display: inline-flex;
    padding: 10px 15px;
    background-color: #eee;
    font-weight: 600;
    box-shadow: 0px 5px 10px rgb(0, 0, 0, 0.07);
    border: 0;
    transition: .2s ease-in-out;
}

.btnRF.btnWpp {
    background-color: #25d366;
    color: #fff;
}

.btnRF.btnWpp:hover {
    background-color: #18b653;
}

.btnRF.btnBlue {
    background-color: #29bbff;
    color: #fff;
}

.btnRF.btnBlue:hover {
    background-color: #007fba;
}

.btnRF:focus {
    outline: none;
}

.btnRF img {
    width: 25px;
    margin-right: 10px;
}

.content-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.content-buttons .btnRF {
    margin-right: 20px;
}

.content-buttons .btnRF:last-child {
    margin-right: 0;
}

/* Banner */

.main-banner {
    min-height: 600px;
    background-image: url(https://realfiador.com.br/uploads/RealFiador_banner.jpg);
    background-position: top left;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    z-index: 9;
}

.main-banner::before {
    content: '';
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    background-image: url(https://realfiador.com.br/uploads/iconeBanner.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    animation: float 2s ease-in-out infinite;
}

.main-banner .content-titulos .subtitulo {
    color: #fff;
}

.main-banner .content-titulos .subtitulo::before {
    background-color: #fff;
}

.main-banner .content-titulos .titulo {
    color: #fff;
    text-align: center;
}

.main-banner .content-titulos .titulo .destaque {
    color: #29bbff;
}

.main-banner .content-titulos {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Títulos */

.content-titulos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.content-titulos .subtitulo {
    font-size: 1.125rem;
    font-weight: 400;
    padding-left: 11px;
    position: relative;
    margin: 0 0 20px;
    color: #29bbff;
}

.content-titulos .subtitulo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #29bbff;
}

.content-titulos .titulo {
    font-size: 3rem;
    line-height: 3rem;
    margin: 0;
    color: #102542;
}

.content-titulos.content-titulos-center {
    align-items: center;
    text-align: center;
}

.content-titulos .titulo .destaque {
    color: #29bbff;
}

/* Floating */

@keyframes float {
    0% {
        bottom: 50px
    }

    50% {
        bottom: 70px
    }

    100% {
        bottom: 50px;
    }
}

/* Fiador profissional */

#fiador-profissional p {
    font-size: 1.125rem;
}

#fiador-profissional .row p {
    padding-left: 50px;
}

#fiador-profissional .row2 .btnRF {
    margin-left: 50px;
    margin-top: 30px;
}

/* Como contratar */

#como-contratar {
    background-color: #102542;
    position: relative;
}

#como-contratar .content-image {
    position: relative;
}

#como-contratar .content-image {
    padding-left: 50px;
    padding-top: 50px;
    padding-right: 50px;
}

#como-contratar .content-image img {
    position: relative;
    z-index: 9;
}

#como-contratar .content-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 100px);
    height: calc(100% - 50px);
    background-color: #29bbff;
    z-index: 9;
}

#como-contratar .content-titulos {
    margin-bottom: 30px;
}

#como-contratar .content-text p {
    font-size: 1.125rem;
    color: #fff;
}

#como-contratar .content-titulos .titulo {
    color: #fff;
}

/* CTA */

.cta {
    background-color: #f2f7fd;
    position: relative;
}

.cta .container {
    position: relative;
    z-index: 9;
}

.cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 9;
    background-image: url(https://realfiador.com.br/uploads/grafismo1.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta .content-buttons {
    justify-content: center;
    margin-top: 30px;
}

/* Feature */

.featureRF {
    padding: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.featureRF .content-icon svg {
    width: 80px;
}

.featureRF .content-icon {
    margin-bottom: 20px;
}

.featureRF .content-icon svg path {
    fill: #29bbff;
}

.featureRF .content-text h3 {
    font-size: 1.875rem;
    color: #102542;
    margin-bottom: 10px;
}

/* Sobre nós */

#sobre-nos .content-text p {
    font-size: 1.125rem;
}

#sobre-nos .content-titulos {
    margin-bottom: 30px;
}

#sobre-nos .featureRF .content-text p {
    font-size: 1rem;
}

/* Footer */

#fale-conosco {
    background-color: #102542;
    padding-bottom: 0px;
}

#fale-conosco .content-titulos {
    margin-bottom: 30px;
}

#fale-conosco .content-text p {
    font-size: 1.125rem;
    color: #fff;
}

#fale-conosco .content-titulos .titulo {
    color: #fff;
}

#fale-conosco .featureRF .content-text h3 {
    color: #fff;
}

#fale-conosco .featureRF {
    box-shadow: none;
    padding: 0px;
    margin-bottom: 50px;
}

#fale-conosco div>.featureRF:last-child {
    margin-bottom: 0px;
}

.copyright {
    text-align: center;
    padding: 30px 0;
    margin-top: 100px;
    background: #0c203a;
}

#fale-conosco .copyright p {
    font-size: 1rem;
    opacity: 0.5;
}

#fale-conosco .featureRF .content-text p {
    margin-bottom: 0;
    font-size: 1rem;
}

#fale-conosco .featureRF .content-text .btnRF {
    margin-top: 20px;
}

/* Form */

.formRF form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.formRF form .group-inputRF {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
}

.formRF form .group-inputRF span {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 5px;
}

.formRF form .group-inputRF input,
.formRF form .group-inputRF textarea {
    width: 100%;
    padding: 5px 10px;
    border: 2px solid #fff;
    background-color: transparent;
    transition: .2s ease-in-out;
    color: #fff;
}

.formRF form .group-inputRF input::placeholder,
.formRF form .group-inputRF textarea::placeholder {
    color: #fff;
    opacity: 0.5;
    transition: .2s ease-in-out;
}

.formRF form .group-inputRF input:focus::placeholder,
.formRF form .group-inputRF textarea:focus::placeholder {
    opacity: 1;
}

.formRF form .group-inputRF textarea {
    resize: none;
    height: 100px;
}

.formRF form .group-inputRF input:focus,
.formRF form .group-inputRF textarea:focus {
    outline: none;
    border-color: #29bbff;
}

/* Mobile */

@media (max-width: 1024px) {
    .main-menu {
        display: none;
    }
}

@media (max-width: 991px) {
    #fiador-profissional .row2 {
        margin-top: 50px;
    }

    .content-titulos .titulo {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    #sobre-nos .featureRF {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 90%;
    }

    #fiador-profissional .row p {
        padding-left: 20px;
    }

    #fiador-profissional .row2 .btnRF {
        margin-left: 20px;
    }

    #como-contratar .content-image::before {
        width: calc(100% - 40px);
        height: calc(100% - 20px);
    }

    #como-contratar .content-image {
        padding-left: 20px;
        padding-top: 20px;
        padding-right: 20px;
    }

    .padding-section {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .main-banner {
        background-position: center;
        height: 100vh;
    }

    .main-logo a {
        font-size: 1.5rem;
    }

    .btnRF {
        padding: 5px 10px;
    }

    .btnRF img {
        width: 20px;
    }

    #fiador-profissional .row1 .content-image {
        max-height: 160px;
        overflow: hidden;
        margin-top: 20px;
    }

    #fiador-profissional .row1 .content-image img {
        position: relative;
    }

    #fiador-profissional .content-image img {
        box-shadow: none;
    }
    
    #fiador-profissional .content-image {
        box-shadow: 0px 10px 30px rgb(0 0 0 / 7%);
    }

    #fiador-profissional .row2 .content-image img {
        display: none;
    }

    #fiador-profissional .row p {
        padding: 0;
    }
    
    #fiador-profissional .row2 .btnRF {
        margin-left: 0;
    }

    #como-contratar .row {
        flex-direction: column-reverse;
    }

    #como-contratar .content-image {
        margin-top: 50px;
    }

    #como-contratar .content-image img {
        max-height: 300px;
    }

    #como-contratar .content-image::before {
        width: 100%;
    }

    #fale-conosco .featureRF {
        margin-top: 50px;
        margin-bottom: 0;
    }

    .content-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content-buttons .btnRF {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .content-buttons .btnRF:last-child {
        margin-bottom: 0;
    }

    .content-titulos .titulo {
        font-size: 2.25rem;
        line-height: 2.25rem;
    }

    .main-banner::before {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 350px) {
    .main-logo a {
        font-size: 1.125rem;
    }

    .btnRF {
        font-size: 0.875rem;
    }
}

