@import url('https://fonts.googleapis.com/css2?family=Krub:wght@300;400;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
	/*GRID*/
	--grid-width: 1450px;
	--grid-laptop-width: 1100px;
	--grid-gutter: 12px;

	/*TEXT*/
	--text-family: 'Krub', sans-serif;
	--text-family-bold: 'Outfit', sans-serif;

	--text-fsize: 16px;
	--text-md-fsize: 14px;
	--text-sm-fsize: 13px;

	--text-lheight: 1.4;
	--text-md-lheight: 1.4;
	--text-sm-lheight: 1.4;

	/*BASE BUTTON*/
	--btn-padding: 13.5px 10px;
	--btn-fsize: 13px;
	--btn-lheight: 1;
	--btn-radius: 0px;
	--btn-min-width: 15rem;
	--btn-font-weight: 600;
	--btn-font-family: var(--text-family-bold);
	--btn-text-transform: uppercase;

	--card-radius: 0.5rem;

	/*COLORS*/
	--color-primary: #000000;
	--color-secondary: #0194C4;
	--color-alt: #00A6DC;
	--color-dark: #01749A;
	--color-darker: #00516C;
	--color-black: #1D1D1B;
	--color-btn: #000000;
	--color-white: #fff;
    --color-white-semi: rgba(255, 255, 255, 0.2);
	--color-gray: #F4F4F4;
	--color-gray-alt: #A9B8C1;
	--color-gray-medium: #EBEBEB;
	--color-gray-dark: #8B898A;
	--color-success: #5FC333;
	--color-error: #FF0000;
	--color-gold: #BE9E44;
}


