/* fontes padrão */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

p {
    font-family: Sora;
    size: 16pt;
    color: #061226;
}

a {
    font-family: Sora;
    size: 16pt;
}

a:hover {
    font-family: Sora;
    size: 16pt;
}


.navbar-toggle {
    border-color: #7C5A23;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    margin-top: 35px;
}

/*borda do menu hamburg*/
.navbar-toggle .icon-bar {
    background-color: #7C5A23;
}

/* Cabeçalho fixo utilizado ao rolar a página */
.header-fixed .affix {
    background-color: #ffffff;
    color: #061226;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    display: block;
}

/* Cor dos links do menu do cabeçalho fixo*/
.header-fixed .navbar.affix .navbar-nav>li>a {
    color: #7C5A23;
}

/* Cor dos links ativos do menu do cabeçalho fixo*/
.header-fixed .navbar.affix .navbar-nav>li>a:hover,
.header-fixed .navbar.affix .navbar-nav>li.active>a {
    color: #061226;
}

/* --- Estilos para o Menu Ativo como Botão --- */

/*
 * 1. Alinhamento Vertical dos Itens do Menu
 * O menu tem 100px de altura. Para que o "botão" e os outros links fiquem
 * alinhados verticalmente, usamos flexbox na lista de navegação.
*/
.header-fixed .navbar.affix .navbar-nav {
    display: flex;
    align-items: center;
    height: 100px;
    /* Garante que a <ul> ocupe toda a altura do header */
}

/*
 * 2. Estilização do Link Ativo
 * Aqui aplicamos os estilos do botão ao link (<a>) dentro do <li> que tem a classe .active.
 * Resetamos o line-height original para que o padding funcione corretamente.
*/
.header-fixed .navbar.affix .navbar-nav>li.active>a {
    /* Resetando o line-height original para o botão funcionar */
    line-height: 1.5;

    /* Estilos copiados da classe .btn.btn--primary.btn--rounded */
    background-color: #7C5A23;
    color: #ffffff !important;
    /* !important para garantir a sobreposição de cor */
    border: 2px solid #7C5A23;
    border-radius: 50px;
    /* Efeito arredondado */
    padding: 8px 20px;
    /* Padding para dar o formato de botão */
    transition: all 0.3s ease;
    /* Transição suave */
}

/*
 * 3. Efeito Hover no Link Ativo
 * Para dar um feedback visual ao passar o mouse sobre o item já ativo.
*/
.header-fixed .navbar.affix .navbar-nav>li.active>a:hover {
    background-color: #fff;
    /* Um tom um pouco mais claro para o hover */
    border-color: #7C5A23;
    color: #7C5A23 !important;
}



.header .navbar .logo img {
    width: 150px;
}



#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}


/*Seção Portfólio*/
.portfolio-item .portfolio--img img {
    max-width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;

}


.portfolio--img img {
    display: block;
    position: relative;
    width: 360px;
    border-radius: 10px;
    object-fit: cover;
    height: 200px;
    padding: 5px;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.portfolio-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 16px;
}

.portfolio-thumb:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    color: #ffffff;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.portfolio-zoom {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/*Seção sobre (About) */
/* Time */
.our-team {
    text-align: center;
}

.our-team .team_img {
    position: relative;
    overflow: hidden;
}

.our-team .team_img:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    bottom: -100%;
    left: 0;
    transition: all 0.3s ease 0s;
}

.our-team:hover .team_img:after {
    bottom: 0;
}

.our-team img {
    width: 100%;
    height: auto;
}

