.logo{
	max-height: 80px;
}

/* ======================== */
/* RESPONSIVE.CSS - BASE */
/* ======================== */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Exemplo */
    body {
        font-size: 14px;
    }
}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        padding: 0 15px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .menu {
        flex-direction: column;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .sidebar {
        width: 250px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* ======================== */
/* CASOS COMUNS EXTRAS */
/* ======================== */

/* Ocultar algo só no mobile */
@media (max-width: 767.98px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Ocultar algo só no desktop */
@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Centralizar texto no mobile */
@media (max-width: 575.98px) {
    .text-center-mobile {
        text-align: center !important;
    }
}

/* Grid com 2 colunas no mobile */
@media (max-width: 767.98px) {
    .grid-mobile-2col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}


.data-palestra {
	display: block;
	margin-top: 8px;
	font-family: var(--global--font-body);
	color: #1d65b9;
	font-size: 16px;
}

.features-card .card-panel .panel-body h3 {
	min-height: 65px;
}

.features-card .btn--secondary-dark {
	background-color: var(--global--color-heading);
	color: var(--global--color-white);
	color: #666666;
	font-size: 20px;
}

.features-card .btn--secondary-dark:hover{
    color: white;
}

.custom-processes .process-content h3{
    min-height: 80px;
}

.custom-processes .process-content p{
    min-height: 115px;
}

.purple-custom {
    color: var(--xcolors-root-roxo) !important;
}

.red-custom {
    color: var(--xcolors-root-vermelho) !important;
}

.entry-bio iframe, .entry-bio video, .entry-content iframe, .entry-content video {
  width: auto;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  margin: 0 auto 25px;
  background: #000; /* barras pretas laterais */
  border-radius: 8px;
  border: solid var(--xcolors-root-roxo) 5px;
}

.sep-crm {
	margin: 0 10px;
	color: white;
	font-size: 10px;
	font-weight: bolder;
}

.crmbody {
	font-size: 18px;
	/* text-align: center; */
	margin-top: 15px;
	color: var(--xcolors-root-vermelho);
}

.text-white{
    color: white !important;
}

.custom-bg-azul{
    	background: #063464;
}