[data-ae-animation]{
    transition-property: opacity;
    transition-duration: 0.8s;
    opacity: 0;
}
[data-ae-animation].animated {
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

:target:before {
	content:"";
	display:block;
	height:100px; /* fixed header height*/
	margin:-100px 0 0; /* negative fixed header height */
}

html, body{
    font-family: var(--text-family);
    font-size: var(--text-fsize);
    line-height: var(--text-lheight);
    background:
        radial-gradient(ellipse 55vw 55vw at 18% 22%,  var(--color-alt) 0%, transparent 65%),
        radial-gradient(ellipse 50vw 50vw at 78% 58%,  var(--color-alt) 0%, transparent 60%),
        radial-gradient(ellipse 40vw 40vw at 42% 88%,  var(--color-alt) 0%, transparent 60%),
        linear-gradient(180deg, var(--color-secondary) 0%, var(--color-darker) 100%);
    background-attachment: fixed;
}

.row{ max-width: var(--grid-width); margin: 0 auto;}
.row.wide{ max-width: 85% }
.row.fullwidth{ max-width: 100% }

/* ---- HEADINGS ---- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--text-family-bold);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
    margin: 0;
    margin-bottom: 1rem;
}

h1, .h1 { font-size: 2.67rem; }
h2, .h2 { font-size: 2.33rem; }
h3, .h3 { font-size: 1.87rem; font-weight: 600; }
h4, .h4 { font-size: 1.47rem; font-weight: 600; }
h5, .h5 { font-size: 1.2rem;  font-weight: 600; }
h6, .h6 { font-size: 1.07rem; font-weight: 600; }

.btn{
    transition: 0.35s
}

.filter-grayscale{
    filter: grayscale(100%);
}

/* ---- PARAGRAPH ---- */
p {
    font-family: var(--text-family);
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.65;
    color: inherit;
    margin-bottom: 1rem;
}

/* ---- LINKS ---- */
a {
    font-family: inherit;
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s linear;
}
a:hover {
    color: var(--color-alt);
}

a img{transition: 0.25s;}
a:hover img{opacity: 0.8;}

input, textarea, select{
    border: 1px solid var(--color-gray-alt);
    transition: 0.35s;
    padding: 0.85rem 0.75rem;
}
input:focus, textarea:focus, select:focus{
    box-shadow: 0 0 2px var(--color-secondary) !important;
    border-color: var(--color-secondary);
}

input[type=radio], input[type=checkbox]{
    width: auto;
    margin-left: 0;
}

/* ---- Form ---- */
.form-group label {
    color: var(--color-black);
    font-family: var(--text-family-bold);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group label .required {
    color: var(--color-secondary);
    margin-left: 1px;
}

.form-check-label {
    font-size: 0.88rem;
    color: var(--color-secondary);
    cursor: pointer;
}

.form-check-label input[type=checkbox] {
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-check-label a.termos {
    color: var(--color-secondary);
    text-decoration: underline;
}

.form-check-label a.termos:hover {
    color: var(--color-alt);
}

/* ---- Inscrições Form ---- */
.form-inscricao {
    margin: 0 auto;
}

.form-inscricao-title {
    font-family: var(--text-family-bold);
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
}

.form-inscricao .form-control,
.form-inscricao select.form-control {
    border-radius: 0;
    border: 1px solid #ccc;
    font-size: 0.93rem;
    padding: 0.6rem 0.75rem;
    height: auto;
    box-shadow: none;
    background-color: transparent;
    transition: border-color 0.2s ease;
}

.form-inscricao .form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: none;
    outline: none;
}

.form-inscricao-section-title {
    font-family: var(--text-family-bold);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.form-inscricao-toggle {
    display: flex;
    gap: 0;
}

.form-inscricao-toggle-3 {
    /* 3-button toggle */
}

.form-inscricao-toggle-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 0.6rem;
    text-align: center;
    font-family: var(--text-family-bold);
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0.02em;
    border: 1px solid #ddd;
    background: transparent;
    color: var(--color-black);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.form-inscricao-toggle-btn + .form-inscricao-toggle-btn {
    border-left: none;
}

.form-inscricao-toggle-btn .toggle-check {
    opacity: 0.4;
    flex-shrink: 0;
}

.form-inscricao-toggle-btn.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.form-inscricao-toggle-btn.active .toggle-check {
    opacity: 1;
}

.form-inscricao-participante {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.form-inscricao-participante h6,
.form-inscricao-participante-title {
    font-family: var(--text-family-bold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.form-inscricao .form-error-msg {
    color: var(--color-error);
    font-size: 0.78rem;
    margin-top: 0.25rem;
    display: block;
}

.form-inscricao-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-inscricao-buttons .btn-secondary-fill {
    background: var(--color-secondary);
    color: #fff;
}

.form-inscricao-buttons .btn-secondary-fill:hover {
    opacity: 0.85;
}

.form-inscricao-buttons .btn-gray {
    background: #999;
    color: #fff;
}

.form-inscricao-buttons .btn-gray:hover {
    opacity: 0.85;
}

.form-inscricao-sucesso {
    text-align: center;
    padding: 3rem 1rem;
}

.form-inscricao-sucesso svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.form-inscricao-sucesso h3 {
    font-family: var(--text-family-bold);
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.form-inscricao-sucesso p {
    color: #666;
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto;
}


/* ---- BRAND BUTTONS ---- */
.btn-rectangle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem 1.5rem;
    border-radius: 0;
    border: none;
    transition: opacity 0.25s linear, filter 0.25s linear;
    min-width: 12rem;
}
.btn-rectangle img {
    display: block;
    max-height: 2.5rem;
    width: auto;
    opacity: 1;
}
.btn-rectangle:hover {
    opacity: 0.85;
}

.btn-gold, .btn-gold:hover {
    background-color: var(--color-gold);
}
.btn-black, .btn-black:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}
.btn-blue, .btn-blue:hover {
    background-color: var(--color-alt);
    color: var(--color-white);
}
.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    border-radius: 0;
    text-transform: uppercase;
    padding: .65rem 2rem;
    font-family: var(--text-family-bold);
    font-weight: 600;
    font-size: 0.83rem;
}
.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

.btn-outline-light{
    background: transparent;
    border: 1px solid var(--color-white-semi);
    color: var(--color-white);
    padding: 1.29rem 1.55rem;
    min-height: 77px;
    border-radius: 0;
}


[class^="flex-list-"]{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--grid-gutter));
    padding: 0;
    width: calc(100% + (2 * var(--grid-gutter)));
    max-width: calc(100% + (2 * var(--grid-gutter)));
}

[class^="flex-list-"] li{
    padding: 0 calc(var(--grid-gutter) / 2)  20px;
}
.flex-list-4 li{width: 25%;}
.flex-list-5 li{width: 20%;}
.flex-list-6 li{width: 16.66666666%;}


.filter{
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    min-height: inherit;
}

hr{border-color: var(--color-black);opacity: 1;margin: 1.25rem 0;}

/* ----- Bootstrap fixs ------- */
img{max-width: 100%;}
a, span{display: inline-block;}

ul.il-list{padding-left: 0;}

.text-left{text-align: left !important;}
.text-right{text-align: right !important;}

.c-primary{color: var(--color-primary) !important}
.c-secondary{color: var(--color-secondary) !important}
.c-alt{color: var(--color-alt) !important}
.c-black{color: var(--color-black) !important}
.c-white{color: var(--color-white) !important}
.c-gray{color: var(--color-gray) !important}
.c-gray-alt{color: var(--color-gray-alt) !important}

.bg-primary{background: var(--color-primary) !important}
.bg-secondary{background: var(--color-secondary) !important}
.bg-alt{background: var(--color-alt) !important}
.bg-black{background: var(--color-black) !important}
.bg-white{background: var(--color-white) !important}
.bg-gray{background: var(--color-gray) !important}
.bg-gray-alt{background: var(--color-gray-alt) !important}
.bg-success{background: var(--color-success) !important}

.row > .row{margin: 0 calc(-1 * var(--grid-gutter));}

.modal-footer {display: block;}
input, textarea, select{width: 100%;outline: 0 !important;}

.small, small {
    font-size: .875rem;
}

p span{
    display: inline-block;
}

.top10{top: 10px}
.top20{top: 20px}

.badge{border-radius: 0;vertical-align: top;}

.cta-text{
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--text-family-bold);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.45rem 0.75rem;
    display: inline-block;
}

/* ------------------------------------- */

header {
    padding: 1.25rem 0 1.5rem;
    /* position: sticky; */
    top: 0;
    z-index: 1100;
    background:
        radial-gradient(ellipse 55vw 55vw at 18% 22%,  var(--color-alt) 0%, transparent 65%),
        radial-gradient(ellipse 50vw 50vw at 78% 58%,  var(--color-alt) 0%, transparent 60%),
        radial-gradient(ellipse 40vw 40vw at 42% 88%,  var(--color-alt) 0%, transparent 60%),
        linear-gradient(180deg, var(--color-secondary) 0%, var(--color-darker) 100%);
    background-attachment: fixed;
    transition: padding 0.3s ease;
}

header .curso-search-toggle {
    transition: margin 0.3s ease;
}

header.header-scrolled {
    padding: 0.65rem 0 0.75rem;
}

header.header-scrolled .logo-link {
    margin-bottom: 0;
}

header.header-scrolled .logo {
    max-width: 55px;
}

header.header-scrolled nav {
    margin-top: -50px !important;
    z-index: 1;
}
header.header-scrolled .dropdown{
    display: none !important;
}
header.header-scrolled .cursos-search-toggle{
    margin-left: auto;
    border-color: transparent;
    top: 10px;
    position: relative;
}

header.header-scrolled .cursos-search-overlay {
    top: 10px;
}

header .logo-link {
    margin-top: 8px;
    margin-bottom: -100px;
    transition: margin-bottom 0.3s ease;
}

header .logo{
    z-index: 1000;
    position: relative;
    max-width: 175px;
    transition: max-width 0.3s ease;
}

/* ---- Logo orbit light beam ---- */
@property --logo-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

header a:has(.logo) {
    position: relative;
}

/* Cancel the generic a:hover img opacity for the logo */
header a:has(.logo):hover img {
    opacity: 1 !important;
}

header a:has(.logo)::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: conic-gradient(
        from var(--logo-angle),
        transparent 0%,
        transparent 70%,
        rgba(255, 255, 255, 0.15) 80%,
        rgba(255, 255, 255, 0.95) 90%,
        rgba(255, 255, 255, 0.15) 95%,
        transparent 100%
    );
    /* hollow mask — only the border strip is visible */
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    padding: 3px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1000;
}

