:root {
    --color-primary: #830051;
    --color-secondary: #F0AB00;
    --color-third: #FEF1E2;
}

@font-face {
    font-family: 'Lexia';
    src: url(../fonts/Lexia-regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: 'Lexia';
    src: url(../fonts/Lexia-XBold.ttf);
    font-weight: bold;
}

body {
    font-family: "Lexia", Helvetica, sans-serif;
    color: #3F4545;
    font-size: 1.125rem;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lexia', Helvetica, sans-serif;
    font-weight: bold;
}

small{
    font-size: 12px;
    line-height: 0.5;
}


h2{
    font-size: 50px;
}

p.text-break {
    line-height: 1;
}

p{
    font-size: 30px;
}

a{
    text-decoration: none;
    color: #3f4545;
}

a:hover{
    text-decoration: underline;
}

.color-primary {
    color: var(--color-primary);
}

.color-secondary {
    color: var(--color-secondary);
}

.color-third {
    color: var(--color-third);
}

.bg-color-primary {
    background-color: var(--color-primary);
}

.bg-color-secondary {
    background-color: var(--color-secondary);
}

.bg-color-third {
    background-color: var(--color-third);
}

.bg-color-fourth {
    background-color: var(--color-fourth);
}

footer{
    padding: 5rem 0;
}

.btn-primary,
.btn-primary:hover{
    font-family: 'Lexia', Helvetica, sans-serif;
    background-color: var(--color-primary);
    border-radius: 300px;
    font-weight: bold;
    padding: 2rem 3rem;
    border: none;
    text-decoration: none;

    color: var(--color-secondary);
    font-size: 2.813rem;
}

.section{
    padding: 5rem 0;
}

.logo{
    max-width: 150px;
}

/* header  */

.header{
    min-height: 600px;
}

.header h1{
    font-size: 70px;
    font-weight: bold;
}

.logo-1{
    max-width: 200px;
}

.logo-2{
    max-width: 170px;
}

.line-2{
    width: 2px;
    height: 25px;
    background-color: var(--color-primary);
    border-radius: 10px;
}

.bg-header{
    /* background: url("../img/img-1.jpg") no-repeat center center; */
    background: url("/content/dam/multibrand/br/pt/azmed-2024/home/fazbem/assets/img/img-1.jpg") no-repeat center center;
    background-size: cover;
}


/* serviços */
.radius-custom{
    border-radius: 100px;
}

ul li{
    list-style: none;
}

.list {
    max-width: 45px;
}


/* benfecicios */
.number {
    font-size: 50px;
    color: var(--color-primary);
    font-weight: bold;
    background-color: var(--color-secondary);
    border-radius: 50%; /* Para o formato circular */
    display: inline-flex; /* Para o alinhamento com flexbox */
    justify-content: center;
    align-items: center;
    width: 70px; /* Define a largura igual à altura */
    height: 70px; /* Define a altura igual à largura */
}

.line::after {
    content: '';
    width: 1px;
    height: 50px;
    border: 1px dashed var(--color-secondary);
    display: block;
    margin: auto;
}

/* conheca */
.conheca{
    background: url("../img/efeito.svg") no-repeat 102% center, var(--color-secondary);
    background-size: 30%;
}


/*footer*/
footer{
    background-color: var(--color-third);
    font-size: 0.875rem;
}

footer .logo{
    max-width: 170px;
}

footer .rede-social{
    max-height: 40px;
}

footer p{
    line-height: 1;
}

footer .separador {
    width: 2px;
    height: 25px;
    background-color: var(--color-primary);
    border-radius: 10px;
}

/* responsivo */
@media ( max-width: 1200.98px) {
    .number, .btn-primary, .header h1, h2{
        font-size: 2rem;
    }
    p{
        font-size: 1rem;
    }
    .section{
        padding: 3rem 0;
    }
    .list {
        max-width: 35px;
    }
    .number{
        width: 50px;
        height: 50px;
    }
}
@media ( max-width: 767.98px) {
    body{
        font-size: 1rem;
    }
    small{
        font-size: 10px;
    }
    footer{
        padding: 2rem 0;
    }
    .nav-link{
        border: 0;
    }
    .number, .btn-primary, .header h1, h2{
        font-size: 1.5rem;
    }
    p{
        font-size: 1rem;
    }
    .section{
        padding: 1rem 0;
    }

    .header {
        min-height: 170px;
    }

    .bg-header{
        min-height: 300px;
    }
    .logo-1, .logo-2, footer .logo {
        max-width: 120px;
    }
    .radius-custom {
        border-radius: 0px;
    }

    .btn-primary{
        padding: 0.5rem;
        font-size: 1rem;
    }
}