/*
Theme Name:         LSD
Description:        LSD Theme
Version:            1.0
Author:             wevolved

Text Domain:        LSD
*/

/* Configurações BASE */
@import url(https://db.onlinewebfonts.com/c/a117385067c4bbf7736d9c8f08121df9?family=Sul+Mono);

@font-face {
	font-family: "Sul Sans";
	src: url("fonts/SulSans-Regular.woff2");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Sul Mono";
	src: url("fonts/SulMonoMedium.otf");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "Sul Sans";
	src: url("fonts/SulSans-Medium.woff2");
	font-weight: 500;
	font-style: normal;
}
* {
	box-sizing: border-box;
}

body{
	background:#F1F1F1;
}

html,
body {
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
	/* user-select: none;  */
}

/* desativar scroll quando adicionada a classe disableScroll ao HTML */
html.disableScroll {
	overflow-y: hidden;
}

img {
	max-width: 100%;
}

/********* Alterar o scroll bar **********/
html {
	scrollbar-width: thin;
	/* Adjust the width of the scrollbar */
	scrollbar-color: #888 transparent;
	/* Adjust the color of the scrollbar */
}

/* Define the style for the scrollbar track */
html::-webkit-scrollbar {
	width: 4px;
	/* Adjust the width of the scrollbar */
}

/* Define the style for the scrollbar thumb */
html::-webkit-scrollbar-thumb {
	background-color: #888;
	/* Adjust the color of the scrollbar thumb */
	border-radius: 4px;
	/* Adjust the border radius of the scrollbar thumb */
}

/* Style for scrollbar track (background) */
html::-webkit-scrollbar-track {
	background-color: var(--white);
	/* Background color of the scrollbar track */
}

/********* FIM DE Alterar o scroll bar **********/

/* Reset comportamento de links */
a,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	color: var(--black);
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
input {
	margin: 0px;
	/* para que as fonts fiquem com linha mais fina */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a,
span {
	/* para que as fonts fiquem com linha mais fina */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	overflow-wrap: anywhere;
}

/**************** COMPONENTES DE FORMULARIOS **************/
/* Colocar os placeholders dos inputs com cor normal, remover o cinzento */
input::placeholder {
	color: var(--white);
	opacity: 1;
	/* Firefox */
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px var(--black) inset !important;
	-webkit-text-fill-color: var(--white) !important;
}

/* Change the white to any color */
.white input:-webkit-autofill,
.white input:-webkit-autofill:hover,
.white input:-webkit-autofill:focus,
.white input:-webkit-autofill:active,
.white select:-webkit-autofill,
.white select:-webkit-autofill:hover,
.white select:-webkit-autofill:focus,
.white select:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px var(--white) inset !important;
	-webkit-text-fill-color: var(--black) !important;
}

input:focus,
select:focus {
	outline: none !important;
}

/* Remover incremento de número - Chrome, Safari, Edge, Opera  */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* remover espaçamentos */
.wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid>li,
.vc_btn3-container {
	margin-bottom: 0px !important;
}

ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

/**************** FONTS ****************/
/* Fonts */



/* Headers */
h1 {
	font-family: "Sul Mono";
	font-weight: 500;
	font-size: 96px;
	letter-spacing: 0;
}

h2 {
	font-family: "Sul Mono";
	font-weight: 500;
	font-size: 64px;
	letter-spacing: 0px;
}

h3 {
	font-family: "Sul Mono";
	font-weight: 500;
	font-size: 48px;
	letter-spacing: 0px;
}

h4 {
	font-family: "Sul Mono";
	font-weight: 500;
	font-size: 32px;
	letter-spacing: 0px;
}

h5 {
	font-family: "Sul Mono";
	font-weight: 500;
	font-size: 26px;
	letter-spacing: 0px;
}


p {
	font-family: "Sul Sans";
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 0;
}

a {
	font-family: "Sul Mono";
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0;
}

/* Fonts default */
a,
label,
input,
select,
textarea,
option {
	resize: none;
}

.container {
	width: calc(100% - 40px);
	margin-inline: auto;
	box-sizing: border-box;
}

/* Variáveis p/ reutilizar */
:root {
	--sulsans-regular: "Sul Sans";
	--sul-mono: "Sul Mono";
	--400weight: 400;
	--500weight: 500;

	--letter: 0px;

	--font22: 22px;
	--font20: 20px;
	--font18: 18px;
	--font16: 16px;
	--font15: 15px;
	--font13: 13px;
}

a:focus {
	outline: none;
}

/****************************** TOP BAR ************************************/
.barra-inscricoes {
	background: #9469B3;
	position: relative;
	z-index: 9999;
	padding: 10px 20px;
}

.barra-inscricoes__inner {
	min-height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	position: relative;
	box-sizing: border-box;
}

.barra-inscricoes__titulo {
	background: #DDD0E5;
	color: #1E0030;
	padding: 8px 14px;
	font-size: var(--font13);
	font-weight: var(--400weight);
	text-transform: uppercase;
	white-space: nowrap;
	font-family: var(--sul-mono);
	letter-spacing: 0px;
	line-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.barra-inscricoes__titulo p,
.barra-inscricoes__descricao p {
	margin: 0;
}

.barra-inscricoes__descricao p {
	font-size: 15px;
	line-height: 100%;
	text-align: center;
	color: #fff;
	font-weight: 500;
}

.barra-inscricoes__descricao a {
	color: #fff;
	text-decoration: underline;
	font-size: 15px;
	font-family: var(--sulsans-font);
	font-weight: 500;
}

.barra-inscricoes__fechar {
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	padding: 0;
}

.container-menu {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	padding: 0 0 5px 24px;
	position: relative;
	z-index: 1000;
	overflow: visible;
}

.menu-esquerda,
.menu-esquerda__lista {
	display: flex;
	align-items: stretch;
}

.menu-esquerda__lista>li {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	position: relative;
}

.menu-esquerda__lista .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 10px 9px;
    background-color: #EDE9EE;
    min-width: 220px;

    position: fixed;
    top: 0;           /* será sobrescrito pelo JS */
    left: 0;          /* será sobrescrito pelo JS */
    z-index: 9999;
    width: auto;
}


/* Mostrar ao hover */
.menu-esquerda__lista>li:hover>.sub-menu,
.menu-esquerda__lista>li:focus-within>.sub-menu {
	display: block;
}

/* Itens do sub-menu */
.menu-esquerda__lista .sub-menu li a {
	display: block;
	padding:16px 10px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0;
	line-height:100%;
	text-transform: uppercase;
	color: #1E0030;
	text-decoration: none;
	background-color: transparent;
	transition: background-color 300ms ease-out;
}

/* Primeiro item — destaque ativo (fundo mais escuro) */
.menu-esquerda__lista .sub-menu li a:hover,
.menu-esquerda__lista .sub-menu li.current-menu-item a {
	background-color: #DDD0E5;
}


header,
.site-header,
.menu-esquerda,
.menu-esquerda__lista {
	overflow: visible !important;
}

/* Hover nos restantes itens */
.menu-esquerda__lista .sub-menu li a:hover {
	background-color: #d5c8e8;
}

.div-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.logo-lsd {
	opacity: 0;
	visibility: hidden;
	transform: translateX(-5px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.logo:hover+.logo-lsd {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}


.menu-esquerda__lista {
	display: flex;
	align-items: center;
	justify-content: center;
}


.menu-esquerda__lista li a {
	padding: 16px 20px;
	font-size: var(--font15);
	line-height: 100%;
	color: #3D0D59;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-esquerda__lista .menu-item-has-children>a {
	display: inline-flex;
	align-items: center;
	gap: 16px;
}

.menu-esquerda__lista .menu-item-has-children>a::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 16px;
	background-image: url("/wp-content/uploads/2026/06/Frame-1171276158.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}

.menu-esquerda__lista>li:nth-last-child(2)>a {
	color: #9469B3;
}

.menu-esquerda__lista>li:last-child {
	background: #3D0D59;
	display: flex;
	align-items: stretch;
}

.menu-esquerda__lista>li:last-child>a {
	color: #fff;
	background-color: #3D0D59;
	padding:18px 21px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease-out;
}

.menu-esquerda__lista>li:last-child>a::before,
.menu-esquerda__lista>li:last-child>a::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 50%;
	background: #7E28C2;
	transform: scaleY(0);
	transition: transform 0.3s ease-out;
}

/* metade superior: cresce do centro para o topo */
.menu-esquerda__lista>li:last-child>a::before {
	top: 0;
	transform-origin: bottom;
}

/* metade inferior: cresce do fundo para o centro */
.menu-esquerda__lista>li:last-child>a::after {
	bottom: 0;
	transform-origin: bottom;
}

.menu-esquerda__lista>li:last-child>a:hover::before,
.menu-esquerda__lista>li:last-child>a:hover::after {
	transform: scaleY(1);
}

/* garante que o texto fica por cima das camadas */
.menu-esquerda__lista>li:last-child>a span {
	position: relative;
	z-index: 1;
}



.menu-esquerda__lista>li:not(:last-child)>a {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.menu-esquerda__lista>li:not(:last-child)>a::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	background: #EDE9EE;
	transform: translateY(100%);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: -1;
}

.menu-esquerda__lista>li:not(:last-child)>a:hover::before {
	transform: translateY(0);
}


.search-dropdown {
    display: none;
    position: fixed;
    z-index: 9999;
    background-color: #EDE9EE;
    padding: 16px 20px;
}

.search-dropdown input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #3D0D59;
    padding: 8px 36px 8px 0;
    font-family: var(--sul-mono);
    font-size: var(--font15);
    color: #3D0D59;
    outline: none;
}

.search-dropdown input::placeholder {
    color: #9469B3;
    opacity: 1;
}

.search-dropdown__inner {
    position: relative;
}

.search-dropdown__icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #3D0D59;
}

.search-dropdown__icon {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-dropdown__icon img {
    display: block;
}
/****************************** FOOTER ************************************/
.site-footer {
    background: #EDE9EE;
    color: #3D0D59;
    padding: 40px 20px 20px 20px;
    overflow: hidden;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px; 
    margin-bottom: 82.78px;
}

.footer-label,
.footer-menu-title {
    margin: 0 0 16px;
    font-family: var(--sul-mono);
    font-size: var(--font13);
    line-height: 1;
    text-transform: uppercase;
    color: #9469B3;
}

.footer-menu-title{
	margin:0 0 20px;
}

.footer-contact__row {
    display: flex;
    align-items: flex-start;
    gap: 65px;
}

.footer-email,
.footer-phone {
    font-size: 26px;
    line-height: 1;
    color: #3D0D59;
    text-decoration: none;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.footer-main {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 53px;
    align-items: flex-start;
    margin-bottom: 83px;
}

.footer-newsletter__box {
    background: #DDD0E5;
    padding: 16px 16px 0 16px;
    width: 100%;
}

.footer-newsletter__box h5 {
    margin: 0 0 10px;
    line-height: 100%;
    color: #3D0D59;
}

.footer-newsletter__box p {
    line-height: 1.4;
    color: #1E0030;
}
.footer-newsletter__form p {
    margin: 0;
    display: contents;
}

.footer-newsletter__form {
    background: #DDD0E5;
    padding:16px;
    margin-left: 16px;
    width: 100%;
}

.footer-phone-note{
	font-family:var(--sulsans-regular);
	font-size:12px;
	line-height:1;
	color:#3D0D59;
	letter-spacing:0;
	margin-top:5px;

}

.footer-newsletter__form form {
    display: flex;
    align-items: stretch;
    background: #DDD0E5;
}

.footer-newsletter__form .wpcf7-form-control-wrap {
    flex: 1;
}

.footer-newsletter__form .email {
    width: 100%;
    outline: none;
    border: none;
    background: white;
    padding: 18px 10px;
    font-family: var(--sul-mono);
    font-size: var(--font13);
    text-transform: uppercase;
    display: block;
}

.footer-newsletter__form .subm {
    background: #3D0D59;
    color: #fff;
    border: none;
    padding: 18px 24px;
    font-family: var(--sul-mono);
    font-size: var(--font16);
    font-weight: var(--500weight);
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
	letter-spacing:0;
    position: relative;
    overflow: hidden;
    transition: color 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

.footer-newsletter__form .subm::before,
.footer-newsletter__form .subm::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: #7E28C2;
    transform: scaleY(0);
    transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

.footer-newsletter__form .subm::before {
    top: 0;
    transform-origin: bottom;
}

.footer-newsletter__form .subm::after {
    bottom: 0;
    transform-origin: bottom;
}

.footer-newsletter__form .subm:hover::before,
.footer-newsletter__form .subm:hover::after {
    transform: scaleY(1);
}

.footer-newsletter__form .subm span {
    position: relative;
    z-index: 2;
}

.footer-newsletter__form .wpcf7-spinner {
    display: none;
}

.footer-newsletter__form .wpcf7-response-output {
    display: none;
}


.footer-menus {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 44px;
}


.footer-menu-list li {
    margin: 0 0 18px;
}

.footer-menu-list li a {
    line-height: 100%;
    color: #3D0D59;
    text-decoration: none;
    text-transform: uppercase;
}


.footer-menu-list--resto li:last-child a {
 text-transform:none;
 position: relative;
}


.site-footer .footer-menu-list--resto li:last-child a::after {
    content: "↗";
    display: inline-block;
    margin-left: 2px;
    font-family: var(--sul-mono);
    font-size: inherit;
    line-height: 1;
    vertical-align: baseline;
}

.footer-brand img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-bottom-menu {
    align-self: end;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom-list a {
    font-family: var(--sul-mono);
    font-size: 14px;
    font-weight: var(--400weight);
    color: #1E0030;
	line-height:100%;
    text-decoration: none;
}


.wpcf7-not-valid-tip {
    position: absolute;
    top: 75px;
    font-family: var(--sul-mono);
    font-size: 14px;
}
/****************************** BACK1 ************************************/
.back1{
	margin-top:78px;
	margin-bottom:32px !important;
}

.back1 h1 {
    line-height: 100%;
    color: #3D0D59;
    width: 100%;
    max-width: 100%;
}

.back1 .vc_col-sm-3 .wpb_wrapper {
    display: flex;
    justify-content: flex-end;
}

.back1 .vc_col-sm-3 .wpb_text_column {
    width: max-content;
    max-width: 92%;
}


.back1 .vc_col-sm-3 .wpb_text_column p {
    text-align: left;
    margin: 0;
}

.vc_column_container>.vc_column-inner{
	padding-left: 0px !important;
	padding-right:0px !important;
}

.back1 p {
    font-size: 24px;
    line-height: 1.4;
    color: #1E0030;
    width: 65%;
    max-width: 100%;
}

.container{
	padding-right:0px !important;
	padding-left:0px !important;
}

.vc_row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.video-home {
    width: 100%;
    height: 100%;
    overflow: hidden;
	margin-bottom:32px !important;
}

.video-home__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
/****************************** BACK3 ************************************/
.back3{
	margin-bottom:64px !important;
	display:flex;
	flex-direction:row;
	gap:20px;
}

.back3::before{
	display:none !important;
}

.back3 .vc_column-inner{
height:100%;
}

.back3 .coluna2 .wpb_wrapper{
display:flex;
flex-direction:column;
justify-content:space-between;
height:100%;
}

.back3 h4 {
    color: #3D0D59;
    line-height: 120%;
    width: 99%;
    max-width: 100%;
}

.back3 p {
    line-height: 140%;
    color: #1E0030;
    width: 45%;
    max-width: 100%;
}
/****************************** BACK4 ************************************/
.slider-arrows {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-direction: row;
    align-items: center;
}

.slider-arrow {
    padding:10px 32px;
    border: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;   
    cursor: pointer;
}

.back4 h3{
	color:#3D0D59;
	line-height:100%;
	margin-bottom:16px !important;
}

.back4 p {
    color: #1E0030;
    line-height: 140%;
    width: 55%;
	max-width:100%;
}

.back4 .coluna1{
	margin-bottom:40px !important;
}

.lsd-cursos-slider__track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    margin-bottom: 38.76px !important;
}

.lsd-cursos-slider__track::-webkit-scrollbar {
    display: none;
}

.lsd-curso-card {
    display: flex;
    flex: 0 0 calc(25% - 18px);
    min-width: 260px;
}

.lsd-curso-card__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.lsd-curso-card__image {
    width: 100%;
    aspect-ratio: 1 / 1.25;
    overflow: hidden;
    margin-bottom: 20px;
    flex-shrink: 0;
	position:relative;
}

.lsd-curso-card__image > img:not(.lsd-curso-card__button-icon) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lsd-curso-card:hover .lsd-curso-card__image > img:not(.lsd-curso-card__button-icon) {
    transform: translateY(-18px) scale(1.03);
}

.lsd-curso-card__meta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
   background:#DDD0E5;
    color: #3D0D59;
    padding: 8px 14px;
    margin-bottom: 20px;
    font-family: var(--sul-mono);
    font-size: var(--font13);
    font-weight: var(--400weight);
    line-height: 1;
    text-transform: uppercase;
    flex-shrink: 0;
	letter-spacing:0px;
}

.lsd-curso-card__title {
    margin: 0 0 10px;
    color:#3D0D59;
    flex-shrink: 0;
	line-height:100%;
}

.lsd-curso-card__excerpt {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.lsd-curso-card__excerpt p {
    margin: 0;
	font-size:15px;
	letter-spacing:0;
	width:85%;
	max-width:100%;
}

.lsd-curso-card__date {
    margin-top: auto;
    font-family: var(--sul-mono);
    font-size: var(--font13);
    font-weight: var(--400weight);
    line-height: 1.2;
    text-transform: uppercase;
    color: #9469B3;
	letter-spacing:0;
}


.lsd-curso-card__button {
    padding: 8px;
    background: #3D0D59;
    color: #FFFFFF;
    display: inline-flex;
    gap: 108px;
    align-items: center;
    justify-content: center;
}

.lsd-curso-card__button span{
	font-family: var(--sul-mono);
	font-size: var(--font16);
	font-weight: var(--500weight);
	line-height: 100%;
	text-transform: uppercase;
	letter-spacing:0;
} 

.lsd-curso-single {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 56px;
    background: #4F1471;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 0 14px;
    box-sizing: border-box;

    font-family: var(--sul-mono);
    font-size: var(--font13);
    font-weight: var(--400weight);
    line-height: 100%;
    text-transform: uppercase;
    letter-spacing: 0px;
    opacity: 0;
    transform: translateY(100%);

    transition:
        opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lsd-curso-card:hover .lsd-curso-single {
    opacity: 1;
    transform: translateY(0);
}

.lsd-curso-card__button-icon {
    width: 23px !important;
    height: auto !important;
    display: block;
    flex-shrink: 0;
}
/****************************** MEDIA QUERIES ************************************/
/* Intermédio 1 */
@media only screen and (max-width: 1750px) {
}
/* Intermédio 2 */
@media only screen and (max-width: 1650px) {
}
/* HD READY - Resolução Base Desenvolvimento */
@media only screen and (max-width: 1440px) {
.back4 p {
    width: 70%;
	max-width:100%;
}

	.back1 p {
    width: 90%;
    max-width: 100%;
}

.back1 .vc_col-sm-3 .wpb_text_column {
    width: max-content;
    max-width: 78%;
}

.lsd-curso-card__excerpt p {
    width: 100%;
}
}

/* Media query para menu hamburguer */
@media print, screen and (max-width: 1250px) {
}

/* Media query para menu hamburguer */
@media print, screen and (max-width: 1200px) {
}

/*tablet landscape or old laptop */
@media print, screen and (max-width: 1024px) {
}

/* Size considerado para Tablet */
@media only screen and (max-width: 991px) {
}
/* Size considerado para Tablet modo portrait*/
@media only screen and (max-width: 767.5px) {
}

@media only screen and (max-width: 600px) {
}
/* Size considerado Mobile - 430px*/
@media only screen and (max-width: 430px) {
}
/* smartphones plus */
@media only screen and (max-width: 414px) {
}
/* smartphones normais  */
@media only screen and (max-width: 378px) {
}
/* iphone 5 <=  */
@media only screen and (max-width: 320px) {
}