header a:has(.logo):hover::before {
    opacity: 1;
    animation: logo-orbit 1.4s linear infinite;
}

@keyframes logo-orbit {
    to { --logo-angle: 360deg; }
}

.nav-brands{
    display: flex;
    justify-content: center;
    align-items: baseline;
    max-height: 100px;
    overflow: hidden;
    opacity: 1;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
}

header.header-scrolled .nav-brands {
    max-height: 0;
    opacity: 0;
    margin: 0 !important;
    pointer-events: none;
}

/* Disable all transitions during initial state detection */
header.header-pre-init,
header.header-pre-init * {
    transition: none !important;
}


header .col-lg-10 {
    position: relative;
}

header .btn-outline-light i{
    font-size: 1.25rem;
}

/* ----- Search overlay ----- */
.cursos-search-overlay {
    display: flex;
    align-items: center;
    position: absolute;
    inset: 0;
    z-index: 1002;
    padding: 0;
    pointer-events: none;
    clip-path: inset(0 0 -500px 100%);
    transition: clip-path 0.3s ease;
    padding-left: 74px;
    align-items: baseline;
}
.cursos-search-overlay.is-open {
    pointer-events: auto;
    clip-path: inset(0 0 -500px 0%);
}

body.search-is-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1001;
    pointer-events: auto;
    cursor: pointer;
}
.cursos-search-overlay form {
    background: var(--color-secondary);
}
.cursos-search-overlay .form-control {
    background: var(--color-secondary);
    opacity: 1;
    border: 0;
    color: var(--color-white);
    border-radius: 0;
}
.cursos-search-overlay .form-control::placeholder {
    color: rgba(255,255,255,0.65);
}
.cursos-search-overlay .form-control:focus {
    background: rgba(255,255,255,0.22);
    box-shadow: none;
    color: var(--color-white);
}
.cursos-search-overlay .btn{
    border: 0;
    border-radius: 0;
}

