@font-face {
    font-family: 'Myriad Pro Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Regular'), url('../fonts/myriad-pro-webfont/MYRIADPRO-REGULAR.woff') format('woff');
}

@font-face {
    font-family: 'Myriad Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Myriad Pro Bold'), url('../fonts/myriad-pro-webfont/MYRIADPRO-BOLD.woff') format('woff');
}
	
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Myriad Pro Regular', sans-serif;
    line-height: 1.6;
    color: #6c6c6c;
    overflow-x: hidden;
	font-size: 18px;
}

/* Variáveis CSS */
:root {
    --primary-color: #b13436;
    --secondary-color: #666666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #555555;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: #000;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.nav-cta:hover {
    background: #9a2d2f;
    transform: translateY(-2px);
}

.bt-direct {
    background: #b13436;
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
	text-decoration: none;
}

.bt-direct-about {
    background: #b13436;
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
	text-decoration: none;
}

.bt-direct-int-pnl {
    background: #b13436;
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
	text-decoration: none;
}

.bt-direct-galeria-fotos {
    background: #b13436;
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
	text-decoration: none;
}

.bt-direct-cliente {
    background: #b13436;
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
	text-decoration: none;
}

.bt-direct-wh {
	font-family: 'Myriad Pro Bold', sans-serif;
    background: #fff;
    color: #db000b;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-wh-odi {
	font-family: 'Myriad Pro Bold', sans-serif;
    background: #fff;
    color: #db000b;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-eac {
    background: #4c5692;
    color: var(--white);
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
	text-decoration: none;
}

.bt-direct-eaclid {
    background: #9dc9f4;
    color: #153e65;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
	text-decoration: none;
}

.bt-direct-eacm {
    background: #6b6b6b;
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
	text-decoration: none;
}

.bt-direct-eacmif {
    background: #2f3c5b;
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
	text-decoration: none;
}

.bt-text-eac {
	position: relative;
	top: 15px;
	font-size: 18px !important;
}

.bt-link-eac {
	color: #4c5692;
	text-decoration: underline;
}

.bt-text-on {
	position: relative;
	top: 15px;
	font-size: 18px !important;
}

.bt-link-on {
	color: #ce6b00;
	text-decoration: underline;
}

