/*
 * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 *
 * Template Name: telecontrol - App Landing Template   
 * Template URI: https://thememarch.com/demo/html/telecontrol/
 * Description: telecontrol is an app landing HTML template which comes with unique and clean design. It helps you to create a beautiful app landing HTML website. It is designed with Bootstrap v4.2.1 the latest bootstrap version. telecontrol is well organized and very easy to customize.
 * Author: Thememarch
 * Author URI: https://thememarch.com
 * Version: 1.0
 *
 * %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */

html {
    scroll-behavior: smooth;
}

.tm-tabs-content {
    margin-left: 2em;
    margin-right: auto;
    margin-top: 20px;
    max-width: 70%;
}

.tm-tabs-image img {
    margin-top: 2em;
    width: 100%;
    height: auto;
    max-width: 500px;
    /* Ajuste este valor com base na largura da imagem */
    max-height: 700px;
    /* Ajuste este valor com base na altura da imagem */
    border-radius: 10px;
}

.nav-tabs .nav-link {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 5px;
    padding: 10px 15px;
    color: #2c4593;
}

.nav-tabs .nav-link.active {
    background-color: #2c4593;
    color: #fff;
}

.tab-content {
    margin-top: 20px;
}

.stylish-list li {
    margin-bottom: 10px;
}

.stylish-list li i {
    color: #2c4593;
    margin-right: 5px;
}

@media (max-width: 767.98px) {

    .tm-tabs-content {
        margin: auto;
        text-align: center;
    }

    .tm-tabs-image {
        margin-bottom: 20px;
    }

    .nav-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-tabs .nav-item {
        margin-bottom: 10px;
    }

    .nav-tabs .nav-link {
        width: 100%;
        text-align: center;
    }

    .reverse {
        flex-direction: column-reverse;
    }
}

.tm-button-header {
    background-color: #2c4593;
    border-radius: 1%;
    padding-left: 15px !important;
    padding-right: 15px !important;
    color: #fff !important;
    margin-left: -1em;
}

/* Estilização do botão de WhatsApp */
/* Estilização do botão de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25d366;
    /* Cor do botão */
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
    /* Ajuste de padding para tornar o botão maior */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    /* Largura do botão circular */
    height: 60px;
    /* Altura do botão circular */
    transition: transform 0.3s ease;
}

.whatsapp-button i {
    color: white;
    /* Cor do ícone */
    font-size: 30px;
    /* Tamanho do ícone */
}

.whatsapp-button:hover {
    transform: scale(1.1);
    /* Efeito de zoom ao passar o mouse */
}

/* Responsividade - Sempre mostrar o botão no mobile */
@media (max-width: 767px) {
    .whatsapp-button {
        bottom: 100px;
        /* Ajusta o espaçamento na parte inferior para telas menores */
        right: 10px;
        /* Ajusta o espaçamento na parte direita para telas menores */
        width: 50px;
        /* Reduz um pouco o tamanho do botão para o mobile */
        height: 50px;
        /* Reduz um pouco o tamanho do botão para o mobile */
    }

    .whatsapp-button i {
        font-size: 24px;
        /* Reduz o tamanho do ícone no mobile */
    }
}

/* COOKIES */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    z-index: 1000;
}

#cookie-banner button {
    margin: 5px;
    padding: 10px 20px;
    background-color: #006d2c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#cookie-banner button.reject {
    background-color: #dc3545;
}

/* Sessão de cards / Cards de serviços */

.deck {
    justify-content: space-between;
}

.deck .card {
    text-align: center;
    padding: 1em;
    max-width: 200px;
    /* margin: 1em 1em 1em 1em; */
    background-color: #2c4593;
    color: #c9cdff;
    font-size: small;
    border-radius: 5%;
    line-height: 15px;
    /* transition: ease-in-out 0.3s; */
}

.deck .card:hover {
    background-color: #3b4a6e;
    transform: scale(1.1);
    box-shadow: 3px 3px 5px rgb(219, 219, 219);
}

.deck .card h5 {
    color: #fff;
}

.deck .card i {
    color: #ffe100;
    transform: scale(2);
    margin-top: 1em;
    margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
    .deck .card {
        width: 100% !important;
        margin-right: unset !important;
        margin-bottom: 2em;
        /* Centraliza os cards no carrossel */
    }

    .tm-tabs-area {
        margin-bottom: -5em;
    }
}

/* Form */

.tm-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tm-checkbox-option {
    position: relative;
    border-radius: 5px;
    cursor: pointer;
    color: #49509B;
    transition: background-color 0.3s, color 0.3s;
}

.tm-checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.tm-checkbox-option input[type="checkbox"]:checked+span {
    background-color: #49509B;
    color: white;
    border-color: #49509B;
    border-radius: 5px;
    padding: 8px 12px;
}

/* Textos */

p {
    text-align: justify;
}

/* video */
.tm-video {
    justify-self: center;
}

/* Corpo calendário */

.calendario-main {}

.twocol {
    display: flex;
    justify-content: space-between;
}

.twocol .colone {
    max-width: 550px;
}

.img-calendar {
    width: 100px;
    margin-bottom: 15px;
}

/* @media (max-width: 1199px) {
    .twocol {
        flex-direction: column-reverse;
        align-items: center;
    }

    iframe{  
        max-width: 560px;
        width: 95%;
        margin-bottom: 2em;       
    }
} */

.calendario-main-dois {
    justify-self: center;
    max-width: 700px;
    justify-items: center;
}

.calendario-main-dois iframe {
    margin-top: 20%;
}

@media (max-width: 1199px) {
    .calendario-main-dois {
        justify-self: center;
        max-width: 700px;
        justify-items: center;
    }

    .calendario-main-dois iframe {
        margin-top: 20%;
        max-width: 560px;
        width: 95%;
        margin-bottom: 2em;
        height: auto;
    }
}

.brand-color {
    background-color: #2c4593 !important;
}

.brand-color-icon {
    color: #2c4593 !important;
}

.tm-button-brand-color {
    background-color: #2c4593 !important;
    color: #ffffff;
    width: 30%;
    min-width: 15%;
}

.brand-color-text {
    color: #f9c52a !important;
}

.controls {
    position: fixed;
    top: 50%;
    right: 10%;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    background-color: #2c4593;
    border-radius: 1em;
    transform: scale(0.8);
}

.controls button {
    margin-right: 10px;
    margin-left: 10px;
    background-color: white;
    padding: 10px;
    width: 3em;
    height: 3em;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;

}

.controls img {
    width: 2em;
    height: auto;
    border-radius: 50%;
}

.controls.index {
    top: 90%
}

@media (max-width: 1199px) {
    .controls {
        position: absolute;
        top: 10px !important;
        right: 5px !important;
        transform: scale(0.6);
    }

    .controls.index % {
        top: 4px !important;
    }


}

.card.calendar {
    background-color: #323664 !important;
    color: #fccf13;
    width: 500px;
    padding: 20px;
}

.card.calendar h5 {
    font-weight: 800;
    color: #fccf13;
    font-size: 1.5em;
}

.card.calendar i {
    color: #fccf13;
}

.card-text{
    display: flex;
    margin-bottom: 4em;
    justify-content: center;
}

@media (max-width: 900px) {

    .card-text {
        flex-direction: column;
    }

    .teste{
        width: 110% !important;
    }
}

