﻿.page {
    padding: 24px 16px;
}

    .page .h3 {
        font-weight: 700;
        letter-spacing: -0.25px;
        margin: 0 0 24px 0;
    }

    .page p a {
        color: var(--s3);
        text-decoration: underline;
    }

/* PERGUNTAS */

.perguntas {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
}

.pergunta-box {
    display: block;
    padding: 16px;
    border: 1px solid rgba(30, 33, 48, 0.1);
    border-radius: 16px;
}

    .pergunta-box .h6 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0.15px;
        font-weight: 600;
        color: var(--p3);
        margin-bottom: 16px;
    }

    .pergunta-box p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.5px;
        margin: 0;
    }

/* CONFIRMA CADASTRO */

.cadastro-final img {
    max-width: 150px;
    margin: 32px 0;
}

@media screen and (min-width: 1600px) {
    .page {
        padding: 80px 0;
        position: relative;
    }

        .page:before,
        .page:after {
            content: '';
            width: 430px;
            height: 580px;
            background-image: url(../img/bg-colmeia-small.svg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: 100%;
            position: absolute;
            z-index: -1;
            opacity: 0.8;
        }

        .page:before {
            top: 100px;
            left: -400px;
            transform: rotate(180deg);
        }

        .page:after {
            bottom: 300px;
            right: -400px;
        }

    .pergunta-box {
        display: block;
        padding: 24px;
        border: 1px solid rgba(30, 33, 48, 0.1);
        border-radius: 16px;
        background-color: var(--white);
        box-shadow: 0 4px 12px rgb(30 33 48 / 10%);
        width: 100%;
    }

        .pergunta-box .h6 {
            font-size: 22px;
            line-height: 26px;
        }
}

/* INDUSTIAS */

.insdustrias {
    margin: 80px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

    .insdustrias li {
        background-color: #fff;
        box-shadow: 0 4px 12px rgb(30 33 48 / 20%);
        border: 2px solid transparent;
        border-radius: 16px;
        width: calc((100% / 2) - 24px);
        height: 150px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        gap: 12px;
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 1.25px;
        font-weight: 700;
        color: var(--p4);
        cursor: pointer;
    }

        .insdustrias li:hover {
            border-color: var(--p);
        }

@media screen and (min-width: 768px) {
    .insdustrias li {
        width: calc((100% / 3) - 24px);
    }
}

@media screen and (min-width: 1024px) {
    .insdustrias li {
        width: calc((100% / 6) - 24px);
    }
}

/* EMAIL */

.email-box img {
    text-align: center;
    margin: auto;
}

.email-box .h4 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.25px;
    font-weight: 500;
    background-color: rgb(30 33 48 / 20%);
    padding: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.email-box .container .col-md-6 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
}

    .email-box .container .col-md-6 .h4 {
        margin-top: 48px;
        width: 100%;
    }

.email-box p.left {
    text-align: right;
}

.quemsomos .titulo {
    text-align: center;
    margin: 0 0 50px;
    font-weight: bold;
    color: var(--p3);
}

    .quemsomos .titulo h1 {
        font-weight: 700;
        var(--p3);
    }

    .quemsomos .titulo h3 {
        font-size: 20px;
        font-weight: lighter;
        max-width: 650px;
        margin: 0 auto;
        color: var(--p3);
    }

.quemsomos .subtitulo {
    margin-bottom: 50px;
}

    .quemsomos .subtitulo h4 {
        font-weight: bold;
        margin-bottom: 16px;
        color: var(--p3);
    }

@media screen and (min-width: 0) {
    .quemsomos form {
        padding: 0;
    }
}

@media screen and (min-width: 768px) {
    .quemsomos form {
        padding: 0 72px;
    }
}

.quemsomos form button {
    margin: auto;
    padding: 16px;
    border-color: var(--s);
    color: var(--light);
    background-color: var(--s);
    font-weight: 500;
    cursor: pointer;
    border-radius: 100px;
    transition: all ease 0.3s;
}

.quemsomos .url {
    text-align: center;
    background-color: var(--p);
    margin: 64px 0;
    color: var(--white);
    font-weight: normal;
    transition: all 0.3s;
    border-radius: 10px;
}

    .quemsomos .url:hover {
        background-color: var(--p3);
        transition: all 0.3s;
    }

    .quemsomos .url a {
        font-size: 28px;
        line-height: 1.5;
        font-weight: 500;
        padding: 24px;
        display: block;
        letter-spacing: 1.25px;
    }

.quemsomos .numeros {
    margin: 64px 0;
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 12px;
}

    .quemsomos .numeros h1 {
        width: 100%;
        text-align: center;
        color: var(--p3);
        margin-bottom: 40px;
        font-weight: bold;
    }

.quemsomos .contato {
    margin: 32px 0;
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px 12px;
    flex-direction: row;
    align-content: stretch;
}

  

@property --num {
    syntax: '<integer>';
    initial-value: 100;
    inherits: false;
}

@media screen and (min-width: 0) {
    .quemsomos .numeros div {
        border: solid 1px #cccccc;
        border-radius: 10px;
        width: calc(100% - 12px);
        min-height: 150px;
        text-align: center;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .quemsomos .contato div {
        width: 100% !important;
        border: solid 1px #cccccc;
        border-radius: 10px;
        width: calc(100% - 12px);
        min-height: 150px;
        text-align: center;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 20px;
    }

    .quemsomos .contato a:nth-child(3) {
        display:none;
    }

    

    
}


@media screen and (min-width: 768px) {
    .quemsomos .numeros div {
        width: calc((100% / 3) - 12px);
    }

    .quemsomos .contato div {
        width: calc((100% / 3) - 36px);
    }

    .farmacias .contato div {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 6rem;
        flex-direction: row-reverse;
        gap: 1rem;
        font-size: 2rem;
        line-height: 1.25;
        letter-spacing: 0.5px;
        font-weight: 600;
    }

    .quemsomos .contato a:nth-child(3) {
        display: block;
    }
}



.quemsomos .numeros div:hover {
    box-shadow: #cccccc 2px 2px 10px;
}

.quemsomos .numeros span {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 500;
}

    .quemsomos .numeros span strong {
        font-size: 48px;
        line-height: 0;
        font-weight: 900;
        animation: counter 5s ease;
        counter-reset: num var(--num);
    }

.quemsomos .contato div:hover {
    box-shadow: #cccccc 2px 2px 10px;
}

.quemsomos .contato span {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 500;
}

    .quemsomos .contato span strong {
        font-size: 48px;
        line-height: 0;
        font-weight: 900;
        animation: counter 5s ease;
        counter-reset: num var(--num);
    }

@media screen and (min-width: 768px) {
    .quemsomos .contato div {
        width: calc((100% / 3) - 12px);
    }
}

.quemsomos .contato div:hover {
    box-shadow: #cccccc 2px 2px 10px;
}

.quemsomos .contato img {
    font-size: 32px;
    line-height: 1.5;
}

 


.quemsomos .numeros .un span {
    color: #FF7900;
}

.quemsomos .numeros .sku span {
    color: #217C33;
}

.quemsomos .numeros .cnpj span {
    color: #002fb0;
}

.quemsomos .numeros .trans span {
    color: #FF7900;
}

.quemsomos .numeros .dia span {
    color: #217C33;
}

.quemsomos .numeros .ped span {
    color: #002fb0;
}


.quemsomos .contato .mail {
    background-color: #FF7900;
    padding:30px 0;
}

.quemsomos .contato .whatsapp {
    background-color: #217C33;
    padding: 30px 0;
}

.quemsomos .contato .chat {
    background-color: #002fb0;
    padding: 30px 0;
}


/* .quemsomos .numeros span strong:after {
	content: counter(num);
	color: #000;
} */

.quemsomos .material-symbols-rounded {
    font-variation-settings: 'FILL' 0, 'wght' 350, 'GRAD' 0, 'opsz' 24;
    position: relative;
    bottom: -5px;
}

.quemsomos .apps {
    text-align: center;
    margin: 40px 0;
}

    .quemsomos .apps h5 {
        font-size: 24px;
        line-height: 1.6;
        font-weight: 700;
        letter-spacing: -0.15px;
    }

    .quemsomos .apps p {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 400;
        letter-spacing: -0.15px;
        margin-bottom: 32px;
    }

.quemsomos .colmeia {
    min-height: auto;
}

@keyframes counter {
    from {
        --num: 0;
    }

    to {
        --num: 100;
    }
}

.quemsomos .area-col {
    position: relative;
}

.quemsomos.colmeia-block {
    background-image: linear-gradient(151.58deg, #006da2 1.64%, #001223 97.41%);
    width: 100%;
    margin: 120px 0;
    padding: 40px 0;
    color: #fff;
}

.quemsomos .colmeia {
    margin: -120px 0px -180px 0;
    max-width: initial;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
}

@media screen and (min-width: 1280px) {
    .quemsomos .area-col h3 {
        position: absolute;
        top: 0;
        left: 40px;
        max-width: 200px;
        font-size: 40px;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin: 0;
    }
}

.area-marcas .item img {
    border: solid 1px #e9e9e9;
    padding: 10px;
    border-radius: 10px;
}

.area-marcas .item {
    background-color: #ffffff;
}


.farmacias .farm-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    max-width: 850px;
    margin: auto;
    margin-top: auto;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: .25px;
    margin-top: 2rem;
}

.farmacias .app {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
}

    .farmacias .app a {
        max-width:200px;
    }

.farmacias .contato svg {
    width: 3rem
}


.farmacias .contato a {
    display: block;
    width: calc((100% / 3) - 12px);
}


.farmacias .contato div svg {
    width: 3rem;
    height: 3rem;
}

.farmacias #btn-instagram,
.farmacias #btn-linkeding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #333;
    height: 3rem;
    border-radius: 8px;
    padding: 0 1rem;
    color: white;
    font-weight: 600;
    transition: all .3s;
}

.farmacias #btn-linkeding {
    background-color: #0274b3;
}

.farmacias #btn-linkeding:hover {
    background-color: #054d75;
}

.farmacias #btn-instagram {
    background-color: #8542b9;
}

.farmacias #btn-instagram:hover {
    background-color: #571b86;
}

.parceiras p a {
    color: var(--s3);
    text-decoration: underline;
}