/* --- Live search results dropdown --- */
.cursos-search-wrapper {
    position: relative;
}
.cursos-search-wrapper form {
    background: var(--color-secondary);
}
.cursos-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-radius: 0 0 0.375rem 0.375rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
    z-index: 1003;
    display: none;
    max-height: 22rem;
    overflow-y: auto;
}
.cursos-search-results.is-visible {
    display: block;
}
.cursos-search-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.15s ease;
}
.cursos-search-item:last-child {
    border-bottom: 0;
}
.cursos-search-item:hover {
    background: var(--color-light);
    color: var(--color-primary);
    text-decoration: none;
}
.cursos-search-code {
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--color-muted, #999);
    font-family: var(--text-family-bold);
}
.cursos-search-name {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cursos-search-area {
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--color-white);
    background: var(--color-alt);
    padding: 0.15rem 0.5rem;
    white-space: nowrap;
}
.cursos-search-noresult {
    padding: 1rem;
    text-align: center;
    color: var(--color-muted, #999);
    font-size: 0.9rem;
}
.cursos-search-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.cursos-search-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.cursos-search-desc {
    font-size: 0.8rem;
    color: var(--color-muted, #999);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* ------------------------------------- */
/* -------------------------- */

header .btn-outline-light+.dropdown,
header .btn-outline-light+.dropdown .btn-outline-light{
    border-left: none;
    width: 100%;
    position: relative;
}

header .btn-outline-light+.dropdown .dropdown-menu {
    min-width: 100%;
}

header .btn-outline-light+.dropdown .dropdown-toggle::after {
    position: absolute;
    right: 1.55rem;
    border: 0;
    font-family: 'bootstrap-icons';
    content: "\F282";
    margin-top: 2px;
}

header nav a{
    color: var(--color-white);
    font-weight: 600;
    margin: 0.5rem 3.5rem 0.25rem;
    position: relative;
    text-transform: uppercase;
}
header nav{
    position: relative;
}

body {
    overflow-x: hidden;
}
header nav a:hover{
    color: var(--color-white);
    opacity: 0.85;
}
header nav a::after {
    content: "";
    position: absolute;
    bottom: -0.35rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
header nav a:hover::after, header nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}
header nav a:first-child{
    margin-left: 0;
}

/* ---- Nav submenu ---- */
header nav span.has-submenu {
    position: relative;
    display: inline-block;
}

header nav .submenu {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    min-width: 220px;
    padding: 1.75rem 0 3.5rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateY(4px);
    display: flex;
    flex-direction: column;
}

header nav .submenu::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 0;
    left: -100vw;
    right: -100vw;
    background: var(--color-alt);
    z-index: -1;
}

/* should be a bridge for the hover between the main menu and submenu */
header nav .submenu::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

header nav span.has-submenu:hover .submenu,
header nav span.has-submenu:focus-within .submenu,
header nav span.has-submenu .submenu:hover,
header nav span.has-submenu .submenu:focus-within {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

header nav .submenu a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-white);
    font-family: var(--text-family);
    font-size: 0.93rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    padding: 0.3rem 0;
    margin: 0;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

header nav .submenu a::after {
    display: none;
}

header nav .submenu a:hover {
    color: var(--color-white);
    opacity: 0.7;
}

header nav .submenu a.active {
    color: var(--color-white);
    opacity: 1;
    font-weight: 700;
}

header nav .submenu .sub-ext-icon {
    font-size: 0.72rem;
    opacity: 0.6;
    flex-shrink: 0;
    margin-top: 1px;
}


/* ---- Slider / Carousel ---- */

.carousel.carousel-banner {
    min-height: calc(100vh - 141px);
}

/* Horizontal slide animation (Bootstrap default) */

.carousel .carousel-inner {
    display: flex;
    align-items: center;
    min-height: inherit;
}

.carousel .fullwidth {
    width: 100%;
    max-height: calc(100vh - 141px);
    min-height: calc(100vh - 141px);
}

.carousel video.fullwidth {
    object-fit: cover;
}

.carousel-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide-content,
.carousel-slide-content p,
.carousel-slide-content li {
    color: var(--color-white);
}

.banner-slide-title {
    color: var(--color-white);
    font-size: 2.65rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.banner-slide-content {
    max-width: 450px;
}

/* Non-hero compact carousel (e.g. home-bottom) */
.carousel-compact.carousel-banner,
.carousel-compact .carousel-inner {
    min-height: auto;
}

.carousel-compact .carousel-inner {
    display: block;
}

/* ---- CTA / Video section layout ---- */
.carousel-cta-wrap {
    padding: 4rem 0;
}

.carousel-cta-video {
    display: block;
    width: 100%;
    box-shadow: 0px 12px 20px 16px rgba(29,29,27,0.2);
}

.carousel-arrow-btn, .carousel-arrow-btn:focus {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 2.75rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-arrow-btn:hover {
    opacity: 1;
}


/* ---- Áreas de Formação ---- */

.cursos-areas-title {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 0;
}

.cursos-areas-clip {
    overflow: hidden;
}

.cursos-areas-slider-wrapper {
    overflow: visible;
    padding: 0 3%;
}

.cursos-areas-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s ease;
    will-change: transform;
}

.cursos-area-card {
    display: block;
    position: relative;
    flex: 0 0 calc(25% - 0.75rem);
    min-width: 200px;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}


.cursos-area-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0 !important;
}

.cursos-area-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
}

.cursos-area-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
}