.our-team .social {
    padding: 0 0 18px 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: -100%;
    right: 10px;
    background: #7C5A23;
    border-radius: 0 0 20px 20px;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.our-team:hover .social {
    top: 0;
}

.our-team .social li a {
    display: block;
    padding: 15px;
    font-size: 15px;
    color: #fff;
}

.our-team:hover .social li a:hover {
    color: #061226;
}

.our-team .team-content {
    padding: 20px 0;
    background: #fff;
}

.our-team .title {
    font-size: 18px;
    font-weight: bold;
    color: #061226;
    text-transform: capitalize;
    margin: 0 0 20px;
    position: relative;
}

.our-team .title:before {
    content: "";
    width: 25px;
    height: 1px;
    background: #4F5444;
    position: absolute;
    bottom: -10px;
    right: 50%;
    margin-right: 9px;
    transition-duration: 0.25s;
}

.our-team .title:after {
    content: "";
    width: 25px;
    height: 1px;
    background: #4F5444;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: 9px;
    transition-duration: 0.25s;
}

.our-team:hover .title:before,
.our-team:hover .title:after {
    width: 50px;
}

.our-team .post {
    display: inline-block;
    font-size: 15px;
    color: #7C5A23;
    text-transform: capitalize;
}

.our-team .post:before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4F5444;
    margin: 0 auto;
    position: relative;
    top: -13px;
}


/*--------------------------------------------------------------
# Testimonial Carrousel
--------------------------------------------------------------*/
.testimonial {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
}

.testimonial .image {
    height: 170px;
    width: 170px;
    object-fit: cover;
    border-radius: 50%;
}

.depoimento {
    max-width: 90%;
}

/*Assinatura do depoente*/
.slide .details {
    font-family: "Sora";
    display: flex;
    flex-direction: column;
    align-items: center;
}

.details .name {
    color: #061226;
    font-weight: 400;
    font-size: 18px;
}

.details .job {
    color: #7C5A23;
    padding-bottom: 30px;
}

/* swiper button css */
.nav-btn {
    font-size: 30px;
    color: #061226;
    transition: 0.2s;
}

.nav-btn:hover {
    color: #7C5A23;
}

.nav-btn::after,
.nav-btn::before {
    font-size: 30px;
    color: #061226;
}

.swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
    background-color: #061226;
}

/* Fim da seção sobre (About) */


.testimonials-5 .testimonial--content p {
    font-size: 16px;
    line-height: 35px;
    color: #7C5A23;
    font-family: 'Sora';
    font-style: italic;
    margin-bottom: 29px;
}


/* Button Primary */
.btn--primary {
    background-color: #7C5A23;
    color: #ffffff;
    border: 2px solid #7C5A23;
}

.btn--primary:active,
.btn--primary:focus,
.btn--primary:hover {
    background-color: #061226;
    color: #ffffff;
    border-color: #061226;
}

.bg-dark .btn--primary:active,
.bg-dark .btn--primary:focus,
.bg-dark .btn--primary:hover {
    background-color: #ffffff;
    color: #7C5A23;
    border-color: #ffffff;
}

.btn--primary.btn--inverse:active,
.btn--primary.btn--inverse:focus,
.btn--primary.btn--inverse:hover {
    background-color: #ffffff;
    color: #7C5A23;
    border-color: #ffffff;
}

/* Button Secondary*/
.btn--secondary {
    background-color: #061226;
    color: #ffffff;
    border: 2px solid #061226;
}

.btn--secondary:active,
.btn--secondary:focus,
.btn--secondary:hover {
    background-color: #7C5A23;
    color: #ffffff;
    border-color: #7C5A23;
}

.hero .hero--headline {
    color: #ffffff;
    font-family: 'Sora';
    font-size: 50px;
    font-weight: 200;
    line-height: 57px;
    margin-bottom: 27px;
}

.hero .hero--bio {
    font-family: 'Sora';
    font-weight: 200;

}

.heading .heading--title {
    font-family: Sora;
    font-weight: 200;
    font-size: 40px;
}

.heading ul li p {
    color: #7C5A23;
}

.bg-theme {
    background-color: #4F5444 !important;
}