.bt-direct-wh-eac {
    background: #fff;
    color: #4c5692;
    border: none;
    padding: 0.7rem 0.6rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-wh-eacm {
    background: #fff;
    color: #6b6b6b;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-wh-eacmif {
    background: #fff;
    color: #34415f;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-wh-eacs {
    background: #333333;
    color: #fff;
    border: 1px solid #ccc;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-wh-eacso {
    background: #e8bb28;
    color: #fff;
    border: none;
    border-radius: 45px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-inscrever-oratoria {
    background: #e8bb28;
    color: #fff;
    border: none;
    border-radius: 45px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

p.inscrever-oratoria {
	margin-top: 15px;
}

p.bt-sobre-amici {
	margin-top: 10px;
}

.bt-amici-editora {
    background: #591a1b;
    color: #fff;
    border: 1px solid #591a1c;
    border-radius: 45px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-wh-eacson {
    background: #ce6b00;
    color: #fff;
    border: 1px solid #ce6b01;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-wh-eacsd {
    background: #ef8800;
    color: #fff;
    border: 1px solid #ef8802;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-wh-eacsdc {
    background: #406378;
    color: #fff;
    border: 1px solid #406377;
    padding: 0.8rem 2.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-av360 {
    background: #3a4569;
    color: #fff;
    border: 1px solid #3a4568;
    padding: 0.8rem 2.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-clima {
    background: #567100;
    color: #fff;
    border: 1px solid #567101;
    padding: 0.8rem 2.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-cea {
    background: #001ca5;
    color: #fff;
    border: 1px solid #3a4568;
    padding: 0.8rem 2.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-team {
    background: #003684;
    color: #fff;
    border: 1px solid #003685;
    padding: 0.8rem 2.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-corp {
    background: #2f64a3;
    color: #fff;
    border: 1px solid #2f64a4;
    padding: 0.8rem 2.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-work {
    background: #374660;
    color: #fff;
    border: 1px solid #374661;
    padding: 0.8rem 2.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-wh-diag {
    background: #bbced9;
    color: #3a4569;
    border: 1px solid #bbced8;
    padding: 0.8rem 2.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-wh-clima {
    background: #dcecb5;
    color: #567100;
    border: 1px solid #dcecb6;
    padding: 0.8rem 2.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-wh-cea {
    background: #88ddff;
    color: #021ca5;
    border: 1px solid #88ddf0;
    padding: 0.8rem 2.8rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-wh-team {
	font-family: 'Myriad Pro Bold', sans-serif;
    background: #bed0df;
    color: #003684;
    border: 1px solid #bed0de;
    padding: 0.8rem 1.3rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-wh-corp {
	font-family: 'Myriad Pro Bold', sans-serif;
    background: #b6dffc;
    color: #2f64a3;
    border: 1px solid #b6dffd;
    padding: 0.8rem 1.3rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-who {
    background: #fff;
    color: #e9bb29;
    border: none;
    border-radius: 45px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bt-direct-whon {
    background: #fff;
    color: #ce6b00;
    border: 1px solid #fff;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: var(--transition);
}

.logo-w {
	width: 100px;
}

.sticky-header {
    position: fixed;
    left: 0;
    width: 100%;
    background: #555555;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sticky-header-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #555555;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sticky-header .container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 50px;
}

.sticky-header-top .container-top {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 0 115px;
    height: 50px;
}

.logo-sticky {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-sticky img {
    width: auto;
	position: relative;
    left: 30px;
}

.main-nav-sticky {
    flex: 1;
    display: flex;
    justify-content: right;
    margin: 0 85px;
}

.nav-menu-sticky {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.nav-menu-sticky > li {
    position: relative;
}

.nav-menu-sticky > li > a {
    display: block;
    padding: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu-sticky > li > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #999999;
    min-width: 280px;
    list-style: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.dropdown li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    padding-left: 25px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 32px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 0 12px;
    font-size: 14px;
    background: transparent;
    color: #555555;
	font-family: 'Myriad Pro Bold', sans-serif;
	font-weight: 700;
    width: 255px;
}

.search-box input::placeholder {
    color: #666;
    font-size: 11px;
}

.search-box button {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0 10px;
    font-size: 0px;
    color: #666;
    transition: color 0.3s ease;
}

.search-box button:hover {
    color: #333;
}

.account-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.account-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.hero-text.oratoria h1 {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.hero-text h1.odisseya {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.hero-text h1.competencia {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.0;
}

.hero-text p.competencia {
	font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 10px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.2;
}

.hero-text h1.clima {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.0;
}

.hero-text p.clima {
	font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 10px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.2;
}

.hero-text h1.title-av {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.0;
}

.hero-text p.title-av {
	font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 10px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.2;
}

.hero-text h1.title-cea {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.0;
}

.hero-text p.title-cea {
	font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 10px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.2;
}

.hero-text h1.title-team {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.0;
}

.hero-text h1.title-work {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.0;
}

.hero-text p.title-avc {
	font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 10px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.2;
}

.box-text-top-sobre h1.sobre {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 4.3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-sobre p.sobre {
	font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 10px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.3;
}

.box-text-top-galeria h1.galeria {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 4.3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-galeria p.galeria {
	font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 10px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.3;
}

.box-text-top-home h1.home {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 4.3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-home p.home {
	font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 10px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.3;
}

.box-text-top-cliente h1.cliente {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 4.3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-cliente p.cliente {
	font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 10px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.3;
}

.box-text-top-clientes h1.clientes {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 4.3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-clientes p.clientes {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.3;
}

.box-text-top-downloads h1.downloads {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 4.3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-downloads p.downloads {
	font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 0px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.3;
}

.box-text-top-blog h1.blog {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 4.3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-erro404 h1.erro404 {
    font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 4.3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-search h1.search {
    font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 4.3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-blog p.blog {
	font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 0px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.3;
}

.box-text-top-erro404 p.erro404 {
    font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 0px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.3;
}

.box-text-top-search p.search {
    font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 0px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.3;
}

.hero-text p.title-downloads {
	font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 10px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.3;
}

.hero-text p.title-blog {
	font-family: 'Myriad Pro Bold', sans-serif;
	margin-top: 10px;
    font-weight: 700;
    color: #6c6c6c;
    line-height: 1.3;
}

.box-text-top-oratoria-online h1.oratoria {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-oratoria-online p.oratoria {
	font-family: 'Myriad Pro Bold', sans-serif;
    color: #6c6c6c;
    line-height: 1.2;
}

.box-text-top-oratoria-pnl h1.oratoria-pnl {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-oratoria-pnl p.oratoria-pnl {
	font-family: 'Myriad Pro Bold', sans-serif;
    color: #6c6c6c;
    line-height: 1.2;
}

.box-text-top-practitioner h1.pnl {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
}

.box-text-top-practitioner p.pnl {
	font-family: 'Myriad Pro Bold', sans-serif;
    color: #6c6c6c;
    line-height: 20px;
}

.box-text-top-desempenho h1.desempenho {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-desempenho p.desempenho {
	font-family: 'Myriad Pro Bold', sans-serif;
    color: #6c6c6c;
    line-height: 1.2;
}

.box-text-top-work h1.work {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-work p.work {
	font-family: 'Myriad Pro Bold', sans-serif;
    color: #6c6c6c;
    line-height: 1.2;
}

.box-text-top-team h1.team {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-team p.team {
	font-family: 'Myriad Pro Bold', sans-serif;
    color: #6c6c6c;
    line-height: 1.2;
}

.box-text-top-team h1.corp {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    line-height: 1.0;
}

.box-text-top-team p.corp {
	font-family: 'Myriad Pro Bold', sans-serif;
    color: #6c6c6c;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
}

.hero-text p {
	font-family: 'Myriad Pro Bold', sans-serif;
	font-size: 25px;
    color: #6c6c6c;
    line-height: 1.2;
}

.hero-text p.mg-top-academy {
	margin-top: 10px;
	margin-bottom: 10px;
}

.hero-text h1.coaching {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.hero-text p.coaching {
	font-family: 'Myriad Pro Bold', sans-serif;
    color: #6c6c6c;
    line-height: 1.2;
}

.hero-text p.acad {
	font-family: 'Myriad Pro Bold', sans-serif;
    color: #6c6c6c;
    line-height: 1.2;
}

.hero-text .desc {
    font-size: 1.2rem;
    color: #6c6c6c;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 10px 15px 10px 15px;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
	text-transform: uppercase;
}

.btn-primary {
  color: #fff;
  background-color: #b13436;
  border-color: #b13435;
}

.btn-primary:hover {
    background: #9a2d2f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

.hero.bg-start {
	background-image: url('../images/bg-treinamentos-empresariais-1.webp');
	background-repeat: no-repeat;
	background-size: cover;
}

.hero.bg-start-home {
	background-image: url('../images/banner home_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
	background-position-y: 50px;
    display: flex;
    align-items: center;
}

.hero.bg-start-area-cliente {
	background-image: url('../images/banner área cliente_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #fff;
	background-position: bottom;
	background-position-y: 50px;
    display: flex;
    align-items: center;
}

.hero.bg-start-pnl {
	background-image: url('../images/banner pnl_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-color: #f1ede9;
    display: flex;
    align-items: center;
}

.hero.bg-start-master {
	background-image: url('../images/banner master livro_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-color: #f1ede9;
    display: flex;
    align-items: center;
}

.hero.bg-start-coaching {
	background-image: url('../images/banner coaching-_Prancheta 1.jpg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
	background-position-y: 50px;
    display: flex;
    align-items: center;
}

.hero.bg-start-odisseyai {
	background-image: url('../images/banner od1_Prancheta 1 (3).webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
	background-position-y: 50px;
    display: flex;
    align-items: center;
}

.hero.bg-start-odisseyaii {
	background-image: url('../images/banner od2_Prancheta 1 (1).webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
	background-position-y: 50px;
    display: flex;
    align-items: center;
}

.hero.bg-start-oratoria {
	background-image: url('../images/banner oratória online_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
	background-position-y: 50px;
    display: flex;
    align-items: center;
}

.bg-start-oratoria-pnl {
	background-image: url('../images/banner oratória_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-color: #f1ede9;
	background-position: bottom;
}

.hero.bg-start-lideres {
	background-image: url('../images/banner academia de líderes_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
	background-position-y: 50px;
    display: flex;
    align-items: center;
}

.hero.bg-start-academy {
	background-image: url('../images/banneracademy_Prancheta1.webp');
	background-repeat: no-repeat;
	background-color: #f1ede9;
	background-position-y: 50px;
    display: flex;
    align-items: center;
}

.hero.bg-start-desempenho {
	background-image: url('../images/banner avaliação de desempenho_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.hero.bg-start-competencia {
	background-image: url('../images/banner avaliação de competências_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.hero.bg-start-av360 {
	background-image: url('../images/banner avaliação 360_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.hero.bg-start-clima {
	background-image: url('../images/banner pesquisa clima_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.hero.bg-start-cea {
	background-image: url('../images/banner assessoria_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.hero.bg-start-team {
	background-image: url('../images/banner team building_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.hero.bg-start-corp {
	background-image: url('../images/banner coaching corporativo_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.hero.bg-start-sobre {
	background-image: url('../images/banner sobre nós_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
	background-position-y: 50px;
    display: flex;
    align-items: center;
}

.hero.bg-start-galeria-fotos {
	background-image: url('../images/banner galeria de fotos_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.hero.bg-start-galeria-fotos-empresariais {
	background-image: url('../images/banner galeria de fotos_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #fff;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.hero.bg-start-clientes {
	background-image: url('../images/banner clientes_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.hero.bg-start-downloads {
	background-image: url('../images/banner downloads_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
	background-position-y: 50px;
    display: flex;
    align-items: center;
}

.hero.bg-start-blog {
	background-image: url('../images/banner blog_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.hero.bg-start-erro404 {
	background-image: url('../images/banner blog_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.hero.bg-start-search {
	background-image: url('../images/banner blog_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.hero.bg-start-work {
	background-image: url('../images/banner workshops_Prancheta 1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: #f1ede9;
	background-position: bottom;
    display: flex;
    align-items: center;
}

.about-image {
	padding: 0px 0px 0px 0px;
}

.testimonials-grid.grid-one {
	grid-template-columns: repeat(1, 1fr);
}

.testimonial-card.grid-one {
	background: #f7e9e5;
    border: 1px solid #cb836b;
}

.testimonial-card.grid-one.fty {
	background: #f7e9e5;
    border: 1px solid #cb836b;
	padding: 0px 0px 10px 0px;
	margin-bottom: 15px;
}

.testimonial-card.grid-one.ftyls {
	padding: 0px 0px 10px 0px;
	margin-bottom: 0px;
}

h4.text-mp {
	font-size: 18px !important;
	line-height: 22px !important;
	margin-bottom: 5px;
}

p.text-mp {
	font-size: 14px !important;
	line-height: 20px !important;
}

.testimonials-grid.grid-two {
	grid-template-columns: repeat(2, 1fr);
}

.testimonials-grid.grid-three {
	grid-template-columns: repeat(3, 1fr);
}

.testimonials-grid.grid-four {
	grid-template-columns: repeat(4, 1fr);
}

.row {
	grid-template-columns: repeat(4, 1fr);
}

.testimonial-author-text {
	margin-bottom: 0rem !important;
}

.testimonial-author p.gf {
	line-height: 20px;
	font-size: 14px;
}

.testimonial-author p.avc {
	line-height: 20px;
	font-size: 18px !important;
}

.testimonial-author p.av360 {
	line-height: 20px;
	font-size: 16px;
	margin-top: 8px;
	padding-left: 10px;
}

.testimonial-author p.gfm {
	line-height: 16px;
	font-size: 13px;
}

.stats {
    padding: 2rem;
    background: var(--white);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stats-container-o {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
}

.stats-container-three {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    background: var(--light-gray);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.text-number-wt {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: -10px;
	margin-left: -15px;
}

.symbol-percent2{
	color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    top: -31px;
    left: 20px;
    margin-bottom: -35px;
}

.symbol-percent3{
	color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    top: -31px;
    left: 26px;
    margin-bottom: -35px;
}

.symbol1{
	color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    top: -31px;
    left: 10px;
    margin-bottom: -35px;
}

.symbol2{
	color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    top: -32px;
    left: 18px;
    margin-bottom: -35px;
}

.symbol3{
	color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    top: -32px;
    left: 22px;
    margin-bottom: -35px;
}

.symbol4{
	color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    top: -32px;
    left: 35px;
    margin-bottom: -35px;
}

.symbol5{
	color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    top: -32px;
    left: 40px;
    margin-bottom: -35px;
}

.stat-item p {
    color: var(--secondary-color);
    font-weight: 500;
}

.stat-item p.or {
	font-family: 'Myriad Pro Regular', sans-serif;
    color: var(--secondary-color);
	font-size: 14px;
	line-height: 18px;
}

.stat-item p.elca {
	font-family: 'Myriad Pro Bold', sans-serif;
    color: var(--secondary-color);
	font-size: 14px;
}

.stat-item p.elcad {
	font-family: 'Myriad Pro Regular', sans-serif;
    color: var(--secondary-color);
	font-size: 12px;
	line-height: 14px;
}

.stats-container-jc {
	width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	padding-top: 10px;
}

.stat-item-jc {
    text-align: center;
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item-jc:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-item-jc h3 {
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item-jc h3.elc {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c6c6c;
    margin-bottom: -10px;
}

.stat-item-jc p.descr {
    color: var(--secondary-color);
    font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	margin-bottom: 10px;
	text-align: center;
	padding-left: 0px;
}

.testimonial-content p.title-odi {
	font-family: 'Myriad Pro Bold', sans-serif;
	font-size: 15px;
	line-height: 18px;
	margin-top: 15px;
}

.testimonial-content img.downloads {
	width: 100%;
	height: auto;
}

.testimonial-content p.downloads {
	font-family: 'Myriad Pro Regular', sans-serif;
	font-size: 24px;
	line-height: 26px;
	margin-top: 15px;
	margin-bottom: 20px;
}

h2.downloads {
	margin-top: 55px;
	text-align: left;
}

.testimonial-author p.odi {
	font-size: 15px;
	line-height: 20px;
}

/* About Section */
.about {
    padding: 0rem 7%;
    background: var(--light-gray);
}

.about.bg {
    padding: 2rem 7%;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-container-cea {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-container.orat {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    align-items: center;
	padding-top: 15px;
}

.about-container.oratp {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    align-items: center;
	padding-top: 0px;
}

.about-container.odi {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 0rem;
    align-items: center;
}

.about-container.coach {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 0rem;
    align-items: center;
	padding: 0px 25px 0px 25px;
}

.about-container.pnl {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    align-items: center;
}

.about-container-jc {
    display: grid;
    gap: 2rem;
}

.about-content-jc {
	border: 1px solid #ccc;
	border-radius: 15px;
	padding: 10px 10px 0px 10px;
	height: fit-content;
}

.about-content-jc p {
	font-size: 15px;
	line-height: 20px;
	margin-bottom: 10px;
	text-align: left;
    padding-left: 10px;
}

.about-image img {
    border-radius: 10px;
}

.about-image-acad img {
    width: 100%;
    border-radius: 10px;
}

.about-image-orat img {
    width: 100%;
	padding: 45px;
    border-radius: 100px;
}

.about-image-odi img {
    width: 100%;
	padding: 35px;
    border-radius: 80px;
}

.about-image-avc img {
    width: 100%;
	padding: 25px;
    border-radius: 80px;
}

.about-image-cear img {
    width: 100%;
	height: auto;
    border-radius: 80px;
}

.about-image-ceal img {
    width: 100%;
	height: auto;
    border-radius: 80px;
}

.about-image-coach img {
    width: 100%;
	height: auto;
}

.about-image-master img {
    width: 100%;
    border-radius: 50px;
}

.about-content h2 {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.about-content h2.odi {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
	margin-top: 15px;
    margin-bottom: 10px;
}

.about-content h2.acad {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.8rem;
}

.about-content h2.avc {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.8rem;
}

.about-content h2.cea {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
	margin-top: 25px;
    margin-bottom: 0.5rem;
}

.about-content h2.sobre {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
	margin-top: 25px;
    margin-bottom: 0.5rem;
}

.about-content h2.av360 {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.8rem;
}

.about-content h2.coach {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.about-content h2.orat {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 0rem;
}

.about-content h2.elcad {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
	line-height: 32px;
}

.about-content h4 {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 22px;
	line-height: 25px;
    font-weight: 700;
    color: #000;
}

.about-content h4.pd-pnl {
	font-size: 20px;
    line-height: 22px;
	margin-top: 25px;
    margin-bottom: 10px;
}

.card-ul {
	text-align: left;
}

.about-content p.pd-pnl {
	font-size: 16px;
    line-height: 20px;
	margin-bottom: 10px;
}

.about-content h2.ft {
    margin-bottom: 0 !important;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.7;
}

.about-content p.coach {
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 27px;
}

.about-content p.ser {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.about-content.orat {
	padding: 25px;
}

.about-content.odi-r p.text {
	font-size: 18px;
	color: #4c4c4c;
	line-height: 28px;
}

.about-content.odi-l p.text {
	font-size: 18px;
	color: #4c4c4c;
	line-height: 28px;
}

.about-content.avc-r p.text {
	font-size: 18px;
	color: #4c4c4c;
	line-height: 28px;
}

.about-content.avc-l p.text {
	font-size: 18px;
	color: #4c4c4c;
	line-height: 28px;
}

.about-content p.text-av360 {
	font-size: 16px;
	color: #4c4c4c;
	line-height: 20px;
}

.about-content p.text-cea {
	font-size: 18px;
	color: #4c4c4c;
	line-height: 22.8px;
}

.about-content p.text-pdc {
	font-size: 16px;
	color: #4c4c4c;
	line-height: 23px;
}

.about-content p.text-pdct {
	font-size: 16px;
	color: #4c4c4c;
	line-height: 25px;
}

.about-content p.text-sobre {
	font-size: 19px;
	color: #4c4c4c;
	line-height: 25px;
	margin-bottom: 25px;
}

.about-content.acad p {
	font-size: 17px;
	line-height: 20px !important;
	margin-bottom: 20px; !important;
}

.about-content.hei-el p {
	line-height: 1.2 !important;
	margin-bottom: 1rem !important;
}

.about-content.hei-el p.ft{
	margin-bottom: 0rem !important;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-content p.elcad {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 18px;
	line-height: 25px;
    color: #070b19;
}

.testimonial-author p.elcad {
    font-size: 14px;
}

.testimonial-content p.elcadx {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 20px;
	line-height: 25px;
    color: #4d4d4e;
}

.testimonial-author p.elcadx {
    font-size: 18px;
	line-height: 23px;
	color: #4d4d4e;
}

.testimonial-content p.elcady {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 30px;
	line-height: 30px;
    color: #4d4d4e;
}

.testimonial-author p.elcady {
    font-size: 22px;
	line-height: 28px;
	color: #4d4d4e;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature span {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 3rem 5%;
    background: var(--white);
}

.services.bg {
    padding: 3rem 5%;
    background: #f8f9fa;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.services-container h2 {
    font-size: 35px;
	line-height: 40px;
    margin-bottom: 10px;
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
}

.services-subtitle {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.services-grid-three {
    display: grid;
    gap: 2rem;
}

.service-card.home {
	border: 1px solid #e2e8f0;
}

.service-card p.home {
	margin-bottom: 10px;
}

.service-card.home p.cliente {
	margin-top: 15px;
	margin-bottom: 10px;
}

p.galeria-fotos {
	margin-top: 35px;
}

.service-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 25px;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #d14547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 30px;
	line-height: 30px;
    font-weight: 600;
    margin-bottom: 5px;
	font-family: 'Myriad Pro Bold', sans-serif;
    color: #000;
}

.service-card p {
    color: var(--secondary-color);
    line-height: 1.3;
	padding-bottom: 5px;
}

.pdt-title-el {
	padding-top: 45px;
}

/* Testimonials Section */
.testimonials {
    padding: 2rem 5%;
    background: var(--light-gray);
}

.testimonials.bg {
    padding: 2rem 5%;
    background: #fff;
}

.testimonials.clientes {
    padding: 2rem 5%;
    background: #fff;
}

.content-wrapper {
	padding: 2rem 5%;
    background: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
	padding: 0px 45px 35px 45px;
}

.testimonials-container.orat {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
	padding: 0px 45px 0px 45px;
}

.testimonials-container.work {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
	padding: 0px 45px 0px 45px;
}

.inner-container.container {
	max-width: 1200px;
    margin: 0 auto;
    text-align: center;
	padding: 0px 45px 35px 45px;
}

.testimonials-container.mp {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
	padding: 0px 125px 0px 125px;
}

.testimonials-container h2 {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-weight: 700;
    color: #000;
	line-height: 38px;
	margin-bottom: 15px;
	padding-top: 35px;
}

.testimonials-container h2.work {
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 32px;
	line-height: 32px;
    font-weight: 700;
    color: #000;
	margin-bottom: 15px;
}

.testimonials-container p {
    color: #4c4c4c;
}

.testimonials-container p.text-cea {
	font-size: 19px;
	color: #4c4c4c;
	line-height: 22.8px;
}

.testimonials-container p.text-cea.pnl {
	margin-left: 10px;
	margin-bottom: 10px;
}

.services-container p.text-cea {
	font-size: 19px;
	color: #4c4c4c;
	line-height: 22.8px;
}

.testimonials-container p.so {
    color: #4c4c4c;
	font-size: 16px;
	line-height: 16px;
}

.testimonial-content p.fti {
    color: #000;
}

p.ftib {
    color: #000;
	line-height: 1.2;
}

.testimonial-content p.ftio {
    color: #434343;
}

b.ftio {
    color: #434343;
}

.testimonial-content p.ftavc {
	margin-top: 0px;
    color: #434343;
}

.testimonial-content p.ftav360 {
	margin-top: 0px;
	margin-bottom: 15px;
    color: #3a4569;
	font-size: 17px;
}

.testimonial-content p.ftav360t {
	margin-top: 0px;
    color: #3a4569;
	font-size: 17px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
	padding: 0px 0px 35px 0px;
}

.testimonials-grid.bg-work {
    gap: 0rem;
}

.testimonials-grid.bg-team {
    gap: 0rem;
}

.testimonials-grid.bg-corp {
    gap: 0rem;
}

.testimonials-grid.bg-acad {
    gap: 0rem;
}

.testimonials-grid.bg-coach {
    gap: 0rem;
}

.testimonials-grid.bg-acel {
    gap: 0rem;
}

.testimonials-grid.bg-reelo {
    gap: 0rem;
}

.row {
	display: grid;
    gap: 1.5rem;
	padding: 0px 0px 35px 0px;
}

.row.text-center {
	margin-top: 35px;
	display: block !important;
	text-align: center !important;
}

.testimonials-grid-av360 {
    display: grid;
	gap: 4rem;
}

.testimonials-grid-work {
    display: grid;
	gap: 4rem;
}

.testimonials-grid.pnl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
	padding: 0px 75px 45px 75px;
}

.testimonials-grid.coach {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
	padding: 0px 115px 0px 115px;
}

.testimonial-card {
    background: var(--white);
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card.bordc {
    border: 1px solid #ccc;
}

.col-md-3.col-sm-6 {
    background: var(--white);
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card-sobre {
    background: transparent;
	width: 100%;
	height: auto;
	margin-top: 30px;
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card-sobre:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card.fu {
    background: linear-gradient(0deg, #f1f5f9, transparent);
    padding: 15px 15px 15px 15px;
	border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card.fu:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-content p.fu {
    color: #000;
	margin-top: 25px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.testimonial-content p.fuo {
    color: #000;
	margin-top: 25px;
    margin-bottom: 5px;
    line-height: 1.2;
	font-size: 15px;
}

.testimonial-card.fg {
    background: var(--white);
    padding: 5px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card.fg:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card.fg p {
	font-size: 12px;
	margin-top: 5px;
	line-height: 1;
}

.testimonial-content p {
    color: var(--secondary-color);
	margin-top: 25px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.testimonial-content p.depo {
    color: var(--secondary-color);
	margin-top: 0px;
    margin-bottom: 5px;
    line-height: 16px;
	font-size: 14px;
	text-align: left;
}

.testimonial-content p.tre {
    color: var(--secondary-color);
	margin-top: -12px;
    margin-bottom: 5px;
    line-height: 0;
	font-size: 14px;
}

.testimonial-content-sobre-bt {
	max-width: 100%;
    margin: 15px 0px 0px 0px;
    text-align: center;
}

.testimonial-author-text.tre {
	font-size: 14px;
	padding-left: 48px;
	line-height: 15px;
}

.testimonial-author-text.trels {
	font-size: 14px;
	padding: 10px 0px 0px 10px; 
}

p.text-pnl-t {
	margin-top: 0px;
	line-height: 24px;
}

b.text-pnl-t {
	font-size: 18px;
}

p.text-acad-t {
	font-family: 'Myriad Pro Regular', sans-serif;
	margin-top: 0px;
	margin-bottom: 25px;
	font-size: 17px;
}

p.text-acad-tpw {
	font-family: 'Myriad Pro Regular', sans-serif;
	margin-top: 0px;
	margin-bottom: 25px;
	font-size: 16px;
}

b.text-acad-tpw {
	font-size: 18px;
}

.testimonial-author h4 {
    color: var(--dark-gray);
    font-weight: 600;
}

.text2 h4 {
    color: var(--dark-gray);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%; 
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}

.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 95%;
}

.close {
	color: #4b9ed7 !important;
	float: right !important;
	font-size: 45px !important;
	font-weight: bold !important;
	opacity: 1 !important;
}

.close:hover, .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
    background: var(--light-gray);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span, a {
    color: var(--secondary-color);
    font-weight: 500;
	text-decoration: none;
}

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(177, 52, 54, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5rem;
    margin: 5px 45px 15px 45px;
}

.footer-content-mp {
    display: grid;
    grid-template-columns: 3fr 3fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
	text-align: center;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer.grey-el {
	background-color: #555555;
}

.map-center {
	text-align: center;
}

.social-links {
    display: inline-flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
	text-decoration: none;
}

.social-links a:hover {
    background: #9a2d2f;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Modal */
.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2
}

.close:focus,.close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5
}

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0
}

.modal-open {
    overflow: hidden
}

.modal {
    position: fixed;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0,-25%);
    -ms-transform: translate(0,-25%);
    -o-transform: translate(0,-25%);
    transform: translate(0,-25%)
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5)
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.42857143
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer .btn+.btn {
    margin-bottom: 0;
    margin-left: 5px
}

.modal-footer .btn-group .btn+.btn {
    margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

.whatsapp-button {
	position: fixed;
	bottom: 95px;
	right: 30px;
	z-index: 99;
	border: none;
	outline: none;
	cursor: pointer;
}

.top-scroll {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	border: none;
	outline: none;
	cursor: pointer;
	background-color: initial;
}

.text-wt {
	color: #fff !important;
}

.text-wtv {
	color: #fff !important;
	font-size: 16px;
	line-height: 20px;
}

.text-stats-sobre {
	color: #fff !important;
	font-size: 14px;
	line-height: 18px;
}

.text-wtch {
	color: #fff !important;
	font-size: 16px;
	position: relative;
	top: -10px;
	bottom: -5px;
}

.text-wtc {
	color: #fff !important;
	font-size: 14px;
	line-height: 18px;
}

.text-rd {
	color: #d3000b !important;
}

.text-rdmp {
	color: #d3000b !important;
}

.testimonial-card.bg-box-none {
	background: initial !important;
	box-shadow: none !important;
}

.testimonial-card.mg-box-none {
	background: #f7f6f4 !important;
	margin-bottom: 0px;
}

.about-content-jc h3.text-jc {
	color: #000;
	padding-left: 0px;
}

.about-content-jc p.text-jc {
	font-size: 12px;
	color: #ac3435;
	padding-left: 0px;
}

.desc-jc {
	font-size: 17px !important;
}

.text-wta {
	color: #189d0e !important;
}

.text-wtar {
	color: #dc3545 !important;
}

.hero.bga-fd {
	background: #fdf4f4 !important;
}

strong.text-scf {
	color: #fff !important;
	font-size: 18px !important;
	text-transform: uppercase;
}

img.logo-el-ft {
	width: 120px !important;
}

.stat-item-jc.mg-st {
	margin: 25px !important;
}

.grid-one-fr {
	grid-template-columns: repeat(1, 1fr) !important;
}

.title-pnel {
	color: #ac3435 !important;
	font-size: 30px !important;
}

.about.bg-color-out {
	background: #202b3f !important;
}

.text-left-side {
	text-align: left;
}

.testimonial-card.mg-box-none.bg-competencia-box {
	background-color: #f9f8f7;
	width: 100%;
	border-radius: 35px;
	text-align: center;
	padding: 15px 5px 30px 5px;
	line-height: 25px;
}

.testimonial-card.mg-box-none.bg-coach-box {
	background-color: #f9f8f7;
	width: 100%;
	border-radius: 35px;
	text-align: center;
	padding: 15px 5px 30px 5px;
	line-height: 25px;
}

.testimonial-card.mg-box-none.bg-pn-box {
	background-color: #f9f8f7;
	border-radius: 35px;
	text-align: center;
	padding: 10px;
	line-height: 35px;
}

.testimonial-card.mg-box-none.bg-pn-box.ft {
	background: initial !important;
	border-radius: initial;
	text-align: center;
	padding: 0px 0px 0px 0px;
	box-shadow: initial !important;
}

.testimonial-card.mg-box-none.bg-pn-box.ft.top {
	margin-top: 25px;
}

.testimonial-card.mg-box-none.bg-pn-box.ft.topo {
	margin-top: 20px;
}

.testimonials-grid.lef-el {
	text-align: left !important;
	font-size: 16px;
}

.testimonials-grid.lef-el b {
	font-family: 'Myriad Pro Bold', sans-serif;
}

.testimonials-grid.lef-el p {
	text-align: left !important;
	font-size: 18px;
	color: #6c6c6c;
}

.testimonial-author p.elcady.tp {
	line-height: 25px;
	padding-left: 10px;
    margin-bottom: 15px;
}

.lef-elo {
	text-align: left !important;
}

.testimonials-grid.grid-four.align-el {
	text-align: center !important;
}

.testimonials-grid.grid-four.align-el.tel {
	padding: 0px 95px 35px 95px;
}

.testimonials-grid.align-el {
	text-align: center !important;
}

.icon-el {
	width: 10px;
	margin-left: -12px;
}

.icon-av360 {
	width: 10px;
	margin-left: -12px;
}

.icon-el-r {
	width: 45px;
	position: relative;
	top: 22px;
}

.icon-el-card {
	width: 65px;
	margin-bottom: -15px;
	margin-left: -5px;
}

.icon-el-card-cliente {
	width: 65px;
	height: auto;
	margin-bottom: 5px;
}

.icon-el-card-avc {
	width: 45px;
	margin-left: -5px;
}

.icon-el-card-odi {
	width: 55px;
	margin-bottom: -15px;
	margin-left: -5px;
}

.icon-el-card-depo {
	width: 60px;
}

.icon-el-card-jc {
	width: 35px;
    margin-bottom: -10px;
}

h4.text-cea.pd {
	margin-bottom: 10px;
}

p.desc-el-t {
	font-family: 'Myriad Pro Regular', sans-serif;
	color: #666666;
    font-size: 15px;
    line-height: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
}

p.desc-el-to {
	font-family: 'Myriad Pro Regular', sans-serif;
	font-size: 15px;
	line-height: 17px;
	color: var(--secondary-color);
	margin-top: 10px;
	margin-bottom: 10px;
}

p.desc-el-top {
	font-family: 'Myriad Pro Regular', sans-serif;
	font-size: 15px;
	line-height: 17px;
	color: var(--secondary-color);
	margin-top: 10px;
	margin-bottom: 10px;
}

p.desc-el-tomp {
	font-family: 'Myriad Pro Regular', sans-serif;
	font-size: 15px;
	line-height: 20px;
	color: var(--secondary-color);
}

p.desc-el-tompt {
	font-family: 'Myriad Pro Regular', sans-serif;
	font-size: 15px;
	line-height: 20px;
	color: var(--secondary-color);
	padding-top: 5px;
	padding-bottom: 10px;
}

p.desc-elcad {
	font-family: 'Myriad Pro Regular', sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: var(--secondary-color);
}

p.desc-el-to b {
	color: #6c6c6c;
}

.img-el-depo-y {
	width: 100%;
}

.bg-reel {
	background: #8b0310 !important;
}

.bg-reelo {
	background: #d86824 !important;
}

.bg-reelop {
	background: #b08934 !important;
}

.bg-reelopi {
	background: #f2b200 !important;
}

.bg-reelopic {
	background: #5584a0 !important;
}

.bg-av360 {
	background: #4d5a73 !important;
}

.bg-clima {
	background: #8baa07 !important;
}

.bg-cea {
	background: #0081c1 !important;
}

.bg-team {
	background: #148aa7 !important;
}

.bg-corp {
	background: #325468 !important;
}

.bg-sobre {
	background: #b13436 !important;
}

.bg-work {
	background: #3159ac !important;
}

.hero.bg-work {
	background: #3159ac !important;
	min-height: auto;
    padding: 50px 10px 0px 10px;
}

.bg-acel {
	background: #323d63 !important;
}

.bg-acad {
	background: #247e93 !important;
}

.bg-acelm {
	background: #424242 !important;
}

.bg-coach {
	background: #19192b !important;
}

.bg-odi {
	background: #db000b !important;
}

.bg-odii {
	background: #216646 !important;
}

.grey-m {
	background: #cccccc !important;
	border: 1px solid #9e9e9e !important;
}

.grey-mls {
	background: transparent !important;
	border: 1px solid #9e9e9e !important;
}

.table {
	border-collapse: collapse!important;
	padding: 5px;
}
	
.table td,.table th {
	background-color: #fff !important;
}

.table-bordered td,.table-bordered th {
	border: 1px solid #000 !important;
	padding: 5px;
}

.icon-el-card.card-el-bold1 {
	width: 75px;
	height: 75px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones redondos master_Prancheta 1.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold1 {
	background-image: url('../images/icons/ícones redondos master_Prancheta 1 cópia 5bold.webp');
}

.icon-el-card.card-el-bold2 {
	width: 75px;
	height: 75px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones redondos master_Prancheta 1 cópia.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold2 {
	background-image: url('../images/icons/ícones redondos master_Prancheta 1 cópia 6bold.webp');
}

.icon-el-card.card-el-bold3 {
	width: 75px;
	height: 75px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones redondos master_Prancheta 1 cópia 3.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold3 {
	background-image: url('../images/icons/ícones redondos master_Prancheta 1 cópia 8bold.webp');
}

.icon-el-card.card-el-bold4 {
	width: 75px;
	height: 75px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones redondos master_Prancheta 1 cópia 2.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold4 {
	background-image: url('../images/icons/ícones redondos master_Prancheta 1 cópia 7bold.webp');
}

.icon-el-card.card-el-bold5 {
	width: 55px;
	height: 55px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/redondos academy_Prancheta 1 cópia 6.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold5 {
	background-image: url('../images/icons/redondos academy_Prancheta 1 cópia 8.webp');
}

.icon-el-card.card-el-bold6 {
	width: 55px;
	height: 55px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/redondos academy_Prancheta 1 cópia 4.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold6 {
	background-image: url('../images/icons/redondos academy_Prancheta 1 cópia 9.webp');
}

.icon-el-card.card-el-bold7 {
	width: 55px;
	height: 55px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/redondos academy_Prancheta 1 cópia 7.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold7 {
	background-image: url('../images/icons/redondos academy_Prancheta 1 cópia 10.webp');
}

.icon-el-card.card-el-bold8 {
	width: 55px;
	height: 55px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/redondos academy_Prancheta 1.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold8 {
	background-image: url('../images/icons/redondos academy_Prancheta 1 cópia 11.webp');
}

.icon-el-card.card-el-bold9 {
	width: 75px;
	height: 75px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones redondos coaching-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold9 {
	background-image: url('../images/icons/ícones redondos coaching-09.webp');
}

.icon-el-card.card-el-bold10 {
	width: 75px;
	height: 75px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones redondos coaching-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold10 {
	background-image: url('../images/icons/ícones redondos coaching-08.webp');
}

.icon-el-card.card-el-bold11 {
	width: 75px;
	height: 75px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones redondos coaching-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold11 {
	background-image: url('../images/icons/ícones redondos coaching-07.webp');
}

.icon-el-card.card-el-bold12 {
	width: 75px;
	height: 75px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones redondos coaching-05.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold12 {
	background-image: url('../images/icons/ícones redondos coaching-06.webp');
}

.icon-el-card.card-el-bold13 {
	width: 75px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones od1-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold13 {
	background-image: url('../images/icons/ícones od1-07.webp');
}

.icon-el-card.card-el-bold14 {
	width: 75px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones od1-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold14 {
	background-image: url('../images/icons/ícones od1-08.webp');
}

.icon-el-card.card-el-bold15 {
	width: 75px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones od1-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold15 {
	background-image: url('../images/icons/ícones od1-06.webp');
}

.icon-el-card.card-el-bold16 {
	width: 75px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones od1-04.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold16 {
	background-image: url('../images/icons/ícones od1-05.webp');
}

.icon-el-card.card-el-bold17 {
	width: 75px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones od2-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold17 {
	background-image: url('../images/icons/ícones od2-07.webp');
}

.icon-el-card.card-el-bold18 {
	width: 75px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones od2-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold18 {
	background-image: url('../images/icons/ícones od2-08.webp');
}

.icon-el-card.card-el-bold19 {
	width: 75px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones od2-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold19 {
	background-image: url('../images/icons/ícones od2-06.webp');
}

.icon-el-card.card-el-bold20 {
	width: 75px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones od2-04.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold20 {
	background-image: url('../images/icons/ícones od2-05.webp');
}

.icon-el-card.card-el-bold21 {
	width: 65px;
	height: 75px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/redondos oratória_Prancheta 1 cópia 6.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold21 {
	background-image: url('../images/icons/redondos oratória_Prancheta 1 cópia 8.webp');
}

.icon-el-card.card-el-bold22 {
	width: 65px;
	height: 75px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/redondos oratória_Prancheta 1 cópia 4.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold22 {
	background-image: url('../images/icons/redondos oratória_Prancheta 1 cópia 9.webp');
}

.icon-el-card.card-el-bold23 {
	width: 65px;
	height: 75px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/redondos oratória_Prancheta 1 cópia 7.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold23 {
	background-image: url('../images/icons/redondos oratória_Prancheta 1 cópia 10.webp');
}

.icon-el-card.card-el-bold24 {
	width: 65px;
	height: 75px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/redondos oratória_Prancheta 1.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold24 {
	background-image: url('../images/icons/redondos oratória_Prancheta 1 cópia 11.webp');
}

.icon-el-card.card-el-bold25 {
	width: 75px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones oratória2-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold25 {
	background-image: url('../images/icons/ícones oratória2-07.webp');
}

.icon-el-card.card-el-bold26 {
	width: 75px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones oratória2-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold26 {
	background-image: url('../images/icons/ícones oratória2-08.webp');
}

.icon-el-card.card-el-bold27 {
	width: 75px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones oratória2-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold27 {
	background-image: url('../images/icons/ícones oratória2-06.webp');
}

.icon-el-card.card-el-bold28 {
	width: 75px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones oratória2-04.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold28 {
	background-image: url('../images/icons/ícones oratória2-05.webp');
}

.icon-el-card.card-el-bold29 {
	width: 70px;
	height: 70px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones academia de líderes-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold29 {
	background-image: url('../images/icons/ícones academia de líderes-06.webp');
}

.icon-el-card.card-el-bold30 {
	width: 70px;
	height: 70px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones academia de líderes-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold30 {
	background-image: url('../images/icons/ícones academia de líderes-04.webp');
}

.icon-el-card.card-el-bold31 {
	width: 70px;
	height: 70px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones academia de líderes-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold31 {
	background-image: url('../images/icons/ícones academia de líderes-05.webp');
}

.icon-el-card.card-el-bold32 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones avaliação de desempenho-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold32 {
	background-image: url('../images/icons/ícones avaliação de desempenho-08.webp');
}

.icon-el-card.card-el-bold33 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones avaliação de desempenho-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold33 {
	background-image: url('../images/icons/ícones avaliação de desempenho-06.webp');
}

.icon-el-card.card-el-bold34 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones oratória2-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold34 {
	background-image: url('../images/icons/ícones oratória2-07.webp');
}

.icon-el-card.card-el-bold35 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones academia de líderes-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold35 {
	background-image: url('../images/icons/ícones academia de líderes-06.webp');
}

.icon-el-card.card-el-bold36 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones academia de líderes-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold36 {
	background-image: url('../images/icons/ícones academia de líderes-04.webp');
}

.icon-el-card.card-el-bold37 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones academia de líderes-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold37 {
	background-image: url('../images/icons/ícones academia de líderes-05.webp');
}

.icon-el-card.card-el-bold38 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones avaliação 360-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold38 {
	background-image: url('../images/icons/ícones avaliação 360-06.webp');
}

.icon-el-card.card-el-bold39 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones avaliação 360-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold39 {
	background-image: url('../images/icons/ícones avaliação 360-05.webp');
}

.icon-el-card.card-el-bold40 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones avaliação 360-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold40 {
	background-image: url('../images/icons/ícones avaliação 360-04.webp');
}

.icon-el-card.card-el-bold41 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones assessoria-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold41 {
	background-image: url('../images/icons/ícones assessoria-06.webp');
}

.icon-el-card.card-el-bold42 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones assessoria-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold42 {
	background-image: url('../images/icons/ícones assessoria-05.webp');
}

.icon-el-card.card-el-bold43 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones assessoria-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold43 {
	background-image: url('../images/icons/ícones assessoria-04.webp');
}

.icon-el-card.card-el-bold44 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones pesquisa clima-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold44 {
	background-image: url('../images/icons/ícones pesquisa clima-06.webp');
}

.icon-el-card.card-el-bold45 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones pesquisa clima-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold45 {
	background-image: url('../images/icons/ícones pesquisa clima-05.webp');
}

.icon-el-card.card-el-bold46 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones pesquisa clima-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold46 {
	background-image: url('../images/icons/ícones pesquisa clima-04.webp');
}

.icon-el-card.card-el-bold47 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones workshops-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold47 {
	background-image: url('../images/icons/ícones workshops-06.webp');
}

.icon-el-card.card-el-bold48 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones workshops-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold48 {
	background-image: url('../images/icons/ícones workshops-05.webp');
}

.icon-el-card.card-el-bold49 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones workshops-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold49 {
	background-image: url('../images/icons/ícones workshops-04.webp');
}

.icon-el-card.card-el-bold50 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones team building-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold50 {
	background-image: url('../images/icons/ícones team building-06.webp');
}

.icon-el-card.card-el-bold51 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones team building-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold51 {
	background-image: url('../images/icons/ícones team building-05.webp');
}

.icon-el-card.card-el-bold52 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones team building-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold52 {
	background-image: url('../images/icons/ícones team building-04.webp');
}

.icon-el-card.card-el-bold53 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones coaching corporativo-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold53 {
	background-image: url('../images/icons/ícones coaching corporativo-06.webp');
}

.icon-el-card.card-el-bold54 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones coaching corporativo-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold54 {
	background-image: url('../images/icons/ícones coaching corporativo-05.webp');
}

.icon-el-card.card-el-bold55 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones coaching corporativo-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold55 {
	background-image: url('../images/icons/ícones coaching corporativo-04.webp');
}

.icon-el-card.card-el-bold56 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones sobre nós-01.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold56 {
	background-image: url('../images/icons/ícones sobre nós-06.webp');
}

.icon-el-card.card-el-bold57 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones sobre nós-02.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold57 {
	background-image: url('../images/icons/ícones sobre nós-05.webp');
}

.icon-el-card.card-el-bold58 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones sobre nós-03.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold58 {
	background-image: url('../images/icons/ícones sobre nós-04.webp');
}

.icon-el-card.card-el-bold59 {
	width: 70px;
	height: 65px;
	display: inline-table;
    align-items: center;
	background-size: 100%;
	background-image: url('../images/icons/ícones sobre nós-08.webp');
	background-repeat: no-repeat;
}

.stat-item:hover .icon-el-card.card-el-bold59 {
	background-image: url('../images/icons/ícones sobre nós-09.webp');
}

h2.corp {
	line-height: 35px;
	margin-bottom: 15px;
}

.testimonial-card.bg-orat2 {
	background-color: #f3f4f6 !important;
	width: 100%;
	min-height: auto;
	padding: 15px;
	align-items: center;
}

.testimonial-card.bg-orat2 p {
	font-size: 17px;
	line-height: 20px;
}

.bg-orat3 {
	background-color: #fff5c8 !important;
	border-radius: 15px;
}

.testimonials-container.bg-oratk3 {
	background-color: #fff5c8 !important;
	border-radius: 15px;
	padding: 15px 45px 20px 45px;
}

.testimonials-container.bg-amici-editora {
	background-color: #eccecf !important;
	border-radius: 15px;
	padding: 15px 45px 20px 45px;
}

.testimonials-container.bg-oratk3 p {
	color: #000;
	line-height: 22px;
}

.testimonial-card.grid-one.bg-orat3 {
    border: none !important;
	box-shadow: none;
}

.content-item-acad {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.5;
	background-color: #f3f4f6;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	min-height: 90px;
    align-items: center;
}

.content-item-acad:last-child {
    margin-bottom: 0;
}

.content-item-acadb {
    margin-bottom: 15px;
    line-height: 1.5;
	background-color: transparent;
    padding: 10px 15px 10px 15px;
	border: 1px solid #ccc;
    border-radius: 15px;
}

.content-box {
    width: 100%;
}

.content-box-corp {
    width: 100%;
}

.content-box-sobre img {
    width: 100%;
	height: auto;
}

.content-box-avc {
    width: 100%;
}

.content-box-acad {
    width: 100%;
	display: grid;
	gap: 0.5rem;
}

.content-box-date {
    width: 100%;
	background-color: #fff5c8;
	border-radius: 15px;
	margin-top: 20px;
    padding: 5px 15px 5px 15px;
	height: 65px;
}

.content-box-date img.date {
	width: 45px;
	position: relative;
	top: 8px;
}

.content-box-date p.date {
	position: relative;
    top: -36px;
    left: 45px;
    line-height: 12px;
	font-size: 16px;
}

.content-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.5;
	background-color: #f3f4f6;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-item:last-child {
    margin-bottom: 0;
}

.number {
    color: #4a90e2;
    font-weight: bold;
    font-size: 16px;
    margin-right: 8px;
    min-width: 25px;
    flex-shrink: 0;
}

.text {
    color: #333333;
    font-size: 18px;
    line-height: 1.4;
}

.mg-th {
	margin-bottom: 0rem !important;
}

.competencias-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 20px;
    overflow: hidden;
}

.competencia-item {
    background-color: #f3f4f6;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
	border-radius: 15px;
}

.competencia-item:hover {
    background-color: #e8e8e8;
}

.competencia-item h3 {
    font-size: 16px;
    font-weight: bold;
    color: #6c6c6c;
    line-height: 1.3;
    margin: 0;
}

.competencia-item p {
    font-size: 22px;
    color: #555;
    line-height: 1.3;
    margin: 0;
}

.icons-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 155px;
	height: 90px;
    transition: all 0.3s ease;
	border: 1px solid #ccc;
	border-radius: 0px 10px 10px 10px;
}

.icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f39c12;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 3px solid #f39c12;
	position: relative;
	top: -10px;
    left: -75px;
}

.icon-circle-w {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
	position: relative;
	top: -20px;
    left: -75px;
}

.checkmark {
    width: 30px;
    height: 30px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.icon-text-el {
    position: relative;
    top: -25px;
}

.icon-text-el p {
    font-size: 18px;
    color: #b13436;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.icon-text {
    position: relative;
    top: -35px;
}

.icon-text h3 {
    font-size: 16px;
    font-weight: bold;
    color: #f39c12;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.icon-text p {
    font-size: 14px;
    color: #f39c12;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.icon-item:hover .icon-circle {
    background-color: #333333;
    border-color: #333333;
    transform: scale(1.05);
}

.checkmark-w {
	width: 50px;
    height: 50px;
    display: inline-table;
    align-items: center;
    background-size: 100%;
	background-repeat: no-repeat;
    transition: all 0.3s ease;
	background-image: url('../images/icons/ícones avaliação de desempenho-02.webp');
}

.icon-item:hover .checkmark-w {
    border-color: #333333;
    transform: scale(1.05);
	background-image: url('../images/icons/ícones avaliação de desempenho-07.webp');
}

.icon-item:hover .checkmark-w {
    color: #ffffff;
}

.checkmark-el {
	width: 50px;
    height: 50px;
    display: inline-table;
    align-items: center;
    background-size: 100%;
	background-repeat: no-repeat;
    transition: all 0.3s ease;
	background-image: url('../images/icons/ícones home-02.webp');
}

.icon-item:hover .checkmark-el {
    border-color: #333333;
    transform: scale(1.05);
	background-image: url('../images/icons/ícones home-02 (1).webp');
}

.icon-item:hover .checkmark-el {
    color: #ffffff;
}

.e-mark {
	width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
	position: relative;
	top: -35px;
	left: -35px;
    background-size: 100%;
	background-repeat: no-repeat;
    transition: all 0.3s ease;
	background-image: url('../images/icons/ícones workshops-08.webp');
}

.card:hover .e-mark {
    transform: scale(1.05);
	background-image: url('../images/icons/ícones workshops-09.webp');
}

.card-tpw:hover .e-mark {
    transform: scale(1.05);
	background-image: url('../images/icons/ícones workshops-09.webp');
}

.icon-item:hover .icon-text h3 {
    color: #333333;
}

.icon-item:hover .icon-text p {
    color: #333333;
}

.testimonials-container.bt-coach {
	padding-top: 15px;
}

/* Cards */
.card {
    padding: 15px 15px 0px 15px;
    border-radius: 15px;
	border: 1px solid #e9ecef;
	background: #fff;
}

.card-tpw {
    padding: 15px 15px 0px 15px;
    border-radius: 15px;
	border: 1px solid #e9ecef;
	background: #fff;
	height: 135px;
}


.card-number {
    background-color: #dbdde1;
    color: #3a4569;
    border-radius: 50%;
	position: relative;
	top: -35px;
	left: -35px;
    display: flex;
    align-items: center;
    justify-content: center;
	font-family: 'Myriad Pro Regular', sans-serif;
	font-weight: bold;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #3a4569;
    margin-bottom: 10px;
    line-height: 1.3;
	text-align: left;
	position: relative;
	top: -35px;
}

p.card-description {
    font-size: 18px;
    color: #3a4569;
    line-height: 22px;
    text-align: left;
	position: relative;
	top: -35px;
}

p.card-description-work {
    font-size: 18px;
    color: #3a4569;
    line-height: 22px;
    text-align: center;
	position: relative;
	top: -35px;
}

/* Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-tpw {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-tpw:hover {
    transform: translateY(-5px);
}

.card-number {
    transition: background-color 0.3s ease;
}

.card:hover .card-number {
    background-color: #ccc;
}

.top-oratoria {
	padding-top: 25px;
}

.filter-categories {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

ul.project-filter {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.filter-categories ul li {
    display: inline-block;
    margin: 0px 5px 15px;
}

.filter-categories ul li.active span {
    color: white;
    background: rgb(177, 52, 54);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(177, 52, 54);
    border-image: initial;
}

.filter-categories ul li span {
    cursor: pointer;
    color: rgb(122, 122, 122);
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 25px;
    background: white;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(221, 221, 221);
    border-image: initial;
    padding: 10px 18px;
}

.projects-holder .mix {
  display: none;
}

.ln-logo-img-size {
	width: 130px;
	height: 130px;
}

.container-fluid {
	margin: 50px;
}

.panel-heading img {
	width: 100%;
	height: auto;
}

.post-thumbnail img {
	width: 100%;
    height: auto;
}

.testimonials-container.text-blog {
	text-align: left;
	margin-top: 125px;
}

/* e-commerce */
.login-container {
	width: 100%;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    display: flex;
    justify-content: center;
    color: #333;
}

.register-container {
	width: 100%;
    margin: 175px 0px 50px 0px;
    font-family: Arial, sans-serif;
    background-color: #fff;
    display: flex;
    justify-content: center;
    color: #333;
}

.login-box {
    background-color: #fff;
    padding: 25px 40px;
	border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

.logo-img {
    max-width: 100px;
    height: auto;
}

.login-title {
    font-size: 1.5em;
	margin-top: 5px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.woocommerce-form {
    text-align: left;
}

.woocommerce-form-row {
    margin-bottom: 15px;
}

.woocommerce-form-row label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.woocommerce-Input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 1em;
}

.login-button-row {
    margin-top: 0px;
    text-align: center;
}

.woocommerce-button.button.woocommerce-form-login__submit {
    background-color: #b13437;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.woocommerce-button.button.woocommerce-form-login__submit:hover {
    background-color: #b13438;
}

.woocommerce-LostPassword {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9em;
}

.forgot-password-link {
    color: #000;
    text-decoration: none;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

.register-section {
    padding-top: 0px;
    border-top: 1px solid #eee;
}

.register-text {
    font-size: 14px;
}

.register-text2 {
    font-size: 12px;
}

a.create-account-button {
    display: inline-block;
    background-color: #b13437;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

a.create-account-button:hover {
    background-color: #b13438;
}

a {
	text-decoration: none;
	color: #b13436;
}

label {
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
	font-family: 'Open Sans', sans-serif;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
	font-family: 'Open Sans', sans-serif;
}

fieldset {
	border: none;
}

.woocommerce button.button {
    background: transparent;
    font-family: 'Open Sans', sans-serif;
    padding: 16px 24px;
    border-radius: 30px;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    font-size: 13px;
	color: #242526;
    border: solid 2px #242526;
}

.woo-sidebar .widget input:not([type]), input[type="email"], input[type="number"], input[type="password"], input[type="tel"], input[type="url"], input[type="text"] {
    border-radius: 3px;
    margin-bottom: 10px;
    box-shadow: inherit;
    padding: 6px 12px;
    line-height: 20px;
}

.woocommerce form .form-row .required {
    visibility: visible;
	color: #b13436;
}

header.title h3 {
	font-size: 26px;
    font-family: 'Open Sans', sans-serif;
}

header.woocommerce-Address-title title {
	display: block;
}

address {
    font-style: italic;
    margin: 0 0 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 27px;
	color: #242526;
	font-family: 'Open Sans', sans-serif;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
    border: dashed 3px #1c314c;
    background: transparent;
    line-height: 35px;
    font-size: 25px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    max-width: initial;
	display: block;
}

.woocommerce-MyAccount-navigation ul li.is-active {
    background: #b13436;
}

.woocommerce-MyAccount-navigation ul li {
    background: #686868;
}

.woocommerce-MyAccount-navigation ul li {
    list-style: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    padding: 10px 15px;
    margin-bottom: 4px;
    border-radius: 20px;
	color: #747474;
}

.woocommerce-MyAccount-navigation ul li a {
    color: #ffffff;
	font-family: 'Open Sans', sans-serif;
}

.woocommerce a.button {
    padding: 5px;
	font-size: 18px;
	background: #ccc;
}

form#woocommerce-checkout-form-coupon.checkout_coupon.woocommerce-form-coupon {
	display: block !important;
}

a.showcoupon {
	display: none;
}

ul.category-products {
	margin: 0 0 20px;
    padding: 0 0px 0px 20px;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
    border: 1px solid #e9e9e9;
    background-color: #fcfcfc;
    border-spacing: 0;
    letter-spacing: 0.5px;
    margin: 0 0 20px;
    text-align: left;
    table-layout: fixed;
    width: 100%;
	border-collapse: collapse;
	font-family: 'Open Sans', sans-serif;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td {
    border: 1px solid #e8e7e7;
    padding: 8px 10px;
}

table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table {
	border: 1px solid #e9e9e9;
    background-color: #fcfcfc;
    border-spacing: 0;
    letter-spacing: 0.5px;
    margin: 0 0 20px;
    text-align: left;
    table-layout: fixed;
    width: 100%;
	border-collapse: collapse;
	font-family: 'Open Sans', sans-serif;
}

table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table th {
	border: 1px solid #b13436;
    background: #b13436;
	padding: 10px 10px;
    color: #fff;
	font-family: 'Open Sans', sans-serif;
}

td.woocommerce-orders-table__cell {
	border: 1px solid #e8e7e7;
    padding: 8px 10px;
}

.column-ln-4, .column-ln-8 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
	background-color: transparent;
}

@media screen and (min-width: 48em) {
    table.shop_table_responsive thead {
        display: table-header-group;
    }
	
	table.shop_table_responsive tr th, table.shop_table_responsive tr td {
        text-align: left;
    }
	
	table.shop_table_responsive tr td {
        display: table-cell;
    }	
}

@media (max-width: 500px) {
    .login-box {
        margin: 20px;
        padding: 30px 20px;
    }
}

@media (min-width: 992px) {
	.column-ln-4, .column-ln-8 {
        float: left;
    }
	
    .column-ln-4 {
        width: 25%;
    }
	
	.column-ln-8 {
        width: 75%;
    }
}

/* Popup */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.course-btn {
    background-color: #e8e8e8;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #6c6c6c;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-btn:hover {
    background-color: #d5d5d5;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.course-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.course-btn-sobre {
	width: 100%;
	height: auto;
    background-color: #b13436;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
	font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 14px;
    font-weight: 500;
	text-transform: uppercase;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-btn-sobre:hover {
    background-color: #b13437;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #6c6c6c;
}

#popup-title {
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    padding-right: 40px;
}

#popup-body {
    color: #555;
    line-height: 1.5;
}

#popup-body p {
    margin-bottom: 15px;
}

#popup-body ul {
    margin-left: 20px;
    margin-bottom: 5px;
}

#popup-body li {
    margin-bottom: 8px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container do accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Item individual do accordion */
.accordion-item {
    background: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.accordion-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* Cabeçalho do accordion */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--card-background);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

.accordion-header:hover::before {
    left: 100%;
}

.accordion-header:hover {
    background: rgba(37, 99, 235, 0.02);
}

.accordion-header.active {
    background: rgba(37, 99, 235, 0.05);
    border-bottom: 1px solid var(--border-color);
}

/* Título da pergunta */
.accordion-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
    position: relative;
    z-index: 1;
}

/* Ícone do accordion */
.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    position: relative;
    z-index: 1;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

/* Conteúdo do accordion */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--card-background);
}

.accordion-content.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.accordion-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Animações adicionais */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-item {
    animation: fadeIn 0.5s ease-out;
}

.accordion-item:nth-child(1) { animation-delay: 0.1s; }
.accordion-item:nth-child(2) { animation-delay: 0.2s; }
.accordion-item:nth-child(3) { animation-delay: 0.3s; }
.accordion-item:nth-child(4) { animation-delay: 0.4s; }
.accordion-item:nth-child(5) { animation-delay: 0.5s; }

/* Estados de foco para acessibilidade */
.accordion-header:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.accordion-header:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

img.icon-certificate-jc {
	position: relative;
	margin-bottom: -125px;
	height: auto !important;
}

@media (min-width: 320px) {
	.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
		float: left;
		width: 100%;
	}
	
	.woocommerce-message {
		border: dashed 3px #1c314c;
		background: transparent;
		line-height: 35px;
		font-size: 25px;
		position: relative;
		color: #fff;
		display: flex;
		justify-content: center;
	}

	.woocommerce-info {
		border: dashed 3px #1c314c;
		background: transparent;
		line-height: 35px;
		font-size: 25px;
		position: relative;
		top: 0px;
		display: flex;
		justify-content: center;
	}

	.woocommerce-error {
		border: dashed 3px #1c314c;
		background: transparent;
		line-height: 35px;
		font-size: 25px;
		position: relative;
		top: 70px;
		display: flex;
		justify-content: center;
	}
	
	.woocommerce-ln {
		width: 100%;
		display: block;
		margin-top: 85px;
		margin-bottom: 50px;
	}
	
	.woocommerce-MyAccount-navigation ul {
		margin: 0;
		padding: 0px 0px 20px 0px;
	}
	
	form.woocommerce-ResetPassword.lost_reset_password {
		padding: 80px 20px 25px 20px;
	}
	
	.woocommerce {
		margin: 0px;
	}
	
	.login-container {
		width: 100%;
		margin: 75px 0px 50px 0px;
	}
	
	.testimonials.ebooks {
		padding: 85px 10px 40px 10px;
	}
	
	.logo-sticky img {
		height: 40px;
		top: 7px;
	}
	
	b.text-acad-t {
		font-size: 19px;
	}
	
	.testimonials-container-sobre {
		text-align: center;
		padding: 0px 5px 0px 5px;
	}
	
	.testimonial-content-sobre-bt {
		padding: 0px 35px 0px 35px;
	}
	
	.testimonials-container p.text-bg-jc {
		font-size: 18px;
		color: #4c4c4c;
		line-height: 22px;
		padding: 0px 0px 20px 0px;
	}
	
	.about-content-bg-jc {
		border: 2px solid #ccc;
		border-radius: 15px;
		padding: 10px 15px 15px 5px;
	}
	
	.about-content-bg-jc h3.text-jc {
		font-size: 14px;
		color: #000;
		padding: 5px 0px 0px 15px;
	}
	
	.about-content-bg-jc p.text-jc {
		font-size: 11px;
		color: #ac3435;
		padding: 0px 0px 10px 15px;
	}
	
	.about-content-bg-jc p.text-jc-info {
		font-size: 12px;
        line-height: 16px;
        margin-bottom: 5px;
        padding-left: 28px;
	}
	
	.stats-container-bg-jc {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5rem;
		padding: 5px 0px 5px 0px;
	}
	
	.stat-item-bg-jc {
		text-align: center;
		transition: var(--transition);
	}
	
	.icon-el-card-bg-jc {
		width: 20px;
		margin-bottom: -10px;
	}
	
	.stat-item-bg-jc h3.elc {
		font-size: 15px;
		font-weight: 700;
		color: #6c6c6c;
	}

	.stat-item-bg-jc p.descr {
		color: var(--secondary-color);
		font-weight: 500;
		font-size: 12px;
		line-height: 14px;
		text-align: center;
		padding-left: 0px;
	}
	
	.register-container {
		padding: 0px;
	}
	
	.hero-text h1 {
        font-size: 22px;
		position: relative;
        top: 30px;
    }
	
	.hero-text.oratoria h1 {
        font-size: 22px;
		position: relative;
        top: 0px;
    }
	
	.text-rdmp {
		color: #d3000b !important;
		font-size: 22px;
	}
	
	p.text-insc {
		font-family: 'Myriad Pro Bold', sans-serif;
		font-size: 13px;
		color: #6c6c6c;
		line-height: 1.2;
		margin-top: 10px;
		margin-bottom: 0px;
		font-weight: 700;
	}
	
	p.text-sjr {
		font-family: 'Myriad Pro Bold', sans-serif;
		font-size: 13px;
		color: #6c6c6c;
		line-height: 1.2;
		margin-top: 0px;
		margin-bottom: 0px;
		font-weight: 700;
	}
	
	.text-rd.start-hero {
		font-size: 15px;
	}
	
	strike.text-rd.start-hero {
		font-size: 15px;
	}
	
	b.text-pnl-b {
		font-family: 'Myriad Pro Bold', sans-serif;
		font-size: 20px;
	}
	
	.services-grid-three {
		grid-template-columns: 1fr;
	}
	
	.hero.bg-reelo {
        padding: 40px 10px 0px 10px;
		min-height: auto;
    }
	
	.hero.bg-reelop {
        padding: 35px 0px 0px 0px;
		min-height: auto;
    }
	
	.hero.bg-reel {
        padding: 50px 0px 0px 0px;
		min-height: auto;
    }
	
	.hero.bg-acel {
        padding: 45px 4px 0px 4px;
		min-height: auto;
    }
	
	.hero.bg-acelm {
        padding: 55px 15px 0px 15px;
		min-height: auto;
    }
	
	.hero.bg-coach {
        padding: 60px 0px 25px 0px;
		min-height: auto;
    }

	.hero.bg-reelopi {
        padding: 35px 0px 0px 0px;
    }
	
	.hero.bg-reelopic {
		padding: 35px 0px 0px 0px;
		min-height: auto;
	}
	
	.hero.bg-acad {
        padding: 35px 15px 0px 15px;
		min-height: auto;
    }
	
	.hero.bg-team.pd {
        padding: 45px 10px 0px 10px;
		min-height: auto;
    }
	
	.hero.bg-corp.pd {
        padding: 35px 10px 0px 10px;
		min-height: auto;
    }
	
	.hero-text p.mp {
		margin-top: 110px;
        font-size: 21px;
	}
	
	.hero-text p.acad {
		margin-top: 100px;
        font-size: 21px;
	}
	
	.hero-text h1.coaching {
        font-size: 22px;
		position: relative;
        top: 25px;
    }
	
	.hero-text p.coaching {
		margin-top: 110px;
        font-size: 21px;
		text-align: center;
	}
	
	img.icon-certificate-jc {
		width: 95px !important;
		top: -130px;
		left: 200px;
	}
	
	.banner-oratoria {
        width: 100%;
		padding: 20px;
    }
	
	.about-container.pnl {
		grid-template-columns: 1fr;
		padding: 0px 5px 0px 5px;
		gap: 1rem;
	}
	
	.about-container-jc {
		grid-template-columns: 1fr;
		padding: 0px;
	}
	
	.about-container.orat {
		grid-template-columns: 1fr;
	}
	
	.about-container.oratp {
		grid-template-columns: 1fr;
	}
	
	.about-container.odi {
		grid-template-columns: 1fr;
	}
	
	.about-container.coach {
		grid-template-columns: 1fr;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.topn {
		margin-top: 30px;
		margin-bottom: 30px !important;
	}
	
	.testimonials-grid.grid-five {
		grid-template-columns: 1fr;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.academy {
		margin-top: 20px;
		margin-bottom: 25px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.odisseyai {
		width: 100%;
		margin-top: 30px;
		margin-bottom: 5px !important;
	}
	
	.about-content p.coach {
		font-size: 18px;
	}
	
	.text-wt.size-wt {
		font-size: 25px;
		line-height: 30px;
		padding: 0px 15px 10px 15px;
	}
	
	.text-wt.size-wtp {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 0px;
	}
	
	.title {
		font-family: 'Myriad Pro Bold', sans-serif;
		font-size: 20px;
		font-weight: bold;
		color: #000;
		margin-bottom: 0px;
	}
	
	.title-pnl {
		font-family: 'Myriad Pro Bold', sans-serif;
		font-size: 20px;
		font-weight: bold;
		color: #000;
		margin-bottom: 0px;
		text-align: center;
	}
	
	.title-pnl.mg-line {
		line-height: 22px;
		margin-bottom: 25px;
	}
	
	.subtitle-pnl {
		font-size: 16px;
		color: #666;
		line-height: 16px;
		text-align: center;
	}
	
	.subtitle {
		font-family: 'Myriad Pro Bold', sans-serif;
		font-size: 14px;
		color: #666;
		line-height: 20px;
	}

	.subtitle.ft {
		font-family: 'Myriad Pro Regular', sans-serif;
		font-size: 14px;
		color: #666;
	}
	
	.subtitle-acad {
		font-family: 'Myriad Pro Bold', sans-serif;
		font-size: 14px;
		color: #666;
		line-height: 18px;
	}

	.subtitle-acad-ft {
		font-family: 'Myriad Pro Regular', sans-serif;
		font-size: 14px;
		color: #666;
	}
	
	.btn-comprar-rev {
		font-family: 'Myriad Pro Regular', sans-serif;
		background-color: #ef8800;
		font-size: 10px;
		color: white;
		border: none;
		padding: 8px 20px;
		border-radius: 15px;
		font-weight: bold;
		cursor: pointer;
		transition: background-color 0.3s ease;
	}

	.btn-comprar-rev:hover {
		background-color: #ef8802;
	}
	
	.btn-comprar-remif {
		font-size: 16px;
	}
	
	.link-saiba-mais-remifc {
		font-size: 14px;
	}
	
	.link-saiba-mais-remif {
		font-size: 16px;
	}
	
	.nav-menu {
		gap: 0rem;
	}
	
	h2.title-modal {
		font-size: 18px;
	}
	
	.descr-modal {
		padding:5px;
	}
	
	.descr-modal li {
		font-size: 11px;
	}
	
	.bt-direct {
		font-size: 16px;
	}
	
	.bt-direct-about {
		position: relative;
		bottom: 25px;
		font-size: 16px;
	}
	
	.bt-direct-int-pnl {
		font-size: 10px;
		margin-right: 0px;
	}
	
	.bt-direct-galeria-fotos {
		font-size: 18px;
		margin-right: 0px;
	}
	
	.bt-direct-cliente {
		font-size: 10px;
	}
	
	.bt-direct-wh {
		font-size: 10px;
	}
	
	.bt-direct-wh-odi {
		font-size: 16px;
	}
	
	.link-saiba-mais-pnl {
		font-size: 10px;
	}
	
	.bt-direct-who {
		padding: 15px;
		font-size: 12px;
	}
	
	.bt-direct-whon {
		padding: 8px;
		font-size: 12px;
	}
	
	.bt-direct-eac {
		font-size: 14px;
		margin-right: 0px;
	}
	
	.bt-direct-eaclid {
		font-size: 14px;
	}
	
	.bt-direct-eacm {
		padding: 8px;
		font-size: 12px;
		margin-right: 0px;
	}
	
	.bt-direct-eacmif {
		font-size: 12px;
		margin-right: 0px;
	}
	
	.bt-direct-wh-eac {
		font-size: 14px;
	}
	
	.bt-direct-wh-eacm {
		padding: 8px;
		font-size: 12px;
	}
	
	.bt-direct-wh-eacmif {
		font-size: 12px;
	}
	
	.bt-direct-wh-eacs {
		font-size: 14px;
	}
	
	.bt-direct-wh-eacso {
		padding: 15px;
		font-size: 12px;
		margin-right: 0px;
	}
	
	.bt-inscrever-oratoria {
		padding: 15px;
		font-size: 12px;
		margin-right: 0px;
	}
	
	.bt-amici-editora {
		padding: 4px;
		font-size: 12px;
		margin-right: 0px;
	}
	
	.bt-direct-wh-eacson {
		padding: 8px;
		font-size: 12px;
		margin-right: 0px;
	}
	
	.bt-direct-wh-eacsd {
		font-size: 14px;
	}
	
	.bt-direct-wh-eacsdc {
		font-size: 12px;
	}
	
	.bt-direct-av360 {
		font-size: 12px;
	}
	
	.bt-direct-clima {
		font-size: 12px;
	}
	
	.bt-direct-cea {
		font-size: 12px;
	}
	
	.bt-direct-team {
		font-size: 12px;
	}
	
	.bt-direct-corp {
		font-size: 12px;
	}
	
	.bt-direct-work {
		font-size: 12px;
	}
	
	.bt-direct-wh-diag {
		font-size: 11px;
	}
	
	.bt-direct-wh-clima {
		font-size: 12px;
	}
	
	.bt-direct-wh-cea {
		font-size: 12px;
	}
	
	.bt-direct-wh-team {
		font-size: 12px;
	}
	
	.bt-direct-wh-corp {
		font-size: 12px;
	}
	
	.testimonials-grid.smart-grid {
		display: grid;
	}
	
	.hero-container.smart-grid-none {
		display: none;
	}
	
	section#oque, section#sobrecurso, section#depoimentos, section#duvidas {
		padding: 2rem 3%;
	}
	
	.vdo-yte {
		width: 100%;
		height: auto;
	}
	
	.vdo-yteo {
		width: 100%;
		height: auto;
	}
	
	.vdo-yte-form {
		width: 100%;
		height: 605px;
	}
	
	.vdo-yte-dp {
		width: 100%;
		height: auto;
	}
	
	.about-image img {
		width: 100%;
		height: auto;
	}
	
	.about-image-acad img {
		height: auto;
	}
	
	.about-image-orat img {
		height: auto;
	}
	
	.about-image-odi img {
		height: auto;
	}
	
	.about-image-avc img {
		height: auto;
	}
	
	.about-image-cear img {
		margin-top: 5px;
		padding: 5px;
	}

	.about-image-ceal img {
		margin-top: 5px;
		padding: 5px;
	}
	
	.about-image-coach img {
		padding: 10px;
		border-radius: 50px;
	}
	
	.about-image-master img {
		height: auto;
	}
	
	.about-content h2 {
		font-size: 27px;
	}
	
	.about-content h2.acad {
		font-size: 27px;
		line-height: 29px;
	}
	
	.about-content h2.avc {
		font-size: 27px;
		line-height: 29px;
	}
	
	.about-content h2.cea {
		font-size: 25px;
		line-height: 27px;
	}
	
	.about-content h2.sobre {
		font-size: 27px;
		line-height: 35px;
		padding: 0px 10px 0px 10px;
	}
	
	.about-content h2.sobre b {
		font-size: 27px;
		line-height: 29px;
	}
	
	.about-content h2.av360 {
		margin-top: 0px;
		font-size: 27px;
		line-height: 29px;
		padding: 0px 10px 0px 10px;
	}
	
	.about-content h2.odi {
		font-size: 27px;
		line-height: 29px;
	}
	
	.about-content h2.coach {
		font-size: 27px;
	}
	
	.text-rd.ft-trans.coach {
		font-size: 27px;
	}
	
	.about-content h2.orat {
		font-size: 27px;
	}
	
	.about-content h2.elcad {
		font-size: 27px;
		margin-top: 0px;
		padding: 0px 10px 0px 10px;
	}
	
	.stats-container-o {
        grid-template-columns: 1fr;
		gap: 1rem;
    }
	
	.testimonials-container.bg-oratk3 {
		margin: 35px 5px 0px 5px;
	}
	
	.testimonials-container.bg-amici-editora {
		margin: 0px 5px 0px 5px;
	}
	
	.content-box {
		padding: 20px 10px 0px 10px;
	}
	
	.content-box-corp {
		padding: 0px 10px 0px 10px;
	}
	
	.content-box-sobre img {
		padding: 0px 10px 0px 10px;
	}
	
	.content-box-acad {
		grid-template-columns: 1fr;
		padding: 0px 10px 0px 10px;
	}
	
	.banner-pnl {
        width: 100%;
        padding: 25px 5px 30px 5px;
    }
	
	.banner-blaci {
        width: 100%;
        padding: 15px;
    }
	
	.banner-avc {
        width: 100%;
        padding: 15px;
    }
	
	.banner-work {
        width: 100%;
        padding: 15px;
    }
	
	.banner-clima {
        width: 100%;
        padding: 15px;
    }
	
	.banner-cea {
        width: 100%;
        padding: 15px;
    }
	
	.banner-team {
        width: 100%;
        padding: 15px;
    }
	
	.banner-corp {
        width: 100%;
        padding: 15px;
    }
	
	.hero-text h1.acad {
		font-size: 22px;
		margin-top: 0px;
		margin-bottom: 0px;
	}
	
	h1.elcad {
		margin-top: 0px;
		margin-bottom: 10px;
		font-size: 22px;
	}
	
	.hero-text p.elcad {
		margin-top: 120px;
        font-size: 21px;
		text-align: center;
	}
	
	.hero-text p.elcad b {
		font-size: 21px;
	}
	
	.number-acad {
		font-family: 'Myriad Pro Bold', sans-serif;
        font-size: 18px;
		font-weight: 700;
		color: #3e6898;
    }
	
    .text-acad {
        font-size: 16px;
		color: #3e6898;
    }
	
	.text-corp {
        font-size: 16px;
		color: #3e6898;
    }
	
	.text-acady {
        font-size: 16px;
		color: #4d4d4e;
    }
	
	.text-work {
        font-size: 16px;
		color: #374660;
    }

	.banner-acad {
        width: 100%;
        padding: 15px;
    }
	
	.btn-comprar-re {
		font-size: 12px;
		margin-right: 0px;
	}
	
	.link-saiba-mais-re {
		font-size: 12px;
	}
	
	p.subtext-odi {
		font-family: 'Myriad Pro Bold', sans-serif;
		margin-top: 95px;
        font-size: 21px;
	}
	
	p.subtext-odi-date {
		font-family: 'Myriad Pro Bold', sans-serif;
		font-size: 20px;
		color: #70141d;
	}
	
	p.subtext-odii-date {
		font-family: 'Myriad Pro Bold', sans-serif;
		font-size: 20px;
		color: #216646;
	}
	
	.about-content.odi-l {
		padding: 0px 10px 0px 10px;
	}

	.about-content.odi-r {
		padding: 0px 10px 0px 10px;
	}
	
	.about-content.avc-l {
		padding: 0px 10px 0px 10px;
	}
	
	.about-content p.text-av360 {
		padding: 0px 10px 0px 10px;
	}
	
	.about-content p.text-cea {
		padding: 0px 10px 0px 10px;
	}
	
	.about-content p.text-pdc {
		padding: 0px 10px 0px 10px;
	}
	
	.about-content p.text-pdct {
		padding: 0px 10px 0px 10px;
	}
	
	.about-content p.text-sobre {
		padding: 0px 10px 0px 10px;
	}

	.about-content.avc-r {
		padding: 0px 10px 0px 10px;
	}
	
	.hero-text h1.competencia {
		margin-top: 0px;
		font-size: 22px;
	}
	
	.hero-text p.competencia {
		margin-top: 100px;
        font-size: 21px;
	}
	
	.hero-text h1.clima {
		margin-top: 0px;
		font-size: 22px;
		padding: 0px 115px 0px 0px;
	}
	
	.hero-text p.clima {
		font-size: 21px;
		margin-top: 95px;
	}
	
	.hero-text h1.title-av {
		margin-top: 0px;
		font-size: 22px;
	}
	
	.hero-text p.title-av {
		margin-top: 115px;
		padding: 0px 20px 0px 20px;
        font-size: 21px;
	}
	
	.hero-text h1.title-cea {
		margin-top: 0px;
		font-size: 22px;
	}
	
	.hero-text p.title-cea {
		margin-top: 115px;
        font-size: 21px;
	}
	
	.hero-text h1.title-team {
		margin-top: 0px;
		font-size: 2rem;
	}
	
	.hero-text h1.title-work {
		margin-top: 0px;
		font-size: 2rem;
	}
	
	.hero-text p.title-avc {
		font-size: 13px;
		margin-bottom: 0px;
	}
	
    .box-text-top-sobre h1.sobre {
        font-size: 22px;
        position: relative;
        top: 25px;
    }
	
	.box-text-top-sobre p.sobre {
		margin-top: 115px;
        font-size: 21px;
	}
	
	.box-text-top-galeria h1.galeria {
        font-size: 22px;
    }
	
	.box-text-top-galeria p.galeria {
		margin-top: 125px;
        font-size: 21px;
	}
	
	.box-text-top-home h1.home {
		font-size: 22px;
        position: relative;
        top: 10px;
    }
	
	.box-text-top-home p.home {	
		margin-top: 75px;
        font-size: 21px;
	}
	
	.box-text-top-cliente h1.cliente {
        font-size: 24px;
		margin-bottom: 40px;
    }
	
	.box-text-top-cliente p.cliente {
		margin-bottom: 0px;
		font-size: 17px;
	}
	
	.box-text-top-clientes h1.clientes {
        font-size: 22px;
    }
	
	.box-text-top-clientes p.clientes {
		margin-top: 115px;
        font-size: 21px;
	}
	
	.box-text-top-downloads h1.downloads {
        font-size: 22px;
		padding: 0px 125px 0px 0px;
    }
	
	.box-text-top-downloads p.downloads {
		margin-top: 85px;
        font-size: 21px;
	}
	
	.box-text-top-blog h1.blog {
        font-size: 22px;
    }
	
	.box-text-top-erro404 h1.erro404 {
		font-size: 22px;
    }
	
	.box-text-top-search h1.search {
		font-size: 22px;
    }
	
	.box-text-top-blog p.blog {
		margin-top: 125px;
        font-size: 21px;
	}
	
	.box-text-top-erro404 p.erro404 {
		margin-top: 125px;
        font-size: 21px;
	}
	
	.box-text-top-search p.search {
		margin-top: 125px;
        font-size: 21px;
	}
	
	.hero-text p.title-downloads {
		margin-bottom: 0px;
		font-size: 16px;
	}
	
	.hero-text p.title-blog {
		margin-bottom: 0px;
		font-size: 13px;
	}
	
	.hero-text h1.title-blog {
		margin-top: 0px;
		margin-bottom: 0px;
	}

	.testimonials-grid-av360 {
        grid-template-columns: 1fr;
		padding: 15px;
    }
	
	.testimonials-grid-work {
        grid-template-columns: 1fr;
		padding: 15px;
    }
	
	.card-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
	
	.testimonial-content p.ftav360t {
		margin-bottom: 15px;
	}
	
	.hero-container.sobre {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	
	.hero-container.galeria-fotos {
		margin-top: 0px;
	}
	
	.hero-container.home {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	
	.hero-container.area-cliente {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	
	.hero-container.clientes {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	
	.testimonials-grid-sobre {
		display: inline-block;
    }
	
	.testimonials-grid-sobre-two {
		margin-top: 0px;
		display: inline-block;
    }
	
	.testimonial-card.mg-box-none.bg-pn-box {
		width: 100%;
		margin-top: 25px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.coaching {
		margin-top: 30px;
		margin-bottom: 30px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.master {
		margin-top: 30px;
		margin-bottom: 30px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.bt {
		margin-top: 15px;
	}
	
	.testimonials-container h2 {
		font-size: 23px;
		line-height: 30px;
	}
	
	.hero.bg-start-oratoria {
		padding: 75px 10px 30px 10px;
		min-height: 0vh;
	}
	
	.bg-start-oratoria-pnl {
		background-position-y: 50px;
		padding: 35px 15px 40px 15px;
		background-size: 100%;
	}
	
	.hero.bg-start-pnl {
		background-position-y: 50px;
		background-size: 100%;
		padding: 50px 15px 10px 15px;
		min-height: 0vh;
	}
	
	.hero.bg-start-master {
		background-position-y: 50px;
		background-size: 100%;
		padding: 55px 5% 0px;
		min-height: 0vh;
	}
	
	.hero.bg-start-coaching {
		padding: 60px 10px 30px 10px;
		min-height: 0vh;
	}
	
	.hero.bg-start-academy {
		background-size: 100%;
		padding: 75px 10px 30px 10px;
		min-height: 0vh;
	}
	
	.hero.bg-start-odisseyai {
		padding: 55px 10px 25px 10px;
		min-height: 0vh;
	}
	
	.hero.bg-start-odisseyaii {
		padding: 55px 10px 30px 10px;
		min-height: 0vh;
	}
	
	.hero.bg-start-lideres {
		background-position-y: 50px;
		padding: 60px 10px 35px 10px;
		min-height: 0vh;
	}
	
	.hero.bg-start-competencia {
		background-position-y: 50px;
		padding: 75px 15px 40px 15px;
		min-height: 0vh;
	}
	
	.hero.bg-start-desempenho {
		background-position-y: 50px;
		padding: 65px 15px 45px 15px;
		min-height: 0vh;
	}
	
	.hero.bg-start-av360 {
		background-position-y: 50px;
		padding: 60px 15px 40px 15px;
		min-height: 0vh;
	}
	
	.hero.bg-start-clima {
		background-position-y: 50px;
		padding: 55px 15px 45px 15px;
		min-height: 0vh;
	}
	
	.hero.bg-start-cea {
		background-position-y: 50px;
		padding: 65px 15px 50px 15px;
		min-height: 0vh;
	}
	
	.hero.bg-start-team {
		background-position-y: 50px;
		padding: 75px 10px 10px 10px;
		min-height: 0vh;
	}
	
	.hero.bg-start-corp {
		background-position-y: 50px;
		padding: 60px 15px 40px 15px;
		min-height: 0vh;
	}
	
	.hero.bg-start-sobre {
		padding: 60px 10px 8px 10px;
		min-height: 0vh;
	}
	
	.hero.bg-start-galeria-fotos {
		background-position-y: 50px;
		padding: 70px 20px 30px 20px;
		min-height: 0vh;
	}
	
	.hero.bg-start-galeria-fotos-empresariais {
		background-position-y: 50px;
		padding: 70px 20px 30px 20px;
		min-height: 0vh;
	}
	
	.hero.bg-start-home {
		padding: 50px 10px 30px 10px;
		min-height: 0vh;
	}
	
	.hero.bg-start-area-cliente {
		padding: 35px 20px 50px 20px;
		min-height: 0vh;
	}
	
	.hero.bg-start-clientes {
		background-position-y: 50px;
		padding: 60px 15px 35px 15px;
		min-height: 0vh;
	}
	
	.hero.bg-start-downloads {
		padding: 40px 10px 30px 10px;
		min-height: 0vh;
	}
	
	.hero.bg-start-blog {
		background-position-y: 50px;
		padding: 70px 15px 30px 15px;
		min-height: 0vh;
	}
	
	.hero.bg-start-erro404 {
		background-position-y: 50px;
		padding: 55px 15px 40px 15px;
		min-height: 0vh;
	}
	
	.hero.bg-start-search {
		background-position-y: 50px;
		padding: 55px 15px 40px 15px;
		min-height: 0vh;
	}
	
	.hero.bg-start-work {
		background-position-y: 50px;
		padding: 55px 10px 20px 10px;
		min-height: 0vh;
	}
	
	.box-text-top-oratoria-online {
		padding: 0px 115px 0px 0px;
	}
	
	.box-text-top-oratoria-online h1.oratoria {
        font-size: 22px;
    }
	
	.box-text-top-oratoria-online p.oratoria {
		margin-top: 50px;
        font-size: 21px;
	}
	
	.box-text-top-oratoria-pnl {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-oratoria-pnl h1.oratoria-pnl {
        font-size: 20px;
    }
	
	.box-text-top-oratoria-pnl p.oratoria-pnl {
		margin-top: 120px;
        font-size: 21px;
	}
	
	h1.curso.subtitle {
		font-size: 18px !important;
	}
	
	.box-text-top-practitioner {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-practitioner h1.pnl {
        font-size: 20px;
    }
	
	.box-text-top-practitioner p.pnl {
		margin-top: 120px;
        font-size: 21px;
	}
	
	.box-text-top-master {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-coaching {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-academy {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-odisseyai {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-odisseyaii {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-lideres {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-competencia {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-clima {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-av360 {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-cea {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-desempenho {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-desempenho h1.desempenho {
        font-size: 22px;
    }
	
	.box-text-top-desempenho p.desempenho {
		margin-top: 110px;
        font-size: 21px;
	}
	
	.box-text-top-work {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-work h1.work {
        font-size: 22px;
    }
	
	.box-text-top-work p.work {
		margin-top: 95px;
        font-size: 21px;
	}
	
	.box-text-top-team {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-team h1.team {
		margin-top: 0px;
        font-size: 22px;
    }
	
	.box-text-top-team p.team {
		margin-top: 115px;
        font-size: 21px;
	}
	
	.box-text-top-corp {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-corp h1.corp {
        font-size: 22px;
    }
	
	.box-text-top-corp p.corp {
		margin-top: 105px;
        font-size: 21px;
	}
	
	.box-text-top-sobre {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-galeria {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-home {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-cliente {
		padding: 0px 125px 0px 0px;
	}
	
	.box-text-top-clientes {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-downloads {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-blog {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-erro404 {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-search {
		padding: 0px 0px 0px 0px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria-online {
		margin-top: 25px;
		margin-bottom: 15px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria {
		margin-top: 35px;
		margin-bottom: 15px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.topnl {
		width: 100%;
		border-radius: 35px;
		text-align: center;
		margin: 40px 0px 15px 0px;
		padding: 20px 25px 10px 25px;
		box-shadow: var(--shadow);
		transition: all 0.3s ease;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.master {
		margin-top: 35px;
		margin-bottom: 15px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.coaching {
		margin-top: 35px;
		margin-bottom: 5px !important;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.academy {
		width: 100%;
		border-radius: 35px;
		margin: 35px 0px 45px 0px;
		padding: 30px 15px 30px 15px;
		text-align: center;
		transition: all 0.3s ease;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.odisseya {
		margin-top: 20px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.lideres {
		width: 100%;
		background: #f7f6f4 !important;
		border-radius: 35px;
		margin: 35px 0px 0px 0px;
		padding: 25px 10px 30px 10px;
		text-align: center;
		transition: all 0.3s ease;
	}
	
	b.text-lideres {
		font-family: 'Myriad Pro Bold', sans-serif;
		font-size: 18px;
	}
	
	p.text-lideres {
		font-family: 'Myriad Pro Regular', sans-serif;
		margin-top: 5px;
		margin-bottom: 25px;
		font-size: 14px;
	}
	
	.testimonial-card.mg-box-none.bg-competencia-box {
		margin-top: 30px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.clima {
		margin-top: 35px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.av360 {
		margin-top: 35px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.cea {
		margin-top: 30px;
		padding: 20px 35px 30px 35px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.desempenho {
		margin-top: 30px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.work {
		margin-top: 30px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.team {
		margin-top: 25px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.corp {
		margin-top: 30px;
	}
	
	.box-menu {
		display: initial;
	}
	
	.sticky-header-top {
		display: none;
	}
	
	.sticky-header {
		top: 0px;
	}
	
	.about-image-acad.on-img {
		display: none;
	}
	
	.about-image-acad.off-img {
		display: initial;
	}
	
	.about-image-ceal.on-img {
		display: none;
	}
	
	.about-image-ceal.off-img {
		display: initial;
	}
}

@media (min-width: 360px) {
	.hero.bg-start-home {
		padding: 55px 10px 40px 10px;
	}
	
	.hero-text p.competencia {
        margin-top: 125px;
        font-size: 21px;
    }
	
	.box-text-top-downloads h1.downloads {
        font-size: 22px;
		padding: 0px 180px 0px 0px;
    }
	
	.banner-oratoria {
		padding: 35px;
    }
	
	.hero.bg-acel {
        padding: 45px 25px 0px 25px;
    }
	
	.hero-text p.elcad {
		margin-top: 135px;
	}
	
	.hero-text p.mp {
        margin-top: 120px;
	}
	
	.box-text-top-home p.home {	
		margin-top: 100px;
	}
	
	.hero.bg-start-sobre {
		padding: 80px 10px 30px 10px;
	}
	
	.hero.bg-start-clientes {
		padding: 75px 15px 35px 15px;
	}
	
	.box-text-top-clientes p.clientes {
        margin-top: 125px;
        font-size: 21px;
    }
	
	.hero.bg-start-galeria-fotos {
		padding: 80px 20px 45px 20px;
	}
	
	.hero.bg-start-galeria-fotos-empresariais {
		padding: 80px 20px 45px 20px;
	}
	
	.hero.bg-start-blog {
		padding: 75px 15px 35px 15px;
	}
	
	.hero.bg-start-erro404 {
		padding: 75px 15px 35px 15px;
	}
	
	.hero.bg-start-search {
		padding: 75px 15px 35px 15px;
	}
	
	.hero.bg-start-downloads {
		padding: 55px 10px 35px 10px;
	}
	
	.box-text-top-downloads p.downloads {
        margin-top: 100px;
        font-size: 21px;
    }
	
	.hero.bg-start-area-cliente {
		padding: 45px 20px 65px 20px;
	}
	
	.hero.bg-start-oratoria {
		padding: 75px 10px 30px 10px;
	}
	
	.box-text-top-oratoria-online p.oratoria {
        margin-top: 75px;
	}
	
	.hero.bg-start-pnl {
		padding: 75px 15px 10px 15px;
	}
	
	.hero.bg-start-master {
		padding: 70px 5% 0px;
	}
	
	.hero.bg-start-coaching {
		padding: 70px 20px 20px 20px;
	}
	
	.hero.bg-start-academy {
		padding: 85px 10px 30px 10px;
	}
	
	.hero.bg-start-odisseyai {
		padding: 65px 15px 35px 15px;
	}
	
	p.subtext-odi {
		margin-top: 115px;
		padding: 0px 20px 0px 20px;
	}
	
	.hero.bg-start-odisseyaii {
		padding: 65px 20px 40px 20px;
	}
	
	.hero.bg-start-lideres {
		padding: 70px 10px 40px 10px;
	}
	
	.hero-text p.acad {
        margin-top: 120px;
        font-size: 21px;
    }
	
	.hero.bg-start-competencia {
		padding: 75px 15px 45px 15px;
	}
	
	.hero.bg-start-clima {
		padding: 60px 15px 45px 15px;
	}
	
	.hero.bg-start-av360 {
		padding: 70px 20px 40px 20px;
	}
	
	.hero-text p.title-av {
        margin-top: 130px;
        padding: 0px 0px 0px 0px;
        font-size: 21px;
    }
	
	.hero.bg-start-cea {
		padding: 80px 15px 45px 15px;
	}
	
	.hero-text p.title-cea {
		margin-top: 120px;
        font-size: 21px;
	}
	
	.hero.bg-start-desempenho {
		padding: 75px 15px 45px 15px;
	}
	
	.hero.bg-start-work {
		padding: 60px 10px 15px 10px;
	}
	
	.box-text-top-work p.work {
		margin-top: 115px;
	}
	
	.hero.bg-start-team {
		padding: 85px 10px 10px 10px;
	}
	
	.hero.bg-start-corp {
		padding: 70px 10px 40px 10px;
	}
	
	b.text-acad-t {
		font-size: 20px;
	}
	
	.box-text-top-sobre p.sobre {
		margin-top: 135px;
	}
	
	img.icon-certificate-jc {
		left: 245px;
	}
	
	.box-text-top-oratoria-online {
		padding: 0px 130px 0px 0px;
	}
	
	.box-text-top-oratoria-pnl {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-practitioner {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-coaching {
		padding: 0px 0px 0px 0px;
	}
	
	.hero-text p.coaching {
		margin-top: 125px;
	}
	
	.box-text-top-academy {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-odisseyai {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-odisseyaii {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-lideres {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-competencia {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-clima {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-av360 {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-cea {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-desempenho {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-work {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-team {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-team p.team {
        margin-top: 130px;
    }
	
	.box-text-top-corp {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-corp p.corp {
        margin-top: 120px;
    }
	
	.box-text-top-sobre {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-galeria {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-galeria p.galeria {
        margin-top: 150px;
        font-size: 21px;
    }
	
	.box-text-top-cliente {
		padding: 0px 185px 0px 0px;
	}
	
	.box-text-top-clientes {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-downloads {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-blog {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-erro404 {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-search {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-blog p.blog {
        margin-top: 145px;
        font-size: 21px;
    }
	
	.box-text-top-erro404 p.erro404 {
        margin-top: 125px;
        font-size: 21px;
    }
	
	.box-text-top-search p.search {
		margin-top: 125px;
        font-size: 21px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria-online {
		margin-top: 20px;
	}
	
	.box-text-top-oratoria-pnl p.oratoria-pnl {
		margin-top: 145px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria {
		margin-top: 30px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.topnl {
		margin: 50px 0px 45px 0px;
		padding: 20px 35px 15px 35px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.master {
		margin-top: 35px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.coaching {
		margin-top: 35px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.academy {
		margin: 35px 0px 45px 0px;
        padding: 30px 35px 30px 35px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.lideres {
		margin: 30px 0px 0px 0px;
		padding: 25px 25px 30px 25px;
	}
	
	.testimonial-card.mg-box-none.bg-competencia-box {
		margin-top: 35px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.clima {
		margin-top: 35px;
	}
	
	.hero-text p.clima {
		font-size: 21px;
		margin-top: 120px;
	}
	
	.hero-text h1.clima {
		padding: 0px 185px 0px 0px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.av360 {
		margin-top: 30px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.cea {
		margin-top: 30px;
		padding: 20px 10px 30px 10px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.desempenho {
		margin-top: 30px;
	}
	
	.box-text-top-desempenho p.desempenho {
        margin-top: 125px;
        font-size: 21px;
    }
	
	.testimonial-card.mg-box-none.bg-coach-box.work {
		margin-top: 30px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.team {
		margin-top: 30px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.corp {
		margin-top: 30px;
	}
}

@media (min-width: 400px) {
	.hero.bg-start-home {
		padding: 80px 20px 40px 20px;
	}
	
	.box-text-top-downloads h1.downloads {
        font-size: 22px;
		padding: 0px 235px 0px 0px;
    }
	
	.hero-text p.elcad {
		margin-top: 160px;
	}
	
	.box-text-top-home p.home {
        margin-top: 100px;
    }
	
	.hero.bg-start-clientes {
		padding: 80px 15px 40px 15px;
	}
	
	.box-text-top-clientes p.clientes {
        margin-top: 140px;
        font-size: 21px;
    }
	
	.hero.bg-start-sobre {
		padding: 85px 20px 40px 20px;
	}
	
	.hero.bg-start-clima {
		padding: 85px 15px 50px 15px;
	}
	
	.hero-text h1.clima {
        padding: 0px 0px 0px 0px;
    }
	
	.hero-text p.clima {
        font-size: 21px;
        margin-top: 140px;
    }
	
	.hero.bg-start-galeria-fotos {
		padding: 85px 20px 65px 20px;
	}
	
	.hero.bg-start-galeria-fotos-empresariais {
		padding: 85px 20px 65px 20px;
	}
	
	.hero.bg-start-blog {
		padding: 95px 20px 40px 20px;
	}
	
	.hero.bg-start-erro404 {
		padding: 75px 20px 40px 20px;
	}
	
	.hero.bg-start-search {
		padding: 75px 20px 40px 20px;
	}
	
	.hero.bg-start-downloads {
		padding: 60px 10px 35px 10px;
	}
	
	.hero.bg-start-area-cliente {
		padding: 55px 20px 85px 20px;
	}
	
	.hero.bg-start-oratoria {
		padding: 95px 10px 30px 10px;
	}
	
	.box-text-top-oratoria-online p.oratoria {
        margin-top: 75px;
    }
	
	.hero.bg-start-pnl {
		padding: 75px 15px 0px 15px;
	}
	
	.box-text-top-practitioner p.pnl {
		margin-top: 145px;
	}
	
	.hero.bg-start-master {
		padding: 85px 5% 0px;
	}
	
	.hero.bg-start-coaching {
		padding: 85px 20px 30px 20px;
	}
	
	.hero.bg-start-academy {
		padding: 85px 10px 40px 10px;
	}
	
	.hero.bg-start-odisseyai {
		padding: 70px 20px 40px 20px;
	}
	
	p.subtext-odi {
        margin-top: 135px;
		padding: 0px 35px 0px 35px;
    }
	
	.hero.bg-start-odisseyaii {
		padding: 70px 20px 40px 20px;
	}
	
	.hero.bg-start-lideres {
		padding: 75px 10px 40px 10px;
	}
	
	.hero-text p.acad {
        margin-top: 135px;
        font-size: 21px;
    }
	
	.hero.bg-start-competencia {
		padding: 85px 15px 50px 15px;
	}
	
	.hero.bg-start-av360 {
		padding: 85px 20px 45px 20px;
	}
	
	.hero.bg-start-cea {
		padding: 85px 15px 50px 15px;
	}
	
	.hero.bg-start-desempenho {
		padding: 85px 15px 45px 15px;
	}
	
	.box-text-top-desempenho p.desempenho {
        margin-top: 140px;
        font-size: 21px;
    }
	
	.hero.bg-start-work {
		padding: 90px 10px 15px 10px;
	}
	
	.box-text-top-work p.work {
		margin-top: 105px;
	}
	
	.hero.bg-start-team {
		padding: 100px 10px 10px 10px;
	}
	
	.box-text-top-team p.team {
        margin-top: 145px;
    }
	
	.hero.bg-start-corp {
		padding: 75px 10px 45px 10px;
	}
	
	.box-text-top-corp p.corp {
        margin-top: 135px;
    }
	
	img.icon-certificate-jc {
		left: 285px;
	}
	
	.box-text-top-oratoria-online {
		padding: 0px 175px 0px 0px;
	}
	
	.box-text-top-oratoria-pnl {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-practitioner {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-master {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-coaching {
		padding: 0px 0px 0px 0px;
	}
	
	.hero-text p.coaching {
		margin-top: 135px;
	}
	
	.box-text-top-academy {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-odisseyai {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-odisseyaii {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-lideres {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-competencia {
		padding: 0px 0px 0px 0px;
	}
	
	.hero-text p.competencia {
        margin-top: 145px;
        font-size: 21px;
    }
	
	.box-text-top-clima {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-av360 {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-cea {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-desempenho {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-work {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-team {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-corp {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-sobre {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-sobre p.sobre {
		margin-top: 155px;
	}
	
	.box-text-top-galeria {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-galeria p.galeria {
        margin-top: 175px;
        font-size: 21px;
    }
	
	.box-text-top-cliente {
		padding: 0px 225px 0px 0px;
	}
	
	.box-text-top-clientes {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-downloads {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-downloads p.downloads {
        margin-top: 115px;
        font-size: 21px;
    }
	
	.box-text-top-blog {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-erro404 {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-search {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-blog p.blog {
        margin-top: 150px;
        font-size: 21px;
    }
	
	.box-text-top-erro404 p.erro404 {
        margin-top: 150px;
        font-size: 21px;
    }
	
	.box-text-top-search p.search {
		margin-top: 150px;
        font-size: 21px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria-online {
		margin-top: 30px;
	}
	
	.box-text-top-oratoria-pnl p.oratoria-pnl {
		margin-top: 165px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria {
		margin-top: 30px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.topnl {
		margin: 25px 0px 35px 0px;
		padding: 25px 55px 15px 55px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.master {
		margin-top: 35px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.coaching {
		margin-top: 35px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.academy {
		margin: 35px 0px 55px 0px;
        padding: 30px 45px 30px 45px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.lideres {
		margin: 30px 0px 0px 0px;
	}
	
	.testimonial-card.mg-box-none.bg-competencia-box {
		margin-top: 35px;
		padding: 25px 15px 35px 15px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.clima {
		margin-top: 30px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.av360 {
		margin-top: 30px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.cea {
		margin-top: 30px;
		padding: 20px 25px 30px 25px;
	}
	
	.hero-text p.title-cea {
        margin-top: 145px;
        font-size: 21px;
    }
	
	.testimonial-card.mg-box-none.bg-coach-box.desempenho {
		margin-top: 30px;
        padding: 20px 15px 30px 15px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.work {
		margin-top: 30px;
		padding: 20px 15px 30px 15px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.team {
		margin-top: 30px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.corp {
		margin-top: 30px;
	}
}

@media (min-width: 768px) {
	.hero.bg-start-lideres {
		padding: 35px 20px 15px 20px;
	}
	
	form.woocommerce-ResetPassword.lost_reset_password {
		padding: 0px 25px 25px 25px;
	}
	
	.woocommerce {
		margin: 100px 10px 0px 10px;
	}
	
	.bt-direct-wh-eacson {
		padding: 10px;
		font-size: 20px;
	}
	
	.bt-direct-whon {
        padding: 10px;
        font-size: 20px;
    }
	
	.banner-master {
        width: 100%;
		padding: 35px 80px 40px 80px;
	}
	
	.hero-text h1.acad {
        font-size: 26px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
	
	.hero-text p.acad {
        margin-top: 30px;
        font-size: 22px;
    }
	
	.hero.bg-start-clientes {
		padding: 50px 25px 25px 25px;
	}
	
	.hero.bg-start-sobre {
		padding: 30px 25px 5px 25px;
	}
	
	.hero.bg-start-area-cliente {
		padding: 10px 25px 0px 25px;
	}
	
	.hero.bg-start-clima {
		padding: 30px 25px 20px 25px;
	}
	
	.hero.bg-start-av360 {
		padding: 35px 20px 0px 20px;
	}
	
	.hero.bg-start-competencia {
		padding: 30px 20px 5px 20px;
	}
	
	.hero.bg-start-galeria-fotos {
		padding: 45px 20px 150px 20px;
	}
	
	.hero.bg-start-galeria-fotos-empresariais {
		padding: 45px 20px 150px 20px;
	}
	
	.hero.bg-start-coaching {
		background-size: cover;
		background-position: right;
		background-position-x: -30px;
		padding: 30px 20px 20px 20px;
	}
	
	.hero.bg-start-cea {
		padding: 25px 20px 5px 20px;
	}
	
	.hero.bg-start-desempenho {
		padding: 35px 20px 0px 20px;
	}
	
	.hero.bg-start-academy {
		background-size: cover;
		background-position: right;
		background-position-y: 50px;
        background-position-x: -485px;
		padding: 35px 20px 15px 20px;
	}
	
	.hero.bg-start-corp {
		padding: 15px 20px 25px 20px;
		background-size: cover;
	}
	
	.hero.bg-start-work {
		padding: 40px 20px 0px 20px;
		background-size: cover;
	}
	
	.hero.bg-start-team {
		padding: 40px 25px 0px 25px;
	}
	
	.hero.bg-start-oratoria {
		padding: 55px 25px 0px 25px;
		background-size: cover;
        background-position-x: -475px;
	}
	
	.hero.bg-start-blog {
		padding: 65px 25px 65px 25px;
	}
	
	.hero.bg-start-erro404 {
		padding: 75px 25px 135px 25px;
	}
	
	.hero.bg-start-search {
		padding: 75px 25px 135px 25px;
	}
	
	.hero.bg-start-home {
		padding: 45px 20px 35px 20px;
	}
	
	.box-text-top-home {
        padding: 0px 395px 0px 0px;
    }
	
	.hero.bg-start-master {
		background-size: cover;
		background-position: right;
		padding: 35px 20px 15px 20px;
	}
	
	.title-pnl {
		text-align: left;
	}
	
	.subtitle-pnl {
		text-align: left;
		padding: 0px 10px 0px 0px;
	}
	
	.testimonials-container p.text-bg-jc {
		padding: 0px 75px 20px 75px;
	}
	
	b.text-lideres {
		font-size: 18px;
	}
	
	p.text-lideres {
		font-size: 17px;
	}
	
	.about-content-bg-jc h3.text-jc {
		font-size: 28px;
	}
	
	.about-content-bg-jc p.text-jc {
		font-size: 12px;
	}
	
	.about-content-bg-jc p.text-jc-info {
		font-size: 15px;
		line-height: 20px;
	}
	
	.icon-el-card-bg-jc {
		width: 35px;
	}
	
	.stat-item-bg-jc h3.elc {
		font-size: 24px;
	}
	
	.stat-item-bg-jc p.descr {
		font-size: 15px;
	}
	
	.testimonials-grid-sobre {
		display: block;
    }
	
	.testimonials-grid-sobre-two {
		display: block;
    }
	
	.testimonial-content-sobre-bt {
		padding: 0px 185px 0px 185px;
	}
	
	.bg-start-oratoria-pnl {
		background-size: cover;
	}
	
	.hero.bg-start-downloads {
		padding: 60px 25px 55px 25px;
	}
	
	.hero-text h1.odisseya {
        font-size: 28px;
    }
	
	p.subtext-odi {
        margin-top: 30px;
		padding: 0px;
    }
	
	.hero.bg-start-odisseyai {
		padding: 5px 20px 15px 20px;
	}
	
	.hero.bg-start-odisseyaii {
		padding: 5px 20px 10px 20px;
	}
	
	.hero.bg-start-pnl {
		background-size: cover;
		background-position: right;
		padding: 25px 20px 20px 20px;
	}
	
	.box-text-top-practitioner h1.pnl {
        font-size: 35px;
    }
	
	.box-text-top-practitioner p.pnl {
        margin-top: 40px;
		margin-bottom: 30px;
        font-size: 24px;
		line-height: 30px;
    }
	
	.hero.bg-reelo {
		padding: 60px 55px 0px 55px;
	}
	
	.hero.bg-reelop {
		padding: 25px 0px 25px 0px;
	}
	
	.hero.bg-reel {
		padding: 65px 40px 0px 40px;
	}
	
	.hero.bg-acel {
        padding: 60px 75px 0px 75px;
    }
	
	.hero.bg-acelm {
        padding: 60px 30px 0px 30px;
    }
	
	.hero.bg-coach {
        padding: 55px 85px 0px 85px;
    }
	
	.hero.bg-reelopi {
		padding: 50px 0px 0px 0px;
	}
	
	.hero.bg-reelopic {
		padding: 50px 0px 0px 0px;
		min-height: 100vh;
	}
	
	.hero.bg-acad {
		padding: 55px 35px 0px 35px;
	}
	
	.hero.bg-team.pd {
		padding: 55px 35px 0px 35px;
	}
	
	.hero.bg-corp.pd {
		padding: 55px 50px 0px 50px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box {
		width: 400px;
		margin-top: 20px;
	}
	
	.hero-text h1 {
        font-size: 35px;
    }
	
	.hero-text.oratoria h1 {
        font-size: 35px;
    }
	
	.text-rdmp {
		color: #d3000b !important;
		font-size: 35px;
	}
	
	.hero-text p.mp {
		font-size: 20px;
		margin-top: 45px;
	}
	
	.hero-text h1.coaching {
        font-size: 20px;
		top: 15px;
    }
	
	.hero-text p.coaching {
		font-size: 16px;
		margin-top: 25px;
		text-align: left;
	}
	
	.register-container {
		padding: 0px 100px;
	}
	
	.link-saiba-mais-remifc {
		font-size: 16px;
	}
	
	img.icon-certificate-jc {
		width: 135px !important;
		left: 555px;
	}
	
	.services-grid-three {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.topn {
		width: 345px;
		margin-top: 10px;
		margin-bottom: 10px !important;
	}
	
	h1.curso.subtitle {
		font-size: 22px !important;
	}
	
	.box-text-top-oratoria-online {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-oratoria-online h1.oratoria {
        font-size: 28px;
    }
	
	.box-text-top-oratoria-online p.oratoria {
		font-size: 16px;
		margin-top: 10px;
		margin-bottom: 20px;
	}
	
	.box-text-top-oratoria-pnl {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-oratoria-pnl h1.oratoria-pnl {
        font-size: 28px;
    }
	
	.box-text-top-oratoria-pnl p.oratoria-pnl {
		margin-top: 35px;
	}
	
	.box-text-top-practitioner {
		padding: 0px 370px 0px 0px;
	}
	
	.box-text-top-master {
		padding: 0px 285px 0px 0px;
	}
	
	.box-text-top-coaching {
		padding: 15px 305px 0px 0px;
	}
	
	.box-text-top-academy {
		padding: 0px 225px 0px 0px;
	}
	
	.box-text-top-odisseyai {
		padding: 30px 0px 0px 0px;
	}
	
	.box-text-top-odisseyaii {
		padding: 30px 0px 0px 0px;
	}
	
	.box-text-top-lideres {
		padding: 0px 360px 10px 0px;
	}
	
	.box-text-top-competencia {
		padding: 0px 355px 0px 0px;
	}
	
	.box-text-top-clima {
		padding: 0px 390px 0px 0px;
	}
	
	.box-text-top-av360 {
		padding: 0px 475px 0px 0px;
	}
	
	.box-text-top-cea {
		padding: 0px 0px 0px 0px;
	}
	
	.box-text-top-desempenho {
		padding: 0px 0px 10px 0px;
	}
	
	.box-text-top-desempenho h1.desempenho {
        font-size: 27px;
    }
	
	.box-text-top-desempenho p.desempenho {
		margin-top: 35px;
		font-size: 23px;
	}
	
	.box-text-top-work {
		padding: 0px 350px 5px 0px;
	}
	
	.box-text-top-work h1.work {
        font-size: 20px;
    }
	
	.box-text-top-work p.work {
		font-size: 18px;
		margin-top: 45px;
		margin-bottom: 15px;
	}
	
	.box-text-top-team {
		padding: 0px 395px 5px 0px;
	}
	
	.box-text-top-team h1.team {
        margin-top: 0px;
		font-size: 35px;
    }
	
	.box-text-top-team p.team {
		font-size: 18px;
		margin-top: 40px;
		margin-bottom: 10px;
	}
	
	.box-text-top-corp {
		padding: 15px 445px 0px 0px;
	}
	
	.box-text-top-corp h1.corp {
		font-size: 28px;
    }
	
	.box-text-top-corp p.corp {
		font-size: 16px;
		margin-top: 40px;
		margin-bottom: 25px;
	}
	
	.box-text-top-sobre {
		padding: 0px 445px 10px 0px;
	}
	
	.box-text-top-galeria {
		padding: 0px 0px 10px 0px;
	}
	
	.box-text-top-cliente {
		padding: 0px 0px 10px 0px;
	}
	
	.box-text-top-clientes {
		padding: 0px 330px 10px 0px;
	}
	
	.box-text-top-downloads {
		padding: 0px 375px 0px 0px;
	}
	
	.box-text-top-blog {
		padding: 0px 335px 10px 0px;
	}
	
	.box-text-top-erro404 {
		padding: 0px 335px 10px 0px;
	}
	
	.box-text-top-search {
		padding: 0px 335px 0px 0px;
	}
	
	.stats-container-o {
        grid-template-columns: repeat(4, 1fr);
		gap: 2rem;
    }
	
	.testimonial-card.mg-box-none.bg-pn-box.topnl {
		width: 345px;
		margin: 10px 0px 25px 0px;
		padding: 25px 55px 15px 55px;
	}
	
	.testimonials-container h2 {
		font-size: 34px;
		line-height: 40px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.bt {
		margin-top: 25px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.academy {
		width: 445px;
		margin: 25px 0px 25px 0px;
        padding: 30px 25px 30px 25px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.odisseya {
		margin-top: 15px;
		margin-bottom: 20px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.lideres {
		width: 430px;
		margin: 0px 0px 0px 0px;
		padding: 15px 10px 20px 10px;
	}
	
	.testimonial-card.mg-box-none.bg-competencia-box {
		width: 450px;
		margin-top: 0px;
		margin-bottom: 5px !important;
		padding: 15px 15px 25px 15px;
	}
	

	.testimonial-card.mg-box-none.bg-coach-box.clima {
		width: 395px;
		margin-top: 0px;
		margin-bottom: 0px !important;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.av360 {
		width: 415px;
		margin-top: 0px;
		margin-bottom: 20px !important;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.cea {
		width: 395px;
		margin-top: 0px;
		margin-bottom: 10px !important;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.desempenho {
		width: 445px;
		margin-top: 0px;
		margin-bottom: 10px !important;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.work {
		margin-top: 0px;
		width: 345px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.team {
		margin-top: 0px;
		width: 375px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.corp {
		margin-top: 0px;
		width: 345px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.academy {
		width: 445px;
		margin-top: 35px;
		margin-bottom: 20px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.odisseyai {
		margin-top: 0px;
		margin-bottom: 0px !important;
	}
	
	h1.acad {
		margin-top: 50px;
		margin-bottom: 20px;
	}
	
	h1.elcad {
		margin-top: 0px;
		margin-bottom: 35px;
		font-size: 30px;
	}
	
	.hero-text p.elcad {
		font-size: 22px;
		margin-top: 15px;
		text-align: left;
	}
	
	.hero-text p.elcad b {
		font-size: 24px;
	}
	
	.about-content p.coach {
		font-size: 25px;
	}
	
	.text-wt.size-wt {
		font-size: 50px;
		line-height: 60px;
		padding: 0px 35px 10px 35px;
	}
	
	.text-wt.size-wtp {
		font-size: 24px;
		line-height: 34px;
	}
	
	.title {
		font-size: 30px;
	}
	
	.subtitle {
		font-size: 20px;
		line-height: 30px;
	}

	.subtitle.ft {
		font-size: 20px;
	}
	
	.subtitle-acad {
		font-size: 20px;
		line-height: 30px;
	}

	.subtitle-acad-ft {
		font-size: 20px;
	}
	
	.btn-comprar-rev {
		font-size: 22px;
	}
	
	.about-content h2 {
		font-size: 31px;
	}
	
	.about-content h2.avc {
		font-size: 35px;
		line-height: 40px;
	}
	
	.about-content h2.cea {
		font-size: 33px;
		line-height: 38px;
	}
	
	.about-content h2.sobre {
		font-size: 38px;
		line-height: 42px;
		padding: 0px 0px 0px 0px;
	}
	
	.about-content h2.sobre b {
		font-size: 38px;
		line-height: 42px;
	}
	
	.about-content h2.av360 {
		margin-top: 35px;
		font-size: 34px;
		line-height: 38px;
		padding: 0px 0px 0px 35px;
	}
	
	.about-content h2.acad {
		font-size: 35px;
		line-height: 40px;
	}
	
	.about-content h2.odi {
		font-size: 33px;
		line-height: 33px;
	}
	
	.about-content h2.coach {
		font-size: 45px;
		line-height: 60px;
	}
	
	.text-rd.ft-trans.coach {
		font-size: 45px;
	}
	
	.about-content h2.orat {
		font-size: 24px;
	}
	
	.about-content h2.elcad {
		font-size: 28px;
		padding: 0px 0px 0px 0px;
	}
	
	.testimonials-grid.smart-grid {
		display: none;
	}
	
	.hero-container.smart-grid-none {
		display: grid;
	}
	
	.vdo-yte {
		width: 560px;
		height: 315px;
	}
	
	.vdo-yteo {
		height: 315px;
	}
	
	.vdo-yte-dp {
		width: 300px;
		height: 200px;
	}
	
	.about-image-coach img {
		padding: 55px;
		border-radius: 120px;
	}
	
	.number-acad {
        font-size: 26px;
    }
	
    .text-acad {
        font-size: 20px;
    }
	
	.text-corp {
        font-size: 22px;
    }
	
	.text-acady {
        font-size: 22px;
    }
	
	.text-work {
        font-size: 20px;
    }
	
	.btn-comprar-remif {
		font-size: 22px;
	}
	
	.link-saiba-mais-remif {
		font-size: 22px;
	}
	
	.btn-comprar-re {
		font-size: 20px;
		margin-right: 15px;
	}
	
	.link-saiba-mais-re {
		font-size: 20px;
	}
	
	p.subtext-odi-date {
		font-size: 18px;
	}
	
	p.subtext-odii-date {
		font-size: 18px;
	}
	
	.about-content.odi-l {
		padding: 0px 0px 0px 35px;
	}

	.about-content.odi-r {
		padding: 0px 35px 0px 0px;
	}
	
	.about-content.avc-l {
		padding: 0px 0px 0px 35px;
	}
	
	.about-content p.text-av360 {
		padding: 0px 0px 0px 35px;
	}
	
	.about-content p.text-cea {
		padding: 0px 0px 0px 0px;
	}
	
	.about-content p.text-pdc {
		padding: 0px 0px 0px 0px;
	}
	
	.about-content p.text-pdct {
		padding: 0px 0px 0px 0px;
	}
	
	.about-content p.text-sobre {
		padding: 0px 0px 0px 0px;
	}

	.about-content.avc-r {
		padding: 0px 35px 0px 0px;
	}
	
	.hero-text h1.title-team {
		margin-top: 85px;
		font-size: 4.5rem;
	}
	
	.hero-text h1.title-work {
		margin-top: 15px;
		font-size: 4.5rem;
	}
	
	.hero-text h1.competencia {
		font-size: 30px;
	}

	.hero-text p.competencia {
		font-size: 23px;
		margin-top: 40px;
		margin-bottom: 10px;
	}
	
	.hero-text h1.clima {
		margin-top: 5px;
		font-size: 25px;
	}

	.hero-text p.clima {
		font-size: 20px;
		margin-top: 35px;
		margin-bottom: 15px;
	}
	
	.hero-text h1.title-av {
		margin-top: 5px;
		font-size: 25px;
	}

	.hero-text p.title-av {
		font-size: 16px;
		margin-top: 40px;
		margin-bottom: 15px;
		padding: 0px;
	}
	
	.hero-text h1.title-cea {
		margin-top: 5px;
		font-size: 25px;
	}

	.hero-text p.title-cea {
		font-size: 16px;
		margin-top: 40px;
		margin-bottom: 15px;
	}
	
	.hero-text p.title-avc {
		font-size: 28px;
		margin-bottom: 45px;
	}
	
	.box-text-top-sobre h1.sobre {
        font-size: 35px;
    }
	
	.box-text-top-sobre p.sobre {
		margin-top: 35px;
		margin-bottom: 15px;
		padding: 0px;
		font-size: 18px;
	}
	
	.box-text-top-galeria h1.galeria {
        font-size: 40px;
    }
	
	.box-text-top-galeria p.galeria {
		margin-top: 40px;
		font-size: 22px;
	}
	
	.box-text-top-home h1.home {
        font-size: 30px;
    }
	
	.box-text-top-home p.home {
		margin-top: 25px;
		margin-bottom: 5px;
		font-size: 25px;
		background: none;
        border-radius: initial;
	}
	
	.box-text-top-cliente h1.cliente {
        font-size: 35px;
    }
	
	.box-text-top-cliente p.cliente {
		margin-bottom: 5px;
		font-size: 25px;
	}
	
	.box-text-top-clientes h1.clientes {
        font-size: 40px;
    }
	
	.box-text-top-clientes p.clientes {
		margin-top: 45px;
		font-size: 25px;
	}
	
	.box-text-top-downloads h1.downloads {
        font-size: 2rem;
		padding: 0px;
    }
	
	.box-text-top-downloads p.downloads {
		font-size: 22px;
		margin-top: 50px;
	}
	
	.box-text-top-blog h1.blog {
        font-size: 38px;
    }
	
	.box-text-top-erro404 h1.erro404 {
		font-size: 38px;
    }
	
	.box-text-top-search h1.search {
		font-size: 38px;
    }
	
	.box-text-top-blog p.blog {
		margin-top: 50px;
		font-size: 22px;
	}
	
	.box-text-top-erro404 p.erro404 {
        margin-top: 50px;
		font-size: 22px;
    }
	
	.box-text-top-search p.search {
		margin-top: 50px;
        font-size: 22px;
	}
	
	.hero-text p.title-downloads {
		margin-bottom: 105px;
		font-size: 28px;
	}
	
	.hero-text p.title-blog {
		margin-bottom: 45px;
		font-size: 28px;
	}
	
	.hero-text h1.title-blog {
		margin-top: 10px;
		margin-bottom: 95px;
	}
	
	.testimonials-grid-av360 {
		grid-template-columns: repeat(3, 1fr);
		padding: 10px;
    }
	
	.testimonials-grid-work {
		grid-template-columns: repeat(2, 1fr);
		padding: 0px 135px 0px 135px;
    }
	
	.card-number {
		width: 40px;
		height: 40px;
		font-size: 22px;
	}
	
	.testimonial-content p.ftav360t {
		margin-bottom: 15px;
	}
	
	.hero-container.sobre {
		margin-top: 60px;
		margin-bottom: 90px;
	}
	
	.hero-container.galeria-fotos {
		margin-top: 60px;
	}
	
	.hero-container.home {
		margin-top: 10px;
		margin-bottom: 0px;
	}
	
	.hero-container.area-cliente {
		margin-top: 90px;
		margin-bottom: 120px;
	}
	
	.hero-container.clientes {
		margin-top: 60px;
		margin-bottom: 40px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.master {
		width: 465px;
		margin-top: 25px;
		margin-bottom: 35px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria-online {
		margin-top: 10px;
		margin-bottom: 10px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.coaching {
		width: 465px;
		margin-top: 15px;
		margin-bottom: 20px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.coaching {
		margin-top: 15px;
		margin-bottom: 10px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria {
		width: 475px;
		height: 225px;
		margin-top: 10px;
		margin-bottom: 0px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria.promo {
		margin-top: 10px;
		height: 215px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.master {
		width: 465px;
		margin-top: 15px;
		margin-bottom: 10px !important;
	}
	
	.banner-pnl {
		padding: 35px 85px 40px 85px;
    }
}

@media (min-width: 1024px) {
	.hero.bg-start-clientes {
		background-position-y: 90px;
		padding: 120px 25px 65px 25px;
	}
	
	.woocommerce-error {
		top: 130px;
	}
	
	.woocommerce-ln {
		display: flex;
	}
	
	.woocommerce-MyAccount-navigation ul {
		padding: 0px 0px 0px 20px;
	}
	
	form.woocommerce-ResetPassword.lost_reset_password {
		padding: 0px 25px 25px 25px;
	}
	
	.woocommerce {
		margin: 160px 10px 0px 10px;
	}
	
	.testimonials.ebooks {
		padding: 160px 10px 0px 10px;
	}
	
	.hero.bg-acel {
        padding: 60px 40px 0px 40px;
    }
	
	.banner-bl {
		width: 585px;
	}
	
	.hero.bg-coach {
        padding: 60px 15px 0px 15px;
    }
	
	.banner-coach {
		width: 585px;
	}
	
	.hero-text h1.coaching {
        font-size: 30px;
		top: 15px;
    }
	
	.hero-text p.coaching {
		font-size: 18px;
		margin-top: 25px;
		text-align: left;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.coaching {
		margin-top: 10px;
		width: 475px;
	}
	
	.box-text-top-academy {
		padding: 0px 605px 0px 0px;
	}
	
	.banner-master {
        width: 585px;
		padding: 20px 25px 25px 25px;
	}
	
	.banner-pnl {
		padding: 25px 35px 35px 35px;
    }
	
	.box-text-top-clientes {
        padding: 0px 410px 10px 0px;
    }
	
	.box-text-top-coaching {
        padding: 15px 500px 0px 0px;
    }
	
	.box-text-top-master {
        padding: 0px 385px 0px 0px;
    }
	
	.box-text-top-sobre {
		padding: 0px 545px 10px 0px;
	}
	
	.box-text-top-home {
        padding: 0px 445px 0px 0px;
    }
	
	.text-wt.size-wtp {
		margin-bottom: 45px;
	}
	
	.logo-sticky img {
		height: 75px;
		top: -7px;
	}
	
	.testimonials-container p.text-bg-jc {
		padding: 0px 125px 20px 125px;
	}
	
	.box-text-top-clientes h1.clientes {
        font-size: 4.3rem;
    }
	
	.box-text-top-clientes p.clientes {
		font-size: 28px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.lideres {
        width: 415px;
        padding: 20px 15px 25px 15px;
    }
	
	.about-content-bg-jc {
		background-image: url('../images/bg_jose_info.png');
		background-repeat: no-repeat;
		background-size: 100%;
		border: none;
		border-radius: initial;
		padding: 10px 15px 15px 10px;
	}
	
	.testimonials-grid.grid-five {
		grid-template-columns: repeat(5, 1fr);
	}
	
	.testimonials-grid-sobre {
		display: inline-flex;
		gap: 25px;
    }
	
	.testimonials-grid-sobre-two {
		margin-top: 25px;
		display: inline-flex;
		gap: 25px;
    }
	
	.box-text-top-sobre h1.sobre {
        font-size: 3.9rem;
    }
	
	.hero-container.sobre {
		margin-top: 60px;
		margin-bottom: 40px;
	}
	
	.box-text-top-sobre p.sobre {
		margin-bottom: 65px;
		font-size: 28px;
	}
	
	.testimonial-content-sobre-bt {
		padding: 0px 45px 0px 45px;
	}
	
	.box-text-top-corp {
		padding: 15px 625px 0px 0px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.av360 {
		margin-top: 0px;
		margin-bottom: 25px !important;
	}
	
	.hero.bg-start-av360 {
		padding: 130px 20px 30px 20px;
	}
	
	.hero.bg-start-competencia {
		background-position-y: 90px;
		padding: 65px 20px 15px 20px;
	}
	
	.testimonial-card.mg-box-none.bg-competencia-box {
		margin-top: 0px;
		margin-bottom: 35px !important;
	}
	
	.box-text-top-galeria h1.galeria {
        font-size: 4.3rem;
    }
	
	.box-text-top-galeria p.galeria {
		margin-bottom: 65px;
		font-size: 28px;
	}
	
	.hero-text h1.competencia {
		margin-top: 35px;
		font-size: 45px;
	}
	
	.hero-text p.competencia {
		font-size: 25px;
		margin-top: 40px;
		margin-bottom: 15px;
	}
	
	.box-text-top-competencia {
        padding: 0px 585px 0px 0px;
    }
	
	.hero-text h1.clima {
		margin-top: 35px;
		font-size: 60px;
	}
	
	.hero-text p.clima {
		font-size: 22px;
		margin-top: 40px;
		margin-bottom: 15px;
	}
	
	.hero-text h1.title-av {
		margin-top: 35px;
		font-size: 45px;
	}
	
	.box-text-top-av360 {
        padding: 0px 575px 0px 0px;
    }
	
	.hero-text p.title-av {
		font-size: 25px;
		margin-bottom: 15px;
	}
	
	.box-text-top-cea {
        padding: 0px 585px 0px 0px;
    }
	
	.hero-text h1.title-cea {
		margin-top: 35px;
		font-size: 45px;
	}
	
	.hero-text p.title-cea {
		font-size: 22px;
		margin-bottom: 20px;
	}
	
	.hero.bg-start-desempenho {
		padding: 135px 25px 30px 25px;
	}
	
	.hero.bg-start-cea {
		padding: 130px 20px 30px 20px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria {
		height: 220px;
		margin-bottom: 20px !important;
	}
	
	.box-text-top-corp p.corp {
		font-size: 20px;
		margin-top: 40px;
		margin-bottom: 25px;
	}
	
	.box-text-top-corp h1.corp {
		font-size: 35px;
    }
	
	.box-text-top-work {
		padding: 0px 345px 15px 0px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.work {
        margin-top: 0px;
        width: 485px;
    }
	
	.testimonial-card.mg-box-none.bg-pn-box {
		width: 485px;
		margin-top: 20px;
	}
	
	.box-text-top-oratoria-online p.oratoria {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
	
	.box-text-top-desempenho h1.desempenho {
        font-size: 40px;
    }
	
	.box-text-top-desempenho p.desempenho {
		font-size: 25px;
		margin-top: 40px;
		margin-bottom: 10px;
	}
	
	.box-text-top-downloads h1.downloads {
        font-size: 3rem;
    }
	
	.box-text-top-downloads {
        padding: 0px 450px 0px 0px;
    }
	
	.box-text-top-downloads p.downloads {
		margin-top: 60px;
		margin-bottom: 35px;
		font-size: 21px;
	}
	
	.box-text-top-home h1.home {
        font-size: 40px;
    }
	
	.box-text-top-home p.home {
		margin-bottom: 5px;
		font-size: 30px;
	}
	
	.box-text-top-cliente h1.cliente {
        font-size: 50px;
    }
	
	.box-text-top-cliente p.cliente {
		margin-bottom: 5px;
		font-size: 30px;
	}
	
	p.subtext-odi-date {
		font-size: 24px;
	}
	
	p.subtext-odii-date {
		font-size: 24px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.odisseyai {
		margin-top: 35px;
		margin-bottom: 5px !important;
	}
	
	.hero-text h1.odisseya {
        font-size: 2rem;
    }
	
	p.subtext-odi {
		font-size: 22px;
		margin-top: 40px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.topnl {
		width: 435px;
		margin: 20px 0px 35px 0px;
		padding: 25px 55px 15px 55px;
	}
	
	.box-text-top-lideres {
        padding: 0px 560px 20px 0px;
    }
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.topn {
		width: 435px;
		margin-top: 30px;
		margin-bottom: 15px !important;
	}
	
	.box-text-top-practitioner h1.pnl {
        font-size: 2.4rem;
    }
	
	.box-text-top-practitioner p.pnl {
		font-size: 20px;
		margin-top: 30px;
		margin-bottom: 10px;
	}
	
	.box-text-top-practitioner {
        padding: 0px 640px 0px 0px;
    }
	
	.hero-text h1.acad {
		font-size: 3.4rem;
		margin-top: 40px;
		margin-bottom: 10px;
	}
	
	.hero-text p.acad {
		font-size: 26px;
	}
	
	.col-xs-12 {
		width: 100%;
	}
	
	.col-xs-11 {
		width: 91.66666667%;
	}
	
	.col-xs-10 {
		width: 83.33333333%;
	}
	
	.col-xs-9 {
		width: 75%;
	}
	
	.col-xs-8 {
		width: 66.66666667%;
	}
	
	.col-xs-7 {
		width: 58.33333333%;
	}
	
	.col-xs-6 {
		width: 50%;
	}
	
	.col-xs-5 {
		width: 41.66666667%;
	}
	
	.col-xs-4 {
		width: 33.33333333%;
	}
	
	.col-xs-3 {
		width: 25%;
	}
	
	.col-xs-2 {
	width: 16.66666667%;
	}
	
	.col-xs-1 {
		width: 8.33333333%;
	}
	
	.register-container {
		padding: 0px 250px;
	}
	
	img.icon-certificate-jc {
		width: 120px !important;
		left: 345px;
	}
	
	.hero-container.home {
		margin-top: 45px;
		margin-bottom: 0px;
	}
	
	.banner-pnl {
		width: 585px;
    }
	
	.banner-oratoria {
		width: 585px;
		padding: 25px;
	}
	
	.stats-container-o {
		gap: 7rem;
    }
	
	.about-container.pnl {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		padding: 0px 125px 0px 125px;
	}

	.about-container.orat {
		grid-template-columns: 1fr 1fr;
	}
	
	.about-container.oratp {
		grid-template-columns: 1fr 1fr;
	}
	
	.about-container.odi {
		grid-template-columns: 1fr 1fr;
	}
	
	.about-container.coach {
		grid-template-columns: 1fr 1fr;
	}
	
	.about-container-jc {
		grid-template-columns: 1fr 1fr;
	}
	
	.nav-menu {
		gap: 2rem;
	}
	
	h2.title-modal {
		font-size: 30px;
	}
	
	.descr-modal {
		padding:25px;
	}
	
	.descr-modal li {
		font-size: 20px;
	}
	
	.bt-direct {
		font-size: 20px;
	}
	
	.bt-direct-about {
		bottom: 0px;
		font-size: 20px;
	}
	
	.bt-direct-int-pnl {
		font-size: 20px;
		margin-right: 15px;
	}
	
	.bt-direct-galeria-fotos {
		font-size: 20px;
		margin-right: 15px;
	}
	
	.bt-direct-cliente {
		font-size: 20px;
	}
	
	.bt-direct-wh {
		font-size: 20px;
	}
	
	.bt-direct-wh-odi {
		font-size: 20px;
	}
	
	.link-saiba-mais-pnl {
		font-size: 15px;
	}
	
	.bt-direct-who {
		padding: 1rem 1.4rem;
		font-size: 18px;
	}
	
	.bt-direct-whon {
		padding: 0.8rem 1.4rem;
		font-size: 18px;
	}
	
	.bt-direct-eac {
		font-size: 22px;
		margin-right: 15px;
	}
	
	.bt-direct-eaclid {
		font-size: 18px;
	}
	
	.bt-direct-eacm {
		padding: 0.8rem 1.5rem;
		font-size: 18px;
		margin-right: 15px;
	}
	
	.bt-direct-eacmif {
		font-size: 18px;
		margin-right: 15px;
	}
	
	.bt-direct-wh-eac {
		font-size: 22px;
	}
	
	.bt-direct-wh-eacm {
		padding: 0.8rem 1.5rem;
		font-size: 18px;
	}
	
	.bt-direct-wh-eacmif {
		font-size: 18px;
	}
	
	.bt-direct-wh-eacs {
		font-size: 18px;
	}
	
	.bt-direct-wh-eacso {
		padding: 1rem 1.4rem;
		margin-right: 10px;
		font-size: 18px;
	}
	
	.bt-inscrever-oratoria {
		padding: 0.5rem 1.4rem;
		margin-right: 10px;
		font-size: 18px;
	}
	
	.bt-amici-editora {
		padding: 0.5rem 1.4rem;
		font-size: 18px;
		margin-right: 10px;
	}
	
	.bt-direct-wh-eacson {
		padding: 0.8rem 1.6rem;
		font-size: 18px;
		margin-right: 10px;
	}
	
	.bt-direct-wh-eacsd {
		font-size: 18px;
	}
	
	.bt-direct-wh-eacsdc {
		font-size: 20px;
	}
	
	.bt-direct-av360 {
		font-size: 20px;
	}
	
	.bt-direct-clima {
		font-size: 20px;
	}
	
	.bt-direct-cea {
		font-size: 20px;
	}
	
	.bt-direct-team {
		font-size: 20px;
	}
	
	.bt-direct-corp {
		font-size: 20px;
	}
	
	.bt-direct-work {
		font-size: 20px;
	}
	
	.bt-direct-wh-diag {
		font-size: 14px;
	}
	
	.bt-direct-wh-clima {
		font-size: 14px;
	}
	
	.bt-direct-wh-cea {
		font-size: 14px;
	}
	
	.bt-direct-wh-team {
		font-size: 16px;
	}
	
	.bt-direct-wh-corp {
		font-size: 16px;
	}
	
	.bg-start-oratoria-pnl {
		background-size: 100%;
		background-position-y: 90px;
		padding: 75px 20px 15px 20px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria.promo {
        width: 410px;
        margin-top: 5px;
        height: 205px;
        padding: 5px 0px 0px 0px;
    }
	
	.hero.bg-start-lideres {
		padding: 40px 5px 25px 25px;
		background-position-y: 90px;
	}
	
	.hero.bg-start-academy {
		background-position-y: 75px;
        background-position-x: -365px;
		padding: 90px 25px 25px 25px;
	}
	
	.hero.bg-start-odisseyai {
		padding: 75px 25px 45px 25px;
		background-position-y: 95px;
	}
	
	.hero.bg-start-odisseyaii {
		padding: 65px 25px 50px 25px;
		background-position-y: 90px;
	}
	
	.hero.bg-start-desempenho {
		background-position-y: 90px;
		padding: 105px 25px 35px 25px;
	}
	
	.hero.bg-start-av360 {
		background-position-y: 90px;
		padding: 65px 25px 20px 25px;
	}
	
	.hero.bg-start-clima {
		background-position-y: 90px;
		padding: 55px 25px 35px 25px;
	}
	
	.box-text-top-clima {
        padding: 0px 490px 0px 0px;
    }
	
	.hero.bg-start-cea {
		background-position-y: 90px;
		padding: 55px 25px 20px 25px;
	}
	
	.hero.bg-start-team {
		background-position-y: 90px;
		padding: 100px 25px 25px 25px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.team {
        margin-top: 10px;
        width: 475px;
    }
	
	.box-text-top-team h1.team {
        margin-top: 0px;
        font-size: 55px;
    }
	
	.box-text-top-team p.team {
        font-size: 32px;
        margin-top: 40px;
        margin-bottom: 10px;
    }
	
	.hero.bg-start-corp {
		padding: 70px 25px 35px 25px;
		background-position-y: 90px;
	}
	
	.hero.bg-start-sobre {
		background-position-y: 90px;
		padding: 85px 25px 10px 25px;
	}
	
	.hero.bg-start-galeria-fotos {
		background-position-y: 90px;
		padding: 100px 25px 140px 25px;
	}
	
	.hero.bg-start-galeria-fotos-empresariais {
		background-position-y: 90px;
		padding: 100px 25px 140px 25px;
	}
	
	.hero.bg-start-home {
		background-position-y: 95px;
		padding: 80px 25px 55px 25px;
	}
	
	.hero.bg-start-area-cliente {
		background-position-y: 90px;
		padding: 40px 25px 60px 25px;
	}
	
	.hero.bg-start-downloads {
		padding: 125px 25px 120px 25px;
        background-position-y: 90px;
	}
	
	.hero.bg-start-blog {
		background-position-y: 90px;
		padding: 110px 25px 120px 25px;
	}
	
	.hero.bg-start-erro404 {
		background-position-y: 90px;
		padding: 125px 25px 200px 25px;
	}
	
	.hero.bg-start-search {
		background-position-y: 90px;
		padding: 125px 25px 200px 25px;
	}
	
	.box-text-top-blog {
        padding: 0px 465px 10px 0px;
    }
	
	.box-text-top-erro404 {
		padding: 0px 465px 10px 0px;
	}
	
	.box-text-top-search {
		padding: 0px 465px 10px 0px;
	}
	
	.box-text-top-blog h1.blog {
        font-size: 50px;
    }
	
	.box-text-top-erro404 h1.erro404 {
        font-size: 50px;
    }
	
	.box-text-top-search h1.search {
		font-size: 50px;
    }
	
	.box-text-top-blog p.blog {
        margin-top: 50px;
        font-size: 28px;
    }
	
	.box-text-top-erro404 p.erro404 {
        margin-top: 50px;
		font-size: 28px;
    }
	
	.box-text-top-search p.search {
		margin-top: 50px;
        font-size: 28px;
	}
	
	.hero.bg-start-work {
		padding: 90px 25px 5px 25px;
		background-size: 100%;
		background-position-y: 90px;
	}
	
	.box-text-top-work h1.work {
        font-size: 35px;
    }
	
	.box-text-top-work p.work {
        font-size: 25px;
        margin-top: 40px;
        margin-bottom: 5px;
    }
	
	.hero.bg-start-oratoria {
		padding: 105px 25px 10px 25px;
		background-position-y: 90px;
		background-position-x: 0px;
		background-size: 100%;
	}
	
	.hero.bg-start-pnl {
		background-position-y: 90px;
		padding: 75px 20px 20px 20px;
	}
	
	.hero.bg-start-master {
		background-position: right;
		padding: 75px 25px 25px 25px;
	}
	
	.hero.bg-start-coaching {
		padding: 85px 20px 25px 20px;
		background-size: 100%;
		background-position: center;
		background-position-y: 90px;
	}
	
	.testimonials-container.bg-oratk3 {
		margin: 20px 95px 35px 95px;
	}
	
	.testimonials-container.bg-amici-editora {
		margin: 0px 125px 0px 125px;
	}
	
	.content-box {
		padding: 15px 120px 0px 120px;
	}
	
	.content-box-corp {
		padding: 0px 45px 0px 45px;
	}
	
	.content-box-sobre img {
		padding: 0px 45px 0px 45px;
	}
	
	.content-box-acad {
		grid-template-columns: repeat(2, 2fr);
		padding: 0px 45px 0px 45px;
	}
	
	.banner-blaci {
		width: 585px;
		min-height: 157px;
    }
	
	.banner-avc {
		width: 585px;
		min-height: 157px;
    }
	
	.banner-work {
		width: 685px;
		min-height: 157px;
    }
	
	.banner-clima {
        width: 585px;
		min-height: 157px;
    }
	
	.banner-cea {
		width: 585px;
		min-height: 157px;
    }
	
	.banner-team {
        width: 685px;
		min-height: 157px;
    }
	
	.banner-corp {
        width: 685px;
		min-height: 157px;
    }
	
	.banner-acad {
		width: 685px;
		padding: 20px 125px 25px 125px;
	}
	
	.about-image-acad img {
		padding: 15px;
	}
	
	.about-image-cear img {
		margin-top: 35px;
		padding: 5px;
	}

	.about-image-ceal img {
		margin-top: 35px;
		padding: 25px;
	}
	
	.about-image img {
		padding: 0px;
	}
	
	.about-image img.pd1 {
		padding: 1px;
	}
	
	.about-image img.pd2 {
		padding: 2px;
	}
	
	.about-image-acad.on-img {
		display: initial;
	}
	
	.about-image-acad.off-img {
		display: none;
	}
	
	.about-image-ceal.on-img {
		display: initial;
	}
	
	.about-image-ceal.off-img {
		display: none;
	}
	
	.box-menu {
		display: none;
	} 
	
	.sticky-header-top {
		display: initial;
	}
	
	.sticky-header {
		top: 45px;
	}
}

@media (min-width: 1280px) {
	.hero.bg-start-lideres {
		padding: 75px 45px 45px 45px;
	}
	
	.about-content h2.orat {
        font-size: 32px;
    }
	
	.box-text-top-lideres {
        padding: 0px 725px 20px 0px;
    }
	
	.hero-text h1 {
        top: 15px;
    }
	
	.hero-text.oratoria h1 {
        top: 15px;
    }
	
	.box-text-top-master {
        padding: 0px 485px 0px 0px;
    }
	
	.box-text-top-sobre {
        padding: 0px 765px 10px 0px;
    }
	
	.testimonial-card.mg-box-none.bg-pn-box.master.promo {
		width: 555px;
		margin-top: 15px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.master {
        width: 465px;
        margin-top: 15px;
        margin-bottom: 10px !important;
    }
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria.promo {
		width: 565px;
		height: auto;
		margin-bottom: 20px !important;
		padding: 15px 0px 15px 0px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.promo {
		width: 565px;	
		margin-bottom: 5px;
	}
	
	.hero.bg-start-clientes {
		padding: 150px 45px 150px 45px;
	}
	
	.box-text-top-clientes {
        padding: 0px 625px 10px 0px;
    }
	
	.about-content h2.elcad {
		margin-top: 30px;
	}
	
	.about-image img.pd-img-academy {
        padding: 30px;
    }
	
	.box-text-top-academy {
		padding: 0px 675px 0px 0px;
	}
	
	.testimonials-container p.text-bg-jc {
		padding: 0px 235px 20px 235px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.lideres {
        width: 485px;
        padding: 25px 20px 35px 20px;
    }
	
	.box-text-top-clientes h1.clientes {
        font-size: 4.3rem;
    }
	
	.box-text-top-clientes p.clientes {
		margin-top: 35px;
		font-size: 28px;
	}
	
	.hero.bg-start-sobre {
		padding: 110px 45px 90px 45px;
	}
	
	.testimonials-container-sobre {
		padding: 0px 45px 35px 45px;
	}
	
	.hero.bg-start-area-cliente {
		padding: 85px 45px 60px 45px;
	}
	
	.hero.bg-start-clima {
		padding: 70px 45px 50px 45px;
	}
	
	.box-text-top-sobre p.sobre {
		margin-bottom: 65px;
		font-size: 28px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.clima {
		width: 530px;
		margin-top: 0px;
		margin-bottom: 10px !important;
	}
	
	.box-text-top-clima {
		padding: 0px 615px 35px 0px;
	}
	
	.hero.bg-start-av360 {
		padding: 85px 45px 20px 45px;
	}
	
	.hero.bg-start-competencia {
		padding: 80px 45px 10px 45px;
	}
	
	.box-text-top-competencia {
		padding: 0px 680px 0px 0px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.av360 {
		width: 515px;
		margin-top: 0px;
		margin-bottom: 35px !important;
	}
	
	.box-text-top-av360 {
		padding: 0px 685px 0px 0px;
	}
	
	.testimonial-card.mg-box-none.bg-competencia-box {
		width: 515px;
		margin-top: 0px;
		margin-bottom: 35px !important;
		padding: 25px 15px 35px 15px;
	}
	
	.hero.bg-start-galeria-fotos {
		padding: 170px 45px 180px 45px;
	}
	
	.hero.bg-start-galeria-fotos-empresariais {
		padding: 170px 45px 180px 45px;
	}
	
	.hero.bg-start-coaching {
		padding: 85px 45px 25px 45px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.coaching {
		width: 500px;
		margin-top: 5px;
		margin-bottom: 30px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.coaching {
		margin-top: 15px;
		margin-bottom: 15px !important;
	}
	
	.hero.bg-start-cea {
		padding: 75px 45px 25px 45px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.cea {
        width: 545px;
        margin-top: 30px;
        margin-bottom: 30px !important;
    }
	
	.box-text-top-cea {
        padding: 0px 625px 0px 0px;
    }
	
	.hero.bg-start-desempenho {
		padding: 120px 45px 55px 45px;
	}
	
	.hero.bg-start-academy {
		background-size: 100%;
		background-position: bottom;
		background-position-y: bottom;
        background-position-x: initial;
		padding: 70px 45px 20px 45px;
	}
	
	.hero.bg-start-corp {
		padding: 85px 45px 50px 45px;
		background-size: 100%;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.corp {
        margin-top: 0px;
        width: 500px;
    }
	
	.hero-text h1.coaching {
        font-size: 45px;
    }
	
	.hero-text p.coaching {
		font-size: 25px;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	
	.box-text-top-coaching {
        padding: 15px 700px 0px 0px;
    }
	
	.hero-text h1.competencia {
		margin-top: 35px;
		font-size: 4.5rem;
	}
	
	.hero-text p.competencia {
		font-size: 32px;
		margin-top: 35px;
		margin-bottom: 25px;
	}
	
	.hero-text h1.clima {
		margin-top: 35px;
		font-size: 4.4rem;
	}
	
	.hero-text p.clima {
		font-size: 32px;
		margin-bottom: 0px;
	}
	
	.hero-text h1.title-av {
		margin-top: 35px;
		font-size: 4.5rem;
	}
	
	.hero-text p.title-av {
		font-size: 32px;
		margin-bottom: 25px;
	}
	
	.hero-text h1.title-cea {
		margin-top: 35px;
		font-size: 4.5rem;
	}
	
	.hero-text p.title-cea {
		font-size: 32px;
		margin-bottom: 25px;
	}
	
	.box-text-top-corp h1.corp {
		font-size: 4.2rem;
    }
	
	.box-text-top-corp p.corp {
		font-size: 30px;
		margin-top: 30px;
		margin-bottom: 10px;
	}
	
	.box-text-top-corp {
        padding: 15px 665px 0px 0px;
    }
	
	.box-text-top-desempenho h1.desempenho {
        font-size: 4.3rem;
    }
	
	.box-text-top-desempenho p.desempenho {
		font-size: 33px;
		margin-top: 25px;
		margin-bottom: 20px;
	}
	
	.hero.bg-start-work {
		padding: 95px 45px 0px 45px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.work {
        margin-top: 0px;
        width: 545px;
        padding: 20px 5px 35px 5px;
    }
	
	.hero.bg-start-team {
		padding: 50px 45px 55px 45px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.team {
		width: 535px;
        margin-top: 0px;
		padding: 20px 25px 35px 25px;
    }
	
	.hero.bg-start-oratoria {
		padding: 110px 45px 10px 45px;
	}
	
	.hero.bg-start-blog {
		padding: 155px 45px 170px 45px;
	}
	
	.hero.bg-start-erro404 {
		padding: 160px 45px 220px 45px;
	}
	
	.hero.bg-start-search {
		padding: 160px 45px 220px 45px;
	}
	
	.hero.bg-start-master {
		background-size: 100%;
		background-position-y: 90px;
		padding: 105px 45px 20px 45px;
	}
	
	.hero.bg-start-home {
		padding: 60px 45px 10px 45px;
	}
	
	.hero.bg-start-downloads {
		padding: 145px 45px 125px 45px;
	}
	
	.box-text-top-downloads {
        padding: 0px 620px 0px 0px;
    }
	
	.hero.bg-start-odisseyai {
		padding: 60px 45px 20px 45px;
	}
	
	.testimonial-card.mg-box-none.bg-coach-box.odisseya {
		margin-top: 30px;
		margin-bottom: 40px;
	}
	
	.hero.bg-start-odisseyaii {
		padding: 60px 45px 15px 45px;
	}
	
	.box-text-top-team {
		padding: 0px 550px 35px 0px;
	}
	
	.box-text-top-team h1.team {
        margin-top: 85px;
		font-size: 4.5rem;
    }
	
	.box-text-top-team p.team {
		font-size: 35px;
		margin-top: 30px;
		margin-bottom: 10px;
	}
	
	.box-text-top-work h1.work {
        font-size: 4.3rem;
    }
	
	.box-text-top-work p.work {
		font-size: 28px;
		margin-top: 30px;
		margin-bottom: 10px;
	}
	
	.box-text-top-work {
        padding: 0px 490px 15px 0px;
    }
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria-online {
		margin-top: 15px;
		margin-bottom: 35px !important;
	}
	
	.box-text-top-oratoria-online h1.oratoria {
        font-size: 2.8rem;
    }
	
	.box-text-top-oratoria-online p.oratoria {
		font-size: 28px;
		margin-top: 30px;
		margin-bottom: 20px;
	}
	
	.box-text-top-downloads h1.downloads {
        font-size: 3.5rem;
    }
	
	.box-text-top-downloads p.downloads {
		margin-top: 35px;
		margin-bottom: 65px;
		font-size: 28px;
	}
	
	.box-text-top-blog h1.blog {
        font-size: 4.3rem;
    }
	
	.box-text-top-erro404 h1.erro404 {
        font-size: 4.3rem;
    }
	
	.box-text-top-search h1.search {
		font-size: 4.3rem;
    }
	
	.box-text-top-blog p.blog {
		margin-bottom: 65px;
		font-size: 28px;
	}
	
	.box-text-top-erro404 p.erro404 {
        margin-top: 65px;
		font-size: 28px;
    }
	
	.box-text-top-search p.search {
		margin-top: 65px;
        font-size: 28px;
	}
	
	.hero-text p.mp {
		margin-top: 25px;
		font-size: 25px;
	}
	
	p.subtext-odi-date {
		font-size: 35px;
	}
	
	p.subtext-odii-date {
		font-size: 35px;
	}
	
	.hero-text h1.odisseya {
        font-size: 3.8rem;
    }
	
	p.subtext-odi {
		font-size: 32px;
		margin-top: 35px;
	}
	
	.hero.bg-start-pnl {
		background-size: cover;
		padding: 80px 45px 0px 45px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.topnl {
		width: 555px;
        padding: 25px 55px 15px 55px;
		margin-top: 20px !important;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.topn {
        width: 555px;
        margin-top: 30px;
        margin-bottom: 15px !important;
    }
	
	.testimonial-card.mg-box-none.bg-pn-box {
		width: 475px;
		margin-top: 20px;
	}
	
	.box-text-top-practitioner p.pnl {
        font-size: 33px;
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 40px;
    }
	
	.bg-start-oratoria-pnl {
		padding: 95px 5px 20px 45px;
	}
	
	.box-text-top-practitioner h1.pnl {
        font-size: 3.8rem;
    }
	
	h1.elcad {
		margin-top: 20px;
		margin-bottom: 10px;
		font-size: 4rem !important;
	}
	
	.hero-text p.elcad {
		font-size: 25px;
	}
	
	.hero-text p.elcad b {
		font-size: 25px;
	}
	
	.hero-text h1.acad {
		font-size: 4.3rem;
		margin-top: 30px;
		margin-bottom: 25px;
	}
	
	.hero-text p.acad {
		font-size: 30px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria {
		width: 475px;
		height: initial;
		margin-top: 20px;
		margin-bottom: 20px !important;
	}
	
	p.text-insc {
		font-size: 18px;
		margin-top: 5px;
		margin-bottom: 5px;
	}
	
	p.text-sjr {
		font-size: 25px;
	}
	
	.text-rd.start-hero {
		font-size: 35px;
	}
	
	.text-rd.start-hero.promo {
		font-size: 25px;
	}
	
	strike.text-rd.start-hero {
		font-size: 25px;
	}
	
	strike.text-rd.start-hero.pro {
		font-size: 20px;
	}
	
	.text-rd.start-hero.promot {
		font-size: 25px;
	}
	
	b.text-pnl-b {
		font-size: 45px;
	}
	
	b.text-pnl-b.promo {
		font-size: 35px;
	}
	
	b.promot {
		font-size: 20px;
	}
	
	.box-text-top-oratoria-pnl p.oratoria-pnl {
		font-size: 30px;
		margin-top: 25px;
		margin-bottom: 0px;
	}
	
	h1.curso.subtitle {
		font-size: 32px !important;
	}
	
	.box-text-top-oratoria-pnl h1.oratoria-pnl {
        font-size: 3.4rem;
    }
	
	.register-container {
		padding: 0px 450px;
	}
	
	img.icon-certificate-jc {
		left: 330px;
	}
	
	.box-text-top-home h1.home {
        font-size: 4.3rem;
    }
	
	.box-text-top-home p.home {
		margin-bottom: 35px;
		font-size: 35px;
	}
	
	.box-text-top-home {
        padding: 0px 565px 0px 0px;
    }
	
	.box-text-top-cliente h1.cliente {
        font-size: 4.3rem;
    }
	
	.box-text-top-cliente p.cliente {
		margin-bottom: 65px;
		font-size: 40px;
	}
	
	.about-container-jc {
		padding: 0px 120px;
	}
}

@media (min-width: 1320px) {
	.hero.bg-start-clientes {
        padding: 155px 45px 160px 45px;
    }
	
	.hero.bg-start-academy {
		padding: 85px 45px 25px 45px;
	}
	
	.hero.bg-start-clima {
        padding: 85px 45px 55px 45px;
    }
	
	.box-text-top-clima {
        padding: 0px 665px 35px 0px;
    }
	
	.hero.bg-start-master {
        padding: 105px 45px 35px 45px;
    }
	
	.hero.bg-start-pnl {
        padding: 90px 45px 10px 45px;
    }
	
	.hero.bg-start-av360 {
        padding: 90px 45px 30px 45px;
    }
	
	.hero.bg-start-cea {
        padding: 85px 45px 30px 45px;
    }
	
	.box-text-top-cea {
        padding: 0px 670px 0px 0px;
    }
	
	.hero.bg-start-competencia {
        padding: 90px 45px 20px 45px;
    }
	
	.box-text-top-competencia {
        padding: 0px 720px 0px 0px;
    }
	
	.hero.bg-start-desempenho {
        padding: 130px 45px 60px 45px;
    }
	
	.hero.bg-start-sobre {
		padding: 110px 45px 110px 45px;
	}
	
	.hero.bg-start-blog {
        padding: 155px 45px 185px 45px;
    }
	
	.hero.bg-start-erro404 {
		padding: 165px 45px 230px 45px;
	}
	
	.hero.bg-start-search {
		padding: 165px 45px 230px 45px;
	}
	
	.hero.bg-start-galeria-fotos {
        padding: 130px 45px 230px 45px;
    }
	
	.hero.bg-start-galeria-fotos-empresariais {
		padding: 130px 45px 230px 45px;
	}
	
	.hero.bg-start-lideres {
        padding: 80px 45px 60px 45px;
    }
	
	.hero.bg-start-corp {
		padding: 95px 45px 55px 45px;
		background-size: 100%;
	}
	
	.box-text-top-corp {
        padding: 15px 695px 0px 0px;
    }
	
	.hero.bg-start-team {
        padding: 50px 45px 70px 45px;
    }
	
	.box-text-top-team {
        padding: 0px 710px 35px 0px;
    }
	
	.hero.bg-start-work {
        padding: 100px 45px 10px 45px;
    }
	
	.box-text-top-work {
        padding: 0px 535px 15px 0px;
    }
	
	.hero.bg-start-oratoria {
        padding: 110px 45px 25px 45px;
    }
	
	.box-text-top-academy {
        padding: 0px 715px 0px 0px;
    }
	
	.hero.bg-start-odisseyai {
        padding: 75px 45px 25px 45px;
	}
	
	.hero-text p.coaching {
		margin-top: 25px;
		margin-bottom: 20px;
	}
	
	.bg-start-oratoria-pnl {
		padding: 100px 5px 30px 45px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.oratoria.promo {
        margin-bottom: 30px !important;
    }
	
	.hero.bg-start-home {
        padding: 60px 45px 30px 45px;
    }
	
	.box-text-top-home {
        padding: 0px 615px 0px 0px;
    }
	
	.box-text-top-sobre {
        padding: 0px 805px 10px 0px;
    }
	
	.hero.bg-start-downloads {
		padding: 145px 45px 145px 45px;
	}
	
	.box-text-top-downloads {
        padding: 0px 660px 0px 0px;
    }

	.hero.bg-start-odisseyaii {
		padding: 70px 45px 25px 45px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.ft.promo {
		margin-bottom: 0px;
	}
}

@media (min-width: 1349px) {
	.hero.bg-start-lideres {
		padding: 85px 45px 65px 45px;
	}
	
	.box-text-top-lideres {
        padding: 0px 795px 20px 0px;
    }
	
	.box-text-top-home {
        padding: 0px 645px 0px 0px;
    }
	
	.hero.bg-start-clientes {
		padding: 150px 45px 180px 45px;
	}
	
	.box-text-top-clientes {
        padding: 0px 695px 10px 0px;
    }
	
	.box-text-top-sobre {
        padding: 0px 835px 10px 0px;
    }
	
	.hero.bg-start-sobre {
		padding: 110px 45px 120px 45px;
	}
	
	.hero.bg-start-area-cliente {
		padding: 90px 45px 80px 45px;
	}
	
	.hero.bg-start-clima {
		padding: 90px 45px 60px 45px;
	}
	
	.box-text-top-clima {
        padding: 0px 695px 35px 0px;
    }
	
	.hero.bg-start-av360 {
		padding: 90px 45px 45px 45px;
	}
	
	.hero.bg-start-competencia {
		padding: 90px 45px 30px 45px;
	}
	
	.hero.bg-start-galeria-fotos {
		padding: 145px 45px 235px 45px;
	}
	
	.hero.bg-start-galeria-fotos-empresariais {
		padding: 145px 45px 235px 45px;
	}
	
	.hero.bg-start-coaching {
		background-size: 100%;
		background-position: bottom;
		padding: 90px 45px 30px 45px;
	}
	
	.testimonial-card.mg-box-none.bg-pn-box.coaching {
        margin-bottom: 35px !important;
    }

	.hero-text h1.coaching {
        font-size: 45px;
    }
	
	.hero-text p.coaching {
		font-size: 26px;
		padding-top: 10px;
	}
	
	.hero.bg-start-cea {
		padding: 95px 45px 35px 45px;
	}
	
	.hero.bg-start-desempenho {
		padding: 135px 45px 70px 45px;
	}
	
	.hero.bg-start-academy {
		padding: 90px 45px 30px 45px;
	}
	
	.hero.bg-start-corp {
		padding: 100px 45px 55px 45px;
	}
	
	.box-text-top-corp p.corp {
        font-size: 30px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
	
	.box-text-top-corp {
        padding: 15px 725px 0px 0px;
    }
	
	.hero.bg-start-work {
		padding: 115px 45px 10px 45px;
	}
	
	.box-text-top-work {
        padding: 0px 565px 15px 0px;
    }
	
	.hero.bg-start-team {
		padding: 60px 45px 75px 45px;
	}
	
	.hero.bg-start-oratoria {
		padding: 110px 45px 30px 45px;
		background-size: 100%;
		background-position: bottom;
	}
	
	.hero.bg-start-blog {
		padding: 150px 45px 205px 45px;
	}
	
	.hero.bg-start-erro404 {
		padding: 155px 45px 255px 45px;
	}
	
	.hero.bg-start-search {
		padding: 155px 45px 255px 45px;
	}
	
	.box-text-top-blog {
        padding: 0px 540px 10px 0px;
    }
	
	.box-text-top-erro404 {
		padding: 0px 540px 10px 0px;
	}
	
	.box-text-top-search {
		padding: 0px 540px 10px 0px;
	}
	
	.hero.bg-start-master {
		padding: 100px 45px 30px 45px;
	}
	
	.box-text-top-master {
        padding: 0px 555px 0px 0px;
    }
	
	.hero.bg-start-home {
		padding: 75px 45px 25px 45px;
	}
	
	.hero.bg-start-downloads {
		padding: 130px 45px 210px 45px;
	}
	
	.box-text-top-downloads {
        padding: 0px 585px 0px 0px;
    }
	
	.hero.bg-start-odisseyai {
		padding: 80px 45px 30px 45px;
	}
	
	.hero.bg-start-odisseyaii {
		padding: 75px 45px 30px 45px;
	}
	
	.hero.bg-start-pnl {
		padding: 95px 45px 15px 45px;
	}
	
	.hero-text h1 {
        font-size: 45px;
    }
	
	.hero-text.oratoria h1 {
        font-size: 45px;
    }
	
	.box-text-top-academy {
		padding: 0px 745px 0px 0px;
	}
	
	.text-rdmp {
		color: #d3000b !important;
		font-size: 45px;
	}
	
	.bg-start-oratoria-pnl {
		padding: 105px 5px 40px 45px;
	}
	
	.about-container-jc {
		padding: 0px 140px;
	}
}

@media (min-width: 1380px) {
	.hero.bg-start-home {
		padding: 95px 45px 65px 45px;
	}
	
	.hero.bg-start-erro404 {
		padding: 155px 45px 265px 45px;
	}
	
	.hero.bg-start-search {
		padding: 155px 45px 265px 45px;
	}
	
	.hero.bg-start-clientes {
		padding: 150px 45px 195px 45px;
	}
	
	.hero.bg-start-downloads {
		padding: 140px 45px 210px 45px;
	}
	
	.hero.bg-start-cea {
		padding: 95px 45px 45px 45px;
	}
}

@media (min-width: 1440px) {
	.hero.bg-start-lideres {
		padding: 110px 45px 80px 45px;
	}
	
	.box-text-top-lideres {
        padding: 0px 885px 20px 0px;
    }
	
	.box-text-top-home {
        padding: 0px 730px 0px 0px;
    }
	
	.box-text-top-sobre {
        padding: 0px 925px 10px 0px;
    }
	
	.hero.bg-start-clientes {
		padding: 160px 45px 245px 45px;
	}
	
	.hero.bg-start-sobre {
		padding: 110px 45px 160px 45px;
	}
	
	.hero.bg-start-area-cliente {
		padding: 90px 45px 120px 45px;
	}
	
	.hero.bg-start-academy {
        padding: 75px 45px 50px 45px;
    }
	
	.hero.bg-start-clima {
		padding: 105px 45px 85px 45px;
	}
	
	.box-text-top-clima {
        padding: 0px 785px 35px 0px;
    }
	
	.hero.bg-start-av360 {
		padding: 115px 45px 55px 45px;
	}
	
	.box-text-top-av360 {
        padding: 0px 845px 0px 0px;
    }
	
	.hero.bg-start-competencia {
		padding: 105px 45px 55px 45px;
	}
	
	.box-text-top-competencia {
        padding: 0px 840px 0px 0px;
    }
	
	.hero.bg-start-galeria-fotos {
		padding: 145px 45px 270px 45px;
	}
	
	.hero.bg-start-galeria-fotos-empresariais {
		padding: 145px 45px 270px 45px;
	}
	
	.hero.bg-start-coaching {
		padding: 110px 45px 50px 45px;
	}
	
	.box-text-top-coaching {
        padding: 15px 885px 0px 0px;
    }
	
	.hero.bg-start-cea {
		padding: 105px 45px 60px 45px;
	}
	
	.box-text-top-cea {
        padding: 0px 785px 0px 0px;
    }
	
	.hero.bg-start-desempenho {
		padding: 145px 45px 95px 45px;
	}
	
	.hero.bg-start-corp {
		padding: 120px 45px 75px 45px;
	}
	
	.box-text-top-corp {
        padding: 15px 820px 0px 0px;
    }
	
	.hero.bg-start-work {
		padding: 140px 45px 25px 45px;
	}
	
	.box-text-top-work {
        padding: 0px 650px 15px 0px;
    }
	
	.hero.bg-start-team {
		padding: 80px 45px 95px 45px;
	}
	
	.hero.bg-start-oratoria {
		padding: 135px 45px 45px 45px;
		background-size: 100%;
		background-position: bottom;
	}
	
	.hero.bg-start-blog {
		padding: 175px 45px 215px 45px;
	}
	
	.hero.bg-start-erro404 {
		padding: 175px 45px 270px 45px;
	}
	
	.hero.bg-start-search {
		padding: 175px 45px 270px 45px;
	}
	
	.box-text-top-blog {
        padding: 0px 630px 10px 0px;
    }
	
	.box-text-top-erro404 {
		padding: 0px 630px 10px 0px;
	}
	
	.box-text-top-search {
		padding: 0px 630px 10px 0px;
	}
	
	.hero.bg-start-master {
		padding: 115px 45px 50px 45px;
	}
	
	.box-text-top-master {
        padding: 0px 650px 0px 0px;
    }
	
	.hero.bg-start-home {
		padding: 80px 45px 55px 45px;
	}
	
	.hero.bg-start-downloads {
		padding: 135px 45px 240px 45px;
	}
	
	.box-text-top-downloads {
        padding: 0px 675px 0px 0px;
    }
	
	.hero.bg-start-odisseyai {
		padding: 90px 45px 60px 45px;
	}
	
	.hero.bg-start-odisseyaii {
		padding: 95px 45px 50px 45px;
	}
	
	.hero.bg-start-pnl {
		padding: 120px 45px 30px 45px;
	}
	
	.box-text-top-practitioner {
        padding: 0px 805px 0px 0px;
    }
	
	.bg-start-oratoria-pnl {
		padding: 120px 5px 60px 45px;
	}
	
	.box-text-top-academy {
		padding: 0px 825px 0px 0px;
	}
	
	img.icon-certificate-jc {
		left: 345px;
	}
	
	h1.elcad {
		margin-top: 50px;
	}
	
	.about-container-jc {
		padding: 0px 175px;
	}
}

@media (max-width: 1024px) {
	.icons-section {
        justify-content: center;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .course-btn {
        padding: 20px 15px;
        font-size: 13px;
        min-height: 70px;
    }
    
    .popup-content {
        padding: 25px;
        margin: 20px;
    }
    
    #popup-title {
        font-size: 1.5rem;
    }
	
	.accordion-header {
        padding: 1.25rem;
    }
    
    .accordion-header h3 {
        font-size: 1.125rem;
        padding-right: 0.75rem;
    }
    
    .accordion-content.active {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .accordion-icon {
        font-size: 1.25rem;
        width: 20px;
        height: 20px;
    }
	
	.nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.stats-container-three {
        grid-template-columns: repeat(1, 1fr);
    }
	
	.stats-container-jc {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
	
	.about-container-cea {
        grid-template-columns: 1fr;
    }
	
	.testimonials-grid.grid-four.align-el.tel {
		padding: 0px 5px 0px 5px;
	}
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
	
	.testimonials-grid.pnl {
        grid-template-columns: 1fr;
		padding: 0px;
    }
	
	.testimonials-grid.coach {
        grid-template-columns: 1fr;
		padding: 0px;
    }
	
	.testimonials-container {
		padding: 0px 5px 0px 5px;
	}
	
	.testimonials-container.orat {
		padding: 0px 5px 0px 5px;
	}
	
	.testimonials-container.work {
		padding: 0px 0px 0px 0px;
	}
	
	.inner-container.container {
		padding: 0px 5px 0px 5px;
	}
	
	.testimonials-container.mp {
		padding: 0px 5px 0px 5px;
	}
	
	.testimonials-grid.grid-one {
		grid-template-columns: 1fr;
	}
	
	.testimonials-grid.grid-two {
		grid-template-columns: 1fr;
	}
	
	.testimonials-grid.grid-three {
		grid-template-columns: 1fr;
	}
	
	.testimonials-grid.grid-four {
		grid-template-columns: 1fr;
	}
	
	.row {
		grid-template-columns: 1fr;
	}
	
    .contact-container {
        grid-template-columns: 1fr;
    }
	
	.services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
	
	.footer-content-mp {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .video-thumbnail {
        height: 100px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
    
    .play-button svg {
        width: 18px;
        height: 18px;
    }
    
    .number,
    .text {
        font-size: 14px;
    }
	
    .content-item {
        margin-bottom: 12px;
    }
	
	.content-item-acad{
        margin-bottom: 12px;
    }
	
	.header-bni {
        grid-column: 1 / 1;
        text-align: center;
		grid-row: initial;
    }
	
	.competencias-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    
    .competencia-item {
        padding: 15px 10px;
        min-height: 70px;
    }
    
    .competencia-item h3 {
        font-size: 14px;
    }
    
    .competencia-item p {
        font-size: 12px;
    }
	
	.icons-section {
        flex-direction: column;
        align-items: center;
    }
    
    .icon-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
	.nav {
        padding: 1rem 3%;
    }
    
    .hero {
        padding: 100px 3% 60px;
    }
	
	.hero-text h1.odisseya {
        font-size: 18px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
	
	.stats-container-three {
        grid-template-columns: 1fr;
    }
	
	.stats-container-jc {
        grid-template-columns: 1fr;
    }
    
    .stats,
    .about,
    .services,
    .testimonials,
    .contact {
        padding: 1rem 8%;
    }
	
    .courses-grid {
        grid-template-columns: 1fr;
		padding-top: 20px;
    }
    
    .course-btn {
        padding: 18px 12px;
        font-size: 12px;
        min-height: 60px;
    }
	
	.accordion-header {
        padding: 1rem;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
    
    .accordion-content.active {
        padding: 0 1rem 1rem 1rem;
    }
    
    .accordion-content p {
        font-size: 0.9rem;
    }
	
	.testimonial-card {
        padding: 15px;
    }
	
	.col-md-3.col-sm-6 {
        padding: 15px;
    }
    
    .testimonials-grid {
        padding: 10px;
    }
	
    .testimonial-text {
        font-size: 13px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .author-title {
        font-size: 11px;
    }
    
    .competencia-item {
        padding: 12px 8px;
        min-height: 60px;
    }
    
    .competencia-item h3 {
        font-size: 13px;
    }
    
    .competencia-item p {
        font-size: 11px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

.service-card .service-image {
    width: 100%;
    height: auto;
	padding: 0px 35px 0px 35px;
    object-fit: cover;
    border-radius: 50px;
}

.image-galeria-fotos img {
    width: 100%;
    height: auto;
}

.image-galeria-fotos-page img {
    width: 100%;
    height: auto;
}

.image img {
    width: 100%;
    height: auto;
}

.service-card .service-icon {
    display: none; /* Esconde o ícone quando a imagem é usada */
}

.service-card h3,
.service-card p {
    text-align: center;
}

.video-thumbnail1 {
    width: 100%;
    height: 120px;
    background-image: url('../images/gleisa-01-vídeo_Prancheta-1.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail1:hover {
    transform: scale(1.02);
}

.video-thumbnail2 {
    width: 100%;
    height: 120px;
    background-image: url('../images/flávio-01-vídeo_Prancheta-1.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail2:hover {
    transform: scale(1.02);
}

.video-thumbnail3 {
    width: 100%;
    height: 120px;
    background-image: url('../images/claudia-b-01-vídeo_Prancheta-1.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail3:hover {
    transform: scale(1.02);
}

.video-thumbnail4 {
    width: 100%;
    height: 120px;
    background-image: url('../images/marco-01-01-vídeo_Prancheta-1.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail4:hover {
    transform: scale(1.02);
}

.video-thumbnail5 {
    width: 100%;
    height: 120px;
    background-image: url('../images/gabriel-01_Prancheta-1.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail5:hover {
    transform: scale(1.02);
}

.video-thumbnail6 {
    width: 100%;
    height: 120px;
    background-image: url('../images/danilo-01-vídeo_Prancheta-1.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail6:hover {
    transform: scale(1.02);
}

.video-thumbnail7 {
    width: 100%;
    height: 120px;
    background-image: url('../images/vídeo vania_Prancheta 1.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail7:hover {
    transform: scale(1.02);
}

.video-thumbnail8 {
    width: 100%;
    height: 120px;
    background-image: url('../images/vídeo wesley_Prancheta 1.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail8:hover {
    transform: scale(1.02);
}

.video-thumbnail9 {
    width: 100%;
    height: 120px;
    background-image: url('../images/vídeo gardenia_Prancheta 1.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail9:hover {
    transform: scale(1.02);
}

.video-thumbnail10 {
    width: 100%;
    height: 120px;
    background-image: url('../images/vídeo erika_Prancheta 1.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail10:hover {
    transform: scale(1.02);
}

.video-thumbnail11 {
    width: 100%;
    height: 120px;
    background-image: url('../images/vídeo adriana_Prancheta 1.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail11:hover {
    transform: scale(1.02);
}

.video-thumbnail12 {
    width: 100%;
    height: 120px;
    background-image: url('../images/vídeo adriano_Prancheta 1.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail12:hover {
    transform: scale(1.02);
}

.video-thumbnail13 {
    width: 100%;
    height: 120px;
    background-image: url('../images/vídeo jovita_Prancheta 1.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail13:hover {
    transform: scale(1.02);
}

.video-thumbnail14 {
    width: 100%;
    height: 120px;
    background-image: url('../images/TATIANY vídeo-01.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail14:hover {
    transform: scale(1.02);
}

.video-thumbnail15 {
    width: 100%;
    height: 120px;
    background-image: url('../images/murilo b-01 vídeo_Prancheta 1-01.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail15:hover {
    transform: scale(1.02);
}

.video-thumbnail16 {
    width: 100%;
    height: 120px;
    background-image: url('../images/lucas b-01 vídeo_Prancheta 1-01-01.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail16:hover {
    transform: scale(1.02);
}

.video-thumbnail17 {
    width: 100%;
    height: 120px;
    background-image: url('../images/raquel b-01 vídeo_Prancheta 1-01.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail17:hover {
    transform: scale(1.02);
}

.video-thumbnail18 {
    width: 100%;
    height: 120px;
    background-image: url('../images/comercial esperança-01.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail18:hover {
    transform: scale(1.02);
}

.play-button {
    width: 30px;
    height: 30px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: #c0392b;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.play-button svg {
    margin-left: 3px;
}

.rating {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.star {
    color: #e74c3c;
    font-size: 16px;
    font-weight: bold;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    text-align: justify;
    flex-grow: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
	text-align: left;
	padding-left: 5px;
}

.author-name {
    font-weight: bold;
    font-size: 14px;
    color: #6c6c6c;
	line-height: 18px;
}

.author-title {
    font-size: 14px;
    color: #777;
	line-height: 16px;
}

/* Animações suaves */
.testimonial-card {
    transition: all 0.3s ease;
}

.col-md-3.col-sm-6 {
	transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card-sobre {
    transition: all 0.3s ease;
}

.testimonial-card-sobre:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.star {
    transition: color 0.3s ease;
}

.testimonial-card:hover .star {
    color: #c0392b;
}

/*start*/
.banner {
    background: #fdf4f4;
    border-radius: 8px;
	border-color: #ac3435;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 585px;
    min-height: 157px;
    padding: 20px 75px 20px 75px;
    position: relative;
}

.banner-pnl {
    background: #f5cece;
    border-radius: 8px;
	border-color: #ac3435;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-height: 157px;
    position: relative;
}

.banner-oratoria {
    background: #fff5c8;
    border-radius: 8px;
	border-color: #ac3435;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    height: auto;
    position: relative;
}

.banner-bl {
    background: #c0cbd8 !important;
	border-radius: 8px;
	border-color: #ac3435;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-height: 157px;
    padding: 20px 25px 25px 25px;
    position: relative;
}

.banner-master {
    background: #cccccc !important;
	border-radius: 8px;
	border-color: #cccccc;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-height: 157px;
    position: relative;
}

.banner-acad {
    background: #9dc9f4;
    border-radius: 8px;
	border-color: #ac3435;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-height: 157px;
    position: relative;
}

.banner-blaci {
    background: #ffefae;
	border-radius: 8px;
	border-color: #ac3435;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 20px 25px 25px 25px;
    position: relative;
}

.banner-avc {
    background: #bbced9;
	border-radius: 8px;
	border-color: #ac3435;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 20px 20px 25px 20px;
    position: relative;
}

.banner-work {
    background: #adbdde;
	border-radius: 8px;
	border-color: #adbddc;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 20px 20px 25px 20px;
    position: relative;
}

.banner-clima {
    background: #dcecb5;
	border-radius: 8px;
	border-color: #ac3435;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 20px 20px 25px 20px;
    position: relative;
}

.banner-cea {
    background: #88ddff;
	border-radius: 8px;
	border-color: #ac3435;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 20px 20px 25px 20px;
    position: relative;
}

.banner-team {
    background: #bed0df;
	border-radius: 8px;
	border-color: #bed0d0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 20px 20px 25px 20px;
    position: relative;
}

.banner-corp {
    background: #b6dffc;
	border-radius: 8px;
	border-color: #b6dffd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 20px 20px 25px 20px;
    position: relative;
}

.banner-coach {
    background: #d0f4e4 !important;
	border-radius: 8px;
	border-color: #ac3435;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-height: 157px;
	margin: 0px 0px 0px 0px;
    padding: 20px 65px 25px 65px;
    position: relative;
}

.content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px;
    height: 100%;
}

.contenti {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 8px;
    height: 100%;
}

.header-bn {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.header-bni {
    grid-column: 1 / 1;
    grid-row: 1 / 1;
}

.pricing {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.pricing-pnl {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    text-align: center;
    flex-direction: column;
    align-items: flex-end;
}

.price-pnl {
    font-size: 26px;
    font-weight: bold;
    color: #d3000b;
    line-height: 1;
	text-align: center;
}

.price-pnl b {
    font-size: 36px;
}

strike.price-pnl {
    font-size: 18px;
    font-weight: bold;
    color: #d3000b;
    line-height: 1;
	text-align: center;
}

strike.price-pnl b {
    font-size: 18px;
}

.pricing-ch {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 26px;
    font-weight: bold;
    color: #d32f2f;
    line-height: 1;
}

.no-interest {
    font-size: 14px;
    color: #d32f2f;
    font-weight: normal;
    margin-top: 2px;
}

.no-interest-pnl {
    font-size: 18px;
    color: #4c4c4c;
    font-weight: bold;
    margin-top: 2px;
}

.no-interest-coach {
    font-size: 18px;
    color: #000;
    font-weight: bold;
    margin-top: 2px;
}

.description {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    margin-top: 8px;
}

.description p {
    font-size: 14px;
    color: #555;
    line-height: 1.3;
}

.benefits {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    margin-top: 4px;
}

.benefits p {
    font-size: 10px;
    color: #666;
    line-height: 1.2;
}

.benefits-coach {
	grid-column: 1 / 4;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4px;
}

.benefits-coach p {
    font-size: 16px;
    color: #666;
    line-height: 1.2;
}

.actions {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 12px;
}

.actions-pnl {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
    gap: 15px;
    align-items: center;
    margin-top: 12px;
}

.actions-coach {
    grid-column: 1 / 4;
    align-items: center;
    margin-top: 12px;
}

.btn-comprar {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-comprar:hover {
    background-color: #b71c1c;
}

.btn-comprar-orat {
    background-color: #d86824;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-comprar-orat:hover {
    background-color: #d86823;
}

.link-saiba-mais-orat {
    color: #e8bb28;
	background-color: #fff;
	padding: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: color 0.3s ease;
	border-radius: 10px;
}

.link-saiba-mais-orat:hover {
    color: #e8bb27;
    text-decoration: underline;
}

.link-saiba-mais-orato {
    color: #d86824;
	background-color: #fff;
	padding: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: color 0.3s ease;
	border-radius: 10px;
}

.link-saiba-mais-orato:hover {
    color: #d86825;
    text-decoration: underline;
}

.link-saiba-mais-oratz {
    color: #fff;
	background-color: #e8bb28;
	padding: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: color 0.3s ease;
	border-radius: 45px;
}

.link-saiba-mais-oratz:hover {
    color: #e8bb27;
    text-decoration: underline;
}

.btn-comprar-re {
    background-color: #235e95;
    color: white;
    border: none;
    padding: 10px 35px 10px 35px;
    border-radius: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-comprar-re:hover {
    background-color: #4c5691;
}

.btn-comprar-rem {
    background-color: #6b6b6b;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-comprar-rem:hover {
    background-color: #6b6b6c;
}

.btn-comprar-remif {
    background-color: #2f3c5b;
    color: white;
    border: none;
	margin: 5px;
    padding: 8px 20px;
    border-radius: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-comprar-remif:hover {
    background-color: #2f3c53;
}

.link-saiba-mais {
    color: #d32f2f;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.link-saiba-mais-pnl {
	font-family: 'Myriad Pro Bold', sans-serif;
	background-color: #fff;
	padding: 10px 20px 10px 20px;
	border-radius: 15px;
    color: #d3000b;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
	margin-bottom: 15px;
}

.link-saiba-mais:hover {
    color: #b71c1c;
    text-decoration: underline;
}

.link-saiba-mais-re {
    background-color: #fff;
    color: #4c5692;
    border: none;
    padding: 10px 23px 10px 23px;
    border-radius: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.link-saiba-mais-re:hover {
    color: #4c5691;
    text-decoration: underline;
}

.link-saiba-mais-rem {
	background-color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    color: #6b6b6b;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.link-saiba-mais-rem:hover {
    color: #6b6b6c;
    text-decoration: underline;
}

.link-saiba-mais-remif {
	background-color: #fff;
    padding: 8px 20px;
    border-radius: 15px;
    color: #364260;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.link-saiba-mais-remif:hover {
    color: #364263;
    text-decoration: underline;
}

.link-saiba-mais-remifc {
	background-color: #fff;
    padding: 8px 20px;
    border-radius: 15px;
    color: #364260;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.link-saiba-mais-remifc:hover {
    color: #364263;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 480px) {
    .banner {
        width: 100%;
        max-width: 400px;
        padding: 15px;
    }
	
	.banner-bl {
        width: 100%;
        max-width: 400px;
        padding: 15px 15px 25px 15px;
    }
	
	.banner-master {
        width: 100%;
        max-width: 400px;
        padding: 30px 10px 35px 10px;
    }
	
	.banner-coach {
        width: 100%;
        max-width: 400px;
        padding: 15px;
    }
    
    .content {
        grid-template-columns: 1fr;
        gap: 10px;
    }
	
	.contenti {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .header-bn {
        grid-column: 1 / 2;
        text-align: center;
		grid-row: initial;
    }
    
    .pricing {
        grid-column: 1 / 2;
        text-align: center;
        align-items: center;
    }
	
	.pricing-pnl {
        grid-column: 1 / 2;
        text-align: center;
        align-items: center;
    }
	
	.pricing-ch {
        grid-column: 1 / 2;
        text-align: center;
        align-items: center;
    }
    
    .description,
    .benefits {
        grid-column: 1 / 2;
        text-align: center;
    }
    
    .actions {
        grid-column: 1 / 2;
        justify-content: center;
    }
	
	.actions-pnl {
        grid-column: 1 / 2;
        justify-content: center;
    }
	
	.actions-coach {
        grid-column: 1 / 2;
        justify-content: center;
    }
    
    .number,
    .text {
        font-size: 13px;
    }
	
    .content-item {
        margin-bottom: 10px;
    }
	
	.content-item-acad{
        margin-bottom: 10px;
    }
}

/* Container principal */
.artigos-container {
    background-color: #1a1a1a;
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artigos-wrapper {
    max-width: 1200px;
    width: 100%;
    padding: 10px 60px;
}

/* Título principal */
.artigos-titulo {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Grid de artigos */
.artigos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Card individual do artigo */
.artigo-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
	height: 275px;
}

.artigo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Título do artigo */
.artigo-titulo {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #4a4a4a !important;
    line-height: 1.4 !important;
    padding: 20px 20px 15px 20px !important;
    margin: 0 !important;
    text-align: center !important;
	height: 85px;
	display: flex;
    flex-direction: column;
    align-items: center;
}

/* Link e imagem do artigo */
.artigo-link {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.artigo-imagem {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.artigo-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artigo-card:hover .artigo-imagem img {
    transform: scale(1.05);
}

/* Navegação */
.artigos-navegacao {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    margin-top: 20px;
}

.navegacao-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

/* Setas de navegação */
.nav-seta {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #6c6c6c;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.nav-seta:hover:not(.disabled) {
    background-color: #6c6c6c;
    color: #fff;
}

.nav-seta.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Botão próxima página */
.nav-botao-proximo {
    background-color: #c93838;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.nav-botao-proximo:hover:not(.disabled) {
    background-color: #a82e2e;
    transform: translateY(-2px);
}

.nav-botao-proximo.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Indicador de página */
.nav-indicador {
    position: absolute;
    right: 0;
    font-size: 14px;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.pagina-atual {
    font-weight: 700;
    color: #6c6c6c;
}

/* Responsividade */
@media (max-width: 1024px) {
    .artigos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .artigos-wrapper {
        padding: 40px 40px;
    }
}

@media (max-width: 768px) {
    .artigos-container {
        padding: 30px 15px;
    }
    
    .artigos-wrapper {
        padding: 30px 25px;
    }
    
    .artigos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .artigos-titulo {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .navegacao-wrapper {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-indicador {
        position: static;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .artigos-titulo {
        font-size: 24px;
    }
    
    .nav-botao-proximo {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .nav-seta {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Responsividade para Tablets */
@media (max-width: 1024px) {
    .nav-menu-sticky {
        gap: 2px;
    }
	
	.logo-sticky img {
		left: 0px;
    }
	
	.main-nav-sticky {
		margin: 0 0px;
	}
	
	.sticky-header-top .container-top {
		padding: 0 30px;
	}
    
    .nav-menu-sticky > li > a {
        padding: 15px;
        font-size: 13px;
    }
    
    .search-box input {
        width: 140px;
    }
}

/* Responsividade para Mobile */
@media (max-width: 768px) {
	.sticky-header-top .container-top {
		padding: 0 25px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav-sticky {
        position: fixed;
        top: 50px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #555555;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: left 0.3s ease;
        overflow-y: auto;
        margin: 0;
    }
    
    .main-nav-sticky.active {
        left: 0;
    }
    
    .nav-menu-sticky {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-menu-sticky > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu-sticky > li > a {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-dropdown.active .dropdown {
        max-height: 500px;
    }
    
    .has-dropdown:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .dropdown li a {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .dropdown li a:hover {
        padding-left: 35px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .search-box {
        width: 155px;
    }
	
	.search-box button {
		padding: 0;
	}
    
	.search-box input {
        width: 125px;
    }
	
    .account-link {
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .logo-sticky img {
        height: 40px;
		position: relative;
		top: 7px;
		left: 0px;
    }
    
    .account-link {
        font-size: 10px;
        padding: 5px 10px;
    }
}