.cursos-area-card-label {
    color: var(--color-white);
    font-family: var(--text-family-bold);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.cursos-areas-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cursos-arrow-btn {
    background: transparent;
    border: none;
    color: var(--color-alt);
    font-size: 2.25rem;
    line-height: 1;
    padding: 0;
    opacity: 1;
    cursor: pointer;
    transition: opacity 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cursos-arrow-btn:hover {
    opacity: 0.75;
}

.cursos-areas-arrows-dot {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-alt);
    opacity: 0.75;
}


/* ---- Destaques ---- */

.destaque-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.destaque-card:hover {
    color: inherit;
}

.destaque-card-img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: opacity 0.25s;
}

.destaque-card:hover .destaque-card-img {
    opacity: 0.9;
}

.destaque-card-body {
    padding: 1.5rem 0 2rem;
}

.destaque-card-desc {
    min-height: 80px;
    margin: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.destaque-card-cta {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    color: var(--color-black);
    transition: color 0.25s;
}

.destaque-card:hover .destaque-card-cta {
    color: var(--color-alt);
}

/* Responsive */
@media (max-width: 575.98px) {
    .cursos-areas-section {
        padding: 3rem 0 2.5rem;
    }

    .cursos-area-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 140px;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .cursos-area-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

/* Grid variant for areas listing page (4 per row) */
.cursos-area-card--grid {
    flex: none;
    width: 100%;
    min-width: 0;
}

/* ======================================
   CURSOS ACCORDION (Area Detail)
   ====================================== */

/* Bootstrap accordion-item override */
.cursos-accordion-item {
    border: none;
    border-radius: 0 !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.cursos-accordion-item .accordion-button {
    display: flex !important;
    align-items: center;
    width: 100%;
    background: linear-gradient(-45deg, var(--color-alt) 0%, var(--color-darker) 100%);
    color: var(--color-white, #fff);
    font-family: var(--text-family-bold, inherit);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    padding: 1.5rem 1.5rem;
    border-radius: 0 !important;
    box-shadow: none;
    border-bottom: 1px solid var(--color-dark);
    transition: 0.35s;
}

.cursos-accordion-item .accordion-button:hover {
    opacity: 0.85;
}

.cursos-accordion-item .accordion-button:not(.collapsed) {
    background: linear-gradient(-45deg, var(--color-alt) 0%, var(--color-darker) 100%);
    color: var(--color-white, #fff);
    box-shadow: none;
}

.cursos-accordion-item .accordion-button:focus {
    box-shadow: none;
}

.cursos-accordion-item .accordion-button::after {
    display: none;
}

.cursos-accordion-item .accordion-button .accordion-plus-icon::before {
    content: "+";
    font-size: 1.9rem;
    font-family: var(--text-family);
    font-weight: 300;
    line-height: 1;
}

.cursos-accordion-item .accordion-button:not(.collapsed) .accordion-plus-icon::before {
    content: "\2212"; /* minus sign */
}

.cursos-accordion-item .accordion-collapse {
    border: none;
}

/* Table inside accordion body */
.cursos-accordion-table {
    width: 100%;
    background: var(--color-white, #fff);
}

.cursos-accordion-row {
    display: flex;
    align-items: center;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.cursos-accordion-row:last-child {
    border-bottom: none;
}

.cursos-accordion-row:hover {
    background: var(--color-alt, #0d6efd);
    color: var(--color-white, #fff);
    text-decoration: none;
}

.cursos-accordion-row:hover .cursos-accordion-col-code {
    color: rgba(255, 255, 255, 0.65);
}

/* Row action arrows — absolutely positioned so they never affect row height */
.row-arrow-default,
.row-arrow-hover {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.15s ease;
    white-space: nowrap;
}

.row-arrow-default {
    color: var(--color-alt, #0d6efd);
    font-size: 1.3rem;
    font-weight: 700;
    opacity: 1;
}

.row-arrow-hover {
    color: var(--color-white, #fff);
    font-family: var(--text-family-bold, inherit);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
}

.cursos-accordion-row:hover .row-arrow-default {
    opacity: 0;
}

.cursos-accordion-row:hover .row-arrow-hover {
    opacity: 1;
}

.cursos-accordion-col-code {
    flex: 0 0 100px;
    font-size: 0.85rem;
    color: #6c757d;
}

.cursos-accordion-col-nome {
    flex: 1;
    min-width: 0;
}

.cursos-accordion-row .cursos-accordion-col-nome {
    color: var(--color-alt);
    font-weight: 600;
}

.cursos-accordion-row:hover .cursos-accordion-col-nome {
    color: var(--color-white);
}

.cursos-accordion-col-inicio {
    flex: 0 0 140px;
    text-align: center;
    font-size: 0.9rem;
}

.cursos-accordion-col-duracao {
    flex: 0 0 140px;
    text-align: center;
    font-size: 0.9rem;
}

.cursos-accordion-col-action {
    flex: 0 0 150px;
    text-align: right;
    font-size: 1.1rem;
    position: relative;
}

.cursos-accordion-link {
    color: var(--color-alt, #0d6efd);
    text-decoration: none;
    font-family: var(--text-family-bold, inherit);
    font-weight: 700;
    font-size: 0.95rem;
}

.cursos-accordion-link:hover {
    text-decoration: underline;
}

.cursos-accordion-arrow {
    color: var(--color-alt, #0d6efd);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
}

.bg-light-alt {
    background-color: #eaf2f8;
}


/* ============================================================
   CURSO DETAIL PAGE
   ============================================================ */

/* ---- Course Header Banner ---- */
.curso-header {
    background: linear-gradient(-45deg, var(--color-secondary) 0%, var(--color-darker) 100%);
    padding: 3.5rem 0 2.5rem;
    text-align: center;
}

.curso-header-title {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.curso-header-code {
    font-weight: 400;
    font-size: 1.2rem;
    opacity: 0.7;
    margin-right: 0.25rem;
    display: inline;
}


/* ---- Anchor Navigation Bar (timeline style) ---- */
.curso-nav {
    background: linear-gradient(230deg, var(--color-secondary) 0%, var(--color-darker) 100%);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: sticky;
    /* top: 77px; */
    top: 0;
    z-index: 100;
    padding: 0.75rem 0 0.5rem;
}

.curso-nav::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-white);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.4))
            drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.curso-nav-inner {
    display: flex;
    max-width: var(--grid-width);
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* Horizontal connecting line */
.curso-nav-inner::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-white);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.4))
            drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.curso-nav-link {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.6rem 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--text-family);
    font-size: 0.73rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s;
    cursor: pointer;
}

/* Circle dot */
.curso-nav-link::before {
    content: '';
    width: 0.8rem;
    height: 0.8rem;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    background: var(--color-dark);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    transition: width 0.3s, height 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* Inner fill dot (via box-shadow inset) on hover/active */
.curso-nav-link:hover,
.curso-nav-link.active {
    color: var(--color-white);
    font-weight: 700;
}

.curso-nav-link:hover::before,
.curso-nav-link.active::before {
    background: var(--color-white);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}


/* ---- Direitos de Autor ---- */
.curso-direitos {
    background: var(--color-white);
    padding: 1.5rem 2rem;
}

.curso-direitos :last-child {
    margin-bottom: 0;
}

.curso-direitos h5 {
    font-size: 0.95rem;
    font-weight: 700;
}


/* ---- Three Info Cards ---- */
.curso-info-card {
    background: var(--color-white);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--color-secondary);
}

.curso-info-card-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.curso-info-card-body {
    font-size: 0.9rem;
    line-height: 1.65;
    max-height: 95px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    flex: 1;
}

/* Remove bottom margin from last element inside card body */
.curso-info-card-body > *:last-child {
    margin-bottom: 0;
}

.curso-info-card.expanded .curso-info-card-body {
    max-height: 200em;
}

.curso-info-card-toggle {
    display: inline-block;
    margin-top: 0.75rem;
    font-family: var(--text-family-bold);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-decoration: none;
    cursor: pointer;
}

.curso-info-card-toggle:hover {
    color: var(--color-alt);
}


/* ---- Conteúdos Programáticos (Accordion) ---- */
.curso-conteudos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.curso-conteudos-expand-all {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 0.45rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.curso-conteudos-expand-all:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

.curso-conteudos-accordion {
    overflow: hidden;
}

.curso-conteudos-acc-item, .curso-met-item {
    border-bottom: 1px solid var(--color-darker);
}

.curso-conteudos-acc-item:last-child, .curso-met-item:last-child {
    border-bottom: none;
}

.curso-conteudos-acc-toggle, .curso-met-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.15rem 1.5rem;
    background: var(--color-white);
    color: var(--color-darker);
    border: none;
    cursor: pointer;
    transition: 0.25s;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
}

.curso-conteudos-acc-toggle:hover,
.curso-conteudos-acc-toggle[aria-expanded="true"],
.curso-met-toggle:hover,
.curso-met-toggle[aria-expanded="true"] {
    color: var(--color-secondary);
    background: var(--color-gray);
}

.curso-conteudos-nome {
    flex: 1;
    font-family: var(--text-family-bold);
}

.curso-conteudos-horas {
    flex-shrink: 0;
    white-space: nowrap;
}

.curso-conteudos-acc-icon, .curso-met-icon {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: 0.5rem;
    transition: transform 0.2s;
}

.curso-conteudos-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--color-white);
}

.curso-conteudos-acc-content {
    padding: .5rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
}


/* ---- Metodologias Block ---- */
.curso-met-toggle > span:first-of-type {
    font-family: var(--text-family-bold);
}

.curso-met-card {
    background: var(--color-white);
    padding: 0.5rem 2rem;
}

.curso-met-toggle:hover {
    color: var(--color-alt);
}

.curso-met-icon {
    margin-left: auto;
}

.curso-met-body {
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
}

.curso-met-body :last-child {
    margin-bottom: 0;
}

/* ---- Horários Cards ---- */
.curso-horario-card {
    background: var(--color-white);
    padding: 2rem 2rem;
}

.curso-horario-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.curso-horario-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: var(--color-gray-dark);
}


/* ---- Próximas Datas ---- */
.curso-datas-wrapper {
    overflow-x: auto;
}

.curso-datas-tabs {
    display: flex;
    background: linear-gradient(-45deg, var(--color-secondary) 0%, var(--color-darker) 100%);
}

.curso-datas-tab {
    flex: 1;
    padding: 1.5rem 0.5rem;
    font-family: var(--text-family-bold);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.3;
    border: none;
    background: transparent;
    color: var(--color-white);
    cursor: pointer;
    transition: background 0.15s;
}

.curso-datas-tab:hover, .curso-datas-tab.active {
    background: var(--color-white);
    color: var(--color-black);
}

.curso-datas-row {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-gray-alt);
    gap: 1rem;
}

.curso-datas-row:last-child {
    border-bottom: none;
}

.curso-datas-col {
    font-size: 0.9rem;
}

.curso-datas-col-data {
    flex: 0 0 100px;
    font-family: var(--text-family-bold);
    font-weight: 600;
    line-height: 1.3;
}

.curso-datas-col-data small {
    font-weight: 400;
    color: var(--color-gray-dark);
}

.curso-datas-col-horas {
    flex: 0 0 60px;
    text-align: center;
    font-weight: 600;
}

.curso-datas-col-tipo {
    flex: 0 0 140px;
    text-align: center;
}

.curso-datas-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    font-family: var(--text-family-bold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-white);
}

.curso-datas-badge-online {
    background: #2e9e5a;
}

.curso-datas-badge-presencial {
    background: var(--color-secondary);
}

.curso-datas-badge-fds {
    background: var(--color-gold);
}

.curso-datas-col-local {
    flex: 1;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.curso-datas-col-preco {
    flex: 0 0 100px;
    text-align: right;
    font-family: var(--text-family-bold);
    font-weight: 600;
}

.curso-datas-col-action {
    flex: 0 0 150px;
    text-align: right;
}

.curso-datas-btn, .btn-black-border {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 0;
    border-left: 3px solid var(--color-secondary);
    color: var(--color-white);
    font-family: var(--text-family-bold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    background: linear-gradient(to right, var(--color-secondary) 50%, var(--color-black) 50%);
    background-size: 200% 100%;
    background-position: right center;
    transition: background-position 0.35s ease;
}

.curso-datas-btn:hover, .btn-black-border:hover {
    background-position: left center;
    color: var(--color-white);
}


/* ---- Curso Detail Responsive ---- */
@media (max-width: 767.98px) {
    .curso-header-title {
        font-size: 1.4rem;
    }

    .curso-header-code {
        font-size: 1rem;
        display: block;
        margin-bottom: 0.25rem;
    }

    .curso-nav-link {
        font-size: 0.6rem;
        padding: 0.5rem 0.25rem 0.6rem;
    }

    .curso-nav-link::before {
        width: 0.6rem;
        height: 0.6rem;
    }

    .curso-nav-link:hover::before,
    .curso-nav-link.active::before {
        width: 0.9rem;
        height: 0.9rem;
    }

    .curso-nav-inner::before {
        top: 1.2rem;
    }

    .curso-conteudos-acc-toggle {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }

    .curso-conteudos-acc-content {
        padding: 1.25rem;
    }

    .curso-datas-row {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .curso-datas-col-data {
        flex: 0 0 80px;
    }

    .curso-datas-col-action {
        flex: 1 0 100%;
        text-align: left;
        margin-top: 0.25rem;
    }
}

/* Responsive accordion */
@media (max-width: 767.98px) {
    /* Hide column headers inside button on small screens */
    .cursos-accordion-item .accordion-button .cursos-accordion-col-code,
    .cursos-accordion-item .accordion-button .cursos-accordion-col-inicio,
    .cursos-accordion-item .accordion-button .cursos-accordion-col-duracao,
    .cursos-accordion-item .accordion-button .cursos-accordion-col-action {
        display: none;
    }

    .cursos-accordion-row {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem;
    }

    .cursos-accordion-col-code {
        flex: 0 0 auto;
        order: 1;
    }

    .cursos-accordion-col-nome {
        flex: 1 1 100%;
        order: 2;
    }

    .cursos-accordion-col-inicio,
    .cursos-accordion-col-duracao {
        flex: 0 0 auto;
        text-align: left;
        order: 3;
    }

    .cursos-accordion-col-action {
        flex: 0 0 auto;
        order: 4;
        margin-left: auto;
    }
}


/* ======================================
   FOOTER
   ====================================== */

footer {
    color: var(--color-white);
}

footer h3,
footer h4,
footer h5,
footer h6 {
    color: var(--color-white);
    margin-bottom: 10px;
}

footer a {
    color: inherit;
    font-weight: 600;
    transition: 0.35s;
}
footer a:hover {
    opacity: 0.65;
    color: inherit;
}

footer a, footer p {
    line-height: 200%;
}

/* ---- Newsletter band ---- */
.footer-cursos-newsletter {
    padding: 3.5rem 0;
}

.footer-cursos-newsletter h4 {
    font-size: 1.07rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-white);
    font-weight: 700;
}

.footer-cursos-newsletter span {
    color: var(--color-white);
    font-weight: 700;
}

.newsletter-box-cursos {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 6px;
    margin-bottom: 0.75rem;
}

.newsletter-box-cursos input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1rem;
    padding: 0.5rem 0;
    width: auto;
}

.newsletter-box-cursos input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.newsletter-box-cursos input:focus {
    box-shadow: none !important;
    border: none;
}

.button-cursos-arrow {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0 0 0.5rem;
    transition: opacity 0.25s;
}

.button-cursos-arrow:hover {
    opacity: 0.65;
    color: var(--color-white);
}

.cta-gray{
    background: var(--color-gray);
    padding: 4rem 1rem;
}

.wlgrid.cta-gray{
    margin: 0 -72px;
    padding-left: 72px;
    padding-right: 72px;
}

/* ---- Footer links band ---- */


.footer-cursos-links > .row {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}


.cursos-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ---- Social icons ---- */
.cursos-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.cursos-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-secondary);
    font-size: 1rem;
    transition: background 0.25s, color 0.25s;
}

.cursos-social-links a:hover {
    background: rgba(255, 255, 255, 0.75);
    color: var(--color-secondary);
}

/* ---- Copyright bar ---- */
.footer-cursos-copyright {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cursos-copyright p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.banner-page {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-page--area {
    justify-content: flex-start;
    padding-bottom: 3rem;
}

.banner-title {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 18px rgba(255,255,255,0.8), 0 0 40px rgba(255,255,255,0.4);
}

.banner-title--left {
    text-align: left;
    margin-bottom: 0.75rem;
}

.banner-desc {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    max-width: 55%;
}

@media (max-width: 575.98px) {
    .banner-page {
        height: 250px;
    }
}

.footer-cursos-badges img {
    max-height: 75px;
    width: auto;
}

/* ---- Brand bar ---- */
.footer-cursos-brands {
    overflow: hidden;
}

.footer-cursos-brands .btn-rectangle {
    justify-content: center;
    min-width: 0;
    padding: 1.35rem 1.5rem;
}

/* ---- Footer responsive ---- */
@media (max-width: 575.98px) {
    .footer-cursos-newsletter {
        padding: 2.5rem 0;
    }

    .footer-cursos-links {
        padding: 2.5rem 0;
    }

    .footer-cursos-links .col-lg-3 {
        margin-bottom: 2rem;
    }

    .footer-brand-logo {
        max-height: 24px;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .footer-cursos-links .col-lg-3 {
        margin-bottom: 1.5rem;
    }
}