.chatbot-button img {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.chat {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 300px;
    height: 600px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.chat-container {
    height: 100%;

}

.user-bar {
    height: 55px;
    background: #005e54;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #fff;
    padding: 0 8px;
    font-family: Sora;
    font-size: 24px;
    position: relative;
    z-index: 101;
}

.user-bar:after {
    content: "";
    display: table;
    clear: both;
}

.user-bar div {
    float: left;
    transform: translateY(-50%);
    position: relative;
    top: 50%;
}

.user-bar .actions {
    float: right;
    margin: 0 0 0 20px;
}

.user-bar .actions.more {
    margin: 0 12px 0 32px;
}

.user-bar .actions.attachment {
    margin: 0 0 0 30px;
}

.user-bar .actions.attachment i {
    display: block;
    transform: rotate(-45deg);
}

.user-bar .avatar {
    margin: 0 0 0 5px;
    width: 36px;
    height: 36px;
}

.user-bar .avatar img {
    border-radius: 50%;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    display: block;
    width: 100%;
}

.user-bar .name {
    font-family: Sora;
    font-size: 17px;
    font-weight: 600;
    text-overflow: ellipsis;
    letter-spacing: 0.3px;
    margin: 0 0 0 8px;
    overflow: hidden;
    white-space: nowrap;
    width: auto;
}

.user-bar .status {
    display: block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    width: auto;
}

.conversation {
    font-family: "Sora";
    font-weight: 300;
    height: calc(100% - 12px);
    position: relative;
    background: #efe7dd url("../images/chatbot/whatsapp-backgound.png") repeat;
    z-index: 0;
}

.conversation ::-webkit-scrollbar {
    transition: all .5s;
    width: 5px;
    height: 1px;
    z-index: 10;
}

.conversation ::-webkit-scrollbar-track {
    background: transparent;
}

.conversation ::-webkit-scrollbar-thumb {
    background: #b3ada7;
}

.conversation .conversation-container {
    height: calc(100% - 68px);
    box-shadow: inset 0 10px 10px -10px #000000;
    overflow-x: hidden;
    padding: 0 16px;
    margin-bottom: 5px;
}

.conversation .conversation-container:after {
    content: "";
    display: table;
    clear: both;
}

.message {
    color: #000;
    clear: both;
    line-height: 18px;
    font-size: 15px;
    padding: 8px;
    position: relative;
    margin: 8px 0;
    max-width: 80%;
    word-wrap: break-word;
}

.message:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
}

.metadata {
    display: inline-block;
    padding: 0 0 0 7px;
    position: relative;
    bottom: -4px;
}

.metadata .time {
    color: rgba(0, 0, 0, .45);
    font-size: 11px;
    display: inline-block;
}

.metadata .tick {
    display: inline-block;
    margin-left: 2px;
    position: relative;
    top: 4px;
    height: 16px;
    width: 16px;
}

.metadata .tick svg {
    position: absolute;
    transition: .5s ease-in-out;
}

.metadata .tick svg:first-child {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: perspective(800px) rotateY(180deg);
    transform: perspective(800px) rotateY(180deg);
}

.metadata .tick svg:last-child {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: perspective(800px) rotateY(0deg);
    transform: perspective(800px) rotateY(0deg);
}

.metadata .tick-animation svg:first-child {
    -webkit-transform: perspective(800px) rotateY(0);
    transform: perspective(800px) rotateY(0);
}

.metadata .tick-animation svg:last-child {
    -webkit-transform: perspective(800px) rotateY(-179.9deg);
    transform: perspective(800px) rotateY(-179.9deg);
}

.message:first-child {
    margin: 16px 0 8px;
}

.message.received {
    background: #fff;
    border-radius: 0px 5px 5px 5px;
    float: left;
}

.message.received .metadata {
    padding: 0 0 0 16px;
}

.message.received:after {
    border-width: 0px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
    top: 0;
    left: -10px;
}

.message.sent {
    background: #e1ffc7;
    border-radius: 5px 0px 5px 5px;
    float: right;
}

.message.sent:after {
    border-width: 0px 0 10px 10px;
    border-color: transparent transparent transparent #e1ffc7;
    top: 0;
    right: -10px;
}

.message.rec {
    background: #D2C9BD;
    color: #ffffff;
    border-radius: 0px 5px 5px 5px;
    float: left;
}


.message.rec:before {
    border-width: 10px 10 0px 0px;
    border-color: transparent transparent transparent #D2C9BD;
    top: 0;
    right: -10px;
}

.message.rec .avatar {
    margin: 0 0 0 5px;
    width: 36px;
    height: 36px;
}

.message.rec .avatar img {
    border-radius: 50%;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    display: block;
    width: 100%;
}

.conversation-compose {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    overflow: hidden;
    height: 50px;
    width: 100%;
    z-index: 2;
}

.conversation-compose div,
.conversation-compose input {
    background: #fff;
    height: 100%;
}

.conversation-compose .emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 5px 0 0 5px;
    flex: 0 0 auto;
    margin-left: 8px;
    width: 48px;
}

.conversation-compose .input-msg {
    border: 0;
    flex: 1 1 auto;
    font-size: 16px;
    margin: 0;
    outline: none;
    min-width: 50px;
}

.conversation-compose .photo {
    flex: 0 0 auto;
    border-radius: 0 0 5px 0;
    text-align: center;
    position: relative;
    width: 48px;
}

.conversation-compose .photo:after {
    border-width: 0px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    position: absolute;
    width: 0;
    height: 0;
    content: "";
    top: 0;
    right: -10px;
}

.conversation-compose .photo i {
    display: block;
    color: #7d8488;
    font-size: 24px;
    transform: translate(-50%, -50%);
    position: relative;
    top: 50%;
    left: 50%;
}

.conversation-compose .send {
    background: transparent;
    border: 0;
    cursor: pointer;
    flex: 0 0 auto;
    margin-left: 8px;
    margin-right: 8px;
    padding: 0;
    position: relative;
    outline: none;
}

.conversation-compose .send .circle {
    background: #008a7c;
    border-radius: 50%;
    color: #fff;
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conversation-compose .send .circle i {
    font-size: 24px;
    margin-left: 5px;
}



.marvel-device .status-bar {
    display: none;
}

.screen-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.conversation {
    height: 480px;
}

.conversation .conversation-container {
    height: 480px;
}

.back {
    font-size: 30px;
    float: left;
}

.forword {
    font-size: 30px;
    float: right;
}

/*------------------------------------*\
    #About
\*------------------------------------*/
.about {
    padding-bottom: 50px;
}

.about .heading .heading--title {
    text-transform: none
}

.about--img {
    position: relative;
}

.about--img img {
    display: block;
    position: relative;
    width: 100%;
    box-shadow: 5px 10px #4F5444;
    height: auto;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

/*------------------------------------*\
    #Valores
\*------------------------------------*/

.valores {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.valor {
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    background: #f0f0f0;
    transition: background 0.3s;
    font-family: 'Sora';
    color: #7C5A23;
}

.valor:hover {
    background: #dceeff;
}

/* Caixa oculta de explicação */
.valor-info {
    margin-top: 15px;
    padding: 12px;
    background: #f9f9f9;
    border-left: 4px solid #7C5A23;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Sora';
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

    .hero .hero--headline {
        color: #ffffff;
        font-family: 'Sora';
        font-size: 40px;
        font-weight: 200;
        line-height: 42px;
        margin-bottom: 27px;
    }

    .navbar-nav li a {
        line-height: 36px;
        color: #7C5A23;
        padding-right: 0;
        padding-left: 10px;
        padding-top: 0;
    }

    .container>.navbar-collapse {
        width: 100%;
        background-color: #ffffff;
        margin-right: 0;
        margin-left: 0;
    }


    .header-fixed .affix {
        background-color: #ffffff;
        color: #061226;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
        -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
        display: block;
    }

    .social-module .social--icons {
        margin-left: 20px;
    }

    .header-fixed .affix .contact-module .btn.btn--link,
    .social-module .social--icons a {
        color: #ffffff;
    }
}