@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ══════════════════════════════
   RESET
══════════════════════════════ */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* ══════════════════════════════
   VARIÁVEIS & BASE
══════════════════════════════ */
:root {
    --green: #003327;
    --gold: #C1AC69;
    --silver: #B0B9BF;
    --light: #f7f5f0;
    --green: #003327;
    --green-mid: #00473a;
    --green-acc: #00a876;
    --green-lt: #eaf4ef;
    --gold-lt: #fdf6e3;
    --gold-brd: #e8d49a;
    --light: #f5f7f5;
    --light-brd: #dde8e3;
    --text-sub: #627a6e;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: Open Sans, sans-serif;
    color: #aeb4b6;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
}

.wrapper {
    overflow-x: hidden;
    max-width: 100%;
}

body.no-scroll {
    overflow-y: hidden;
}

button {
    cursor: pointer;
    border: 0;
}

button:focus {
    outline: none;
}

img {
    vertical-align: middle;
    height: auto;
}

a:focus,
a:hover {
    text-decoration: none;
}

a,
a:hover {
    color: inherit;
}

a {
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

p {
    font-size: 16px;
    line-height: 22.35px;
    color: #575757;
}

section {
    display: block;
    position: relative;
}

select:focus {
    outline: none;
    box-shadow: none;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: inherit;
}

/* ══════════════════════════════
   UTILITÁRIOS GERAIS
══════════════════════════════ */
h1,
h2,
h3 {
    font-family: Poppins, sans-serif;
}

.sec-block {
    padding: 140px 0;
}

.sec-block-large {
    padding: 155px 0;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fixed-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.bg1 {
    background-image: url(../images/resources/bg1.jpg);
}

.bg2 {
    background-image: url(../images/resources/bg2.jpg);
}

.bg3 {
    background-image: url(../images/resources/bg3.jpg);
}

.bg4 {
    background-image: url(../images/resources/bg4.jpg);
}

.lnk-dv {
    margin-top: 30px;
}

.bg-gray {
    background-color: #F3F4F6 !important;
}

.position-static {
    position: static !important;
}

.gap-2 {
    gap: .5rem !important;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-children>* {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.stagger-children>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-children>*:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-children>*:nth-child(3) {
    animation-delay: 0.3s;
}

.progress-bar {
    transition-duration: 3s;
}

/* ══════════════════════════════
   BOTÕES
══════════════════════════════ */
.btn-default {
    display: inline-block;
    color: #fff;
    font-size: 18.29px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    background-color: #003327;
    height: 40px;
    line-height: 40px;
    padding: 0 60px;
    position: relative;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.btn-default:hover {
    color: #fff;
    background-color: #C1AC69;
}

.btn-default:hover i {
    color: #C1AC69;
}

.btn-default i {
    background-color: #fff;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50px;
    color: #155799;
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    transition: left 0.5s ease;
}

.btn-default:hover i {
    left: calc(100% - 40px);
}

.btn-plan {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 40px;
    background: #0d4b3f;
    color: #fff;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-plan:hover {
    background: #08352c;
}

/* ══════════════════════════════
   SOCIAL LINKS
══════════════════════════════ */
.social-links li {
    display: inline-block;
    margin-right: 16px;
}

.social-links li:last-child {
    margin-right: 0;
}

.social-links li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 100px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background-color: #1260a0;
}

.social-links li a:hover {
    transform: scale(1.2);
}

.social-icons li {
    display: inline-block;
    margin-right: 15px;
}

.social-icons li:last-child {
    margin-right: 0;
}

.social-icons li a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    text-align: center;
    background: linear-gradient(270deg, #159957, #155799);
    color: #fff;
    font-size: 24px;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999 !important;
    background: transparent;
    transition: all 0.4s ease;
}

header .header-content {
    border-bottom: 1px solid #eae5e5;
    padding: 26px 0 25px;
    transition: all 0.4s ease;
}

header.header-show {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

header.sticky-active {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

header.sticky-active .header-content {
    padding: 12px 0;
}

header .logo img {
    transition: all 0.4s ease;
    max-width: 240px;
}

header .header-content .logo {
    flex: 0 0 33%;
    max-width: 33%;
}

header .header-content .contact-add {
    margin-left: auto;
    flex: 0 0 57.5%;
    max-width: 57.5%;
}

header .header-content .contact-add li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

header .header-content .contact-add li .contact-info>img {
    vertical-align: top;
    position: relative;
    top: 6px;
}

header .header-content .contact-add li .contact-info .contact-tt {
    max-width: calc(100% - 21px);
    display: inline-block;
    padding-left: 10px;
}

header .header-content .contact-add li .contact-info .contact-tt>h4 {
    color: #2b2b2b;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

header .header-content .contact-add li .contact-info .contact-tt>span {
    display: block;
    color: #575757;
    font-size: 14px;
}

header .navigation-bar {
    padding: 23px 0 25px;
}

header .navigation-bar nav {
    flex: 0 0 75%;
    max-width: 75%;
}

header .navigation-bar nav ul li {
    display: inline-block;
    margin-right: 59px;
    position: relative;
}

header .navigation-bar nav ul li:last-child {
    margin-right: 0;
}

header .navigation-bar nav ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

header .navigation-bar nav ul li a {
    padding-bottom: 3px;
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    position: relative;
}

header.sticky-active .navigation-bar nav ul li a {
    color: #000 !important;
}

header.sticky-active .navigation-bar .fixed-nav a {
    color: #ffffff !important;
}

header .navigation-bar nav ul li a:hover {
    color: #C1AC69 !important;
}

header .navigation-bar .fixed-nav a:hover,
header.sticky-active .navigation-bar .fixed-nav a:hover {
    color: #000000 !important;
}

header .navigation-bar nav ul li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #003327;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

header .navigation-bar nav ul li a.active:before,
header .navigation-bar nav ul li a:hover:before {
    opacity: 1;
    visibility: visible;
    width: 20px;
}

header .navigation-bar nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: #C1AC69;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 15px;
    padding: 20px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

header .navigation-bar nav ul ul li {
    margin-right: 0;
    display: block;
    margin-bottom: 10px;
}

header .navigation-bar nav ul ul li a {
    display: block;
    font-size: 16px;
}

header .navigation-bar nav ul ul li a:before {
    display: none;
}

header .navigation-bar nav ul ul li:last-child {
    margin-bottom: 0;
}

header .navigation-bar nav ul ul ul {
    display: block;
    position: static;
    width: 100%;
    box-shadow: inherit;
    opacity: 1;
    visibility: visible;
    padding: 0;
    margin-top: 0;
    padding-left: 20px;
}

/* Logo dual (light/dark) */
.logo {
    position: relative;
    display: inline-block;
}

.logo img {
    transition: opacity 0.3s ease;
}

.logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

header.sticky-active .logo-light,
header.header-show .logo-light {
    opacity: 0;
    max-width: 240px;
}

header.sticky-active .logo-dark,
header.header-show .logo-dark {
    opacity: 1;
    max-width: 240px;
}

.logo-dark-footer {
    opacity: 1;
    max-width: 240px;
}

/* ══════════════════════════════
   MENU MOBILE
══════════════════════════════ */
.menu-btn {
    text-align: center;
    position: relative;
    z-index: 9999999;
    cursor: pointer;
    margin-left: auto;
    width: 50px;
    height: 50px;
    line-height: 54px;
    display: none;
}

.menu-btn>a {
    display: inline-block;
    width: 24px;
}

.menu-btn>a span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    margin-bottom: 5px;
    transition: all 0.4s ease-in-out;
}

.menu-btn>a span:last-child {
    margin-bottom: 0;
}

.menu-btn.active span.bar1 {
    transform: translateY(8px) rotate(-45deg);
}

.menu-btn.active span.bar2 {
    opacity: 0;
    visibility: hidden;
    transform: scaleX(2);
}

.menu-btn.active span.bar3 {
    transform: translateY(-6px) rotate(-135deg);
}

.responsive-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    background-color: #C1AC69;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    height: auto;
    padding: 50px;
    opacity: 0;
    transform: translateX(-100%);
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.responsive-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 999999 !important;
}

.responsive-menu ul li {
    margin-bottom: 30px;
}

.responsive-menu ul li:last-child {
    margin-bottom: 0;
}

.responsive-menu ul li a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.menu-close button {
    background: transparent;
    border: none;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-close button:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

/* ══════════════════════════════
   HERO / BANNER
══════════════════════════════ */
.main-section {
    position: relative;
    /* padding-top: 180px; */
    overflow: hidden;
    height: 100vh;
    max-height: 600px;
}

.main-section .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    /* proporção 16:9 */
    min-height: 100%;
    min-width: 177.78vh;
    /* proporção 16:9 invertida */
    border: none;
    pointer-events: none;
}

.main-section .main-banner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: calc(100% - -70px);
    /* desconta a altura do header */
    padding-top: 0;
}

.main-section header,
.main-section .responsive-menu,
.main-section .main-banner,
.main-section .main-title {
    position: relative;
    z-index: 1;
}

.main-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.main-section,
.main-section .elements-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main-section .elements-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 536px;
    height: 596px;
    background-image: url(../img/elements.png);
}

.main-section .main-title {
    color: #C1AC69;
    font-size: 112px;
    font-weight: 600;
    position: absolute;
    bottom: 32%;
    left: -5px;
    opacity: 0.1;
    z-index: -1;
}

.main-banner {
    padding: 64px 0;
    z-index: 1;
}

.main-banner .banner-text>h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 66px;
    font-weight: 600;
    margin-bottom: 26px;
    padding-right: 20px;
}

.main-banner .banner-text>h2 span {
    display: inline-block;
    color: #C1AC69;
    position: relative;
}

.main-banner .banner-text>h2 span:before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #C1AC69;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease-in-out;
}

.main-banner .banner-text p {
    color: #ffffff;
    font-size: 16px;
    line-height: 22.35px;
    max-width: 575px;
    margin-bottom: 59px;
}

.main-banner .banner-text .search-form {
    max-width: 475px;
    position: relative;
    z-index: 1;
}

.main-banner .banner-text .search-form:before {
    content: "";
    position: absolute;
    top: -22px;
    right: -16px;
    width: 94px;
    height: 94px;
    background-image: url(../img/circle1.png);
    background-repeat: no-repeat;
    z-index: -1;
}

.main-banner .banner-text .search-form:after {
    content: "";
    position: absolute;
    top: -27px;
    left: 25px;
    width: 60px;
    height: 60px;
    background-image: url(../img/circle.png);
    background-repeat: no-repeat;
    z-index: -1;
}

.main-banner .banner-text .search-form input {
    width: 100%;
    height: 50px;
    color: #575757;
    font-size: 14.23px;
    padding: 0 20px;
    border: 2px solid #f6f4f4;
    border-radius: 30px;
}

.main-banner .banner-text .search-form button {
    position: absolute;
    top: 50%;
    right: 20px;
    padding: 0;
    border: 0;
    color: #155799;
    background-color: inherit;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.main-banner .banner-text .search-form button:hover {
    color: #C1AC69;
}

/* ══════════════════════════════
   TÍTULOS DE SEÇÃO
══════════════════════════════ */
.section-title {
    margin-bottom: 43px;
}

.section-title>h2 {
    color: #2b2b2b;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 7px;
}

.section-title>h2>span {
    color: #C1AC69;
}

.section-title>h3 {
    color: #C1AC69;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 7px;
}

.section-title p {
    color: #161616;
    font-size: 17px;
    line-height: 22px;
    max-width: 650px;
    margin: 0 auto 10px;
}

.sec-title {
    margin-bottom: 42px;
}

.sec-title>h2 {
    color: #2b2b2b;
    font-size: 48.77px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 7px;
    position: relative;
    z-index: 1;
}

.sec-title>h2.no-bg:before {
    display: none;
}

.sec-title p {
    max-width: 530px;
}

.plans-title>h2 {
    color: #2b2b2b;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 7px;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-us-section {
    padding: 124px 0 100px;
}

.about-us-section .about-sec {
    margin-bottom: 65px;
}

.about-us-section .about-sec .abt-col {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(21, 87, 153, 0.08);
    padding: 25px 20px 19px;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

.about-us-section .about-sec .abt-col:hover {
    box-shadow: 0 0 20px rgba(21, 87, 153, 0.09);
}

.about-us-section .about-sec .abt-col>img {
    margin-bottom: 9px;
}

.about-us-section .about-sec .abt-col>h3 {
    color: #2b2b2b;
    font-size: 18.29px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 3px;
}

.about-us-section .about-sec .abt-col p {
    color: #575757;
    font-size: 13.5px;
    line-height: 22.35px;
}

.about-us-section .abt-img {
    background-image: url(../img/abt-bg.png);
    background-repeat: no-repeat;
    background-position: 50%;
}

.about-us-section .abt-img>img {
    max-width: 100%;
}

/* ══════════════════════════════
   CLASSES
══════════════════════════════ */
.classes-section {
    padding-bottom: 100px;
}

.classes-section .classes-col .class-thumb {
    position: relative;
}

.classes-section .classes-col .class-thumb:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #1161a0;
}

.classes-section .classes-col .class-thumb>img {
    border-radius: 10px 10px 0 0;
    min-height: 180px;
    object-fit: cover;
}

.classes-section .classes-col .class-thumb .crt-btn {
    position: absolute;
    bottom: -19px;
    right: 20px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 100px;
    background: linear-gradient(180deg, #fdc830, #C1AC69);
    text-align: center;
}

.classes-section .classes-col .class-info {
    padding: 24px 15px 27px;
    border: 1px solid #d6d6d6;
    border-top: 0;
    border-radius: 0 0 10px 10px;
}

.classes-section .classes-col .class-info>h3 {
    color: #2b2b2b;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 13px;
}

.classes-section .classes-col .class-info>span {
    display: inline-block;
    color: #575757;
    font-size: 14.23px;
    margin-bottom: 21px;
}

.classes-section .classes-col .class-info .posted-by>img {
    border-radius: 100px;
    display: inline-block;
}

.classes-section .classes-col .class-info .posted-by a {
    display: inline-block;
    color: #575757;
    font-size: 14.23px;
    padding-left: 7px;
    font-weight: 600;
}

.classes-section .classes-col .class-info .price {
    margin-left: auto;
    color: #155799;
    font-size: 18.29px;
    font-weight: 700;
    font-family: Poppins, sans-serif;
}

/* ══════════════════════════════
   TEACHERS
══════════════════════════════ */
.teachers-section {
    padding: 45px 0 138px;
}

.teachers-section .section-title>h2 {
    line-height: 58.93px;
    margin-bottom: 16px;
}

.teachers-section .section-title p {
    max-width: 580px;
}

.teachers-section .teachers .teacher .teacher-img {
    margin-bottom: 13px;
    position: relative;
}

.teachers-section .teachers .teacher .teacher-img>img {
    border-radius: 25px;
}

.teachers-section .teachers .teacher .teacher-img .sc-div {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 40px;
    background: linear-gradient(180deg, #fdc830, #C1AC69);
    z-index: 99;
    text-align: center;
    border-radius: 30px;
    padding: 8px 0 11px;
}

.teachers-section .teachers .teacher .teacher-img .sc-div:hover ul {
    display: block;
}

.teachers-section .teachers .teacher .teacher-img .sc-div ul {
    margin-bottom: 14px;
    display: none;
}

.teachers-section .teachers .teacher .teacher-img .sc-div ul li {
    display: block;
    margin-bottom: 6px;
}

.teachers-section .teachers .teacher .teacher-img .sc-div ul li:last-child {
    margin-bottom: 0;
}

.teachers-section .teachers .teacher .teacher-img .sc-div ul li a {
    color: #fff;
    font-size: 14px;
}

.teachers-section .teachers .teacher .teacher-img .sc-div>span {
    display: inline-block;
    cursor: pointer;
}

.teachers-section .teachers .teacher .teacher-info {
    padding: 0 20px;
}

.teachers-section .teachers .teacher .teacher-info>h3 {
    color: #2b2b2b;
    font-size: 18.29px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 1px;
}

.teachers-section .teachers .teacher .teacher-info>span {
    display: block;
    color: #155799;
    font-size: 14.23px;
    font-weight: 600;
}

/* ══════════════════════════════
   COURSES
══════════════════════════════ */
.course-section {
    padding-bottom: 138px;
}

.course-section .find-course .sec-title h2:before {
    display: none;
}

.course-section .find-course .sec-title p {
    margin-bottom: 22px;
}

.course-section .find-course .sec-title>h3 {
    font-size: 20.32px;
    color: #155799;
    font-weight: 500;
}

.course-section .find-course .sec-title>h3 img {
    margin-right: 9px;
}

.course-section .find-course .sec-title>h3>strong {
    font-weight: 700;
}

.course-section .find-course .course-img {
    background-image: url(../img/abt-element.png);
    background-repeat: no-repeat;
    background-position: 50%;
}

.course-section .find-course .course-img>img {
    max-width: 100%;
}

.course-section .courses-list {
    margin-top: 63px;
}

.course-section .courses-list .course-card {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(21, 87, 153, 0.08);
    padding: 28px 28px 30px;
    border-radius: 25px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.course-section .courses-list .course-card:nth-child(2) {
    left: -100px;
}

.course-section .courses-list .course-card:before {
    content: "";
    position: absolute;
    top: 6px;
    left: -1px;
    width: 7px;
    height: 166px;
    background-image: url(../img/shape3.png);
    background-repeat: no-repeat;
}

.course-section .courses-list .course-card .course-meta li {
    display: inline-block;
    color: #575757;
    font-size: 14.23px;
    margin-right: 11px;
}

.course-section .courses-list .course-card .course-meta li img {
    margin-right: 7px;
}

.course-section .courses-list .course-card .course-meta li:last-child {
    margin-right: 0;
}

.course-section .courses-list .course-card .course-meta+span {
    display: inline-block;
    color: #155799;
    font-size: 18px;
    margin-left: auto;
    font-weight: 700;
}

.course-section .courses-list .course-card>h3 {
    color: #2b2b2b;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 500;
    margin-top: 18px;
    margin-bottom: 21px;
}

.course-section .courses-list .course-card .posted-by>img {
    margin-right: 7px;
    border-radius: 100px;
}

.course-section .courses-list .course-card .posted-by>a {
    display: inline-block;
    color: #575757;
    font-size: 14.23px;
    text-transform: capitalize;
    font-weight: 500;
}

.course-section .courses-list .course-card .locat {
    margin-left: auto;
    display: inline-block;
    color: #575757;
    font-size: 14.23px;
}

.course-section .courses-list .course-card .locat img {
    margin-right: 12px;
}

.course-section .all-btn {
    float: right;
    display: inline-block;
    color: #155799;
    font-size: 14.23px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
}

.course-section .all-btn i {
    padding-left: 13px;
}

/* Course card (testimonials style) */
.course-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.course-card p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-top: 15px;
}

.course-card p::before {
    content: "\201C";
    font-size: 40px;
    color: #e0e0e0;
    position: absolute;
    margin-left: -15px;
    margin-top: -10px;
}

.course-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #f5f5f5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* ══════════════════════════════
   BLOG
══════════════════════════════ */
.blog-section {
    padding-bottom: 146px;
}

.blog-section .section-title p {
    max-width: 550px;
}

.blog-section .blog-posts .blog-post.without-thumb:hover .blog-thumbnail:before {
    display: none;
}

.blog-section .blog-posts .blog-post .blog-thumbnail {
    position: relative;
    margin-bottom: 20px;
}

.blog-section .blog-posts .blog-post .blog-thumbnail:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.blog-section .blog-posts .blog-post .blog-thumbnail>a img,
.blog-section .blog-posts .blog-post .blog-thumbnail>img {
    border-radius: 20px;
}

.blog-section .blog-posts .blog-post .blog-thumbnail .category {
    position: absolute;
    bottom: -12px;
    left: 20px;
    padding: 0 20px;
    color: #2b2b2b;
    font-size: 14.23px;
    height: 24px;
    line-height: 24px;
    background-color: #ffd31d;
    border-radius: 30px;
}

.blog-section .blog-posts .blog-post:hover .blog-thumbnail:before {
    opacity: 1;
    visibility: visible;
}

.blog-section .blog-posts .blog-post .blog-info {
    padding: 0 20px;
}

.blog-section .blog-posts .blog-post .blog-info>h3 {
    color: #2b2b2b;
    font-size: 20.32px;
    font-weight: 500;
    margin-bottom: 4px;
}

.blog-section .blog-posts .blog-post .blog-info>h3:hover {
    color: #1260a0;
}

.blog-section .blog-posts .blog-post .blog-info p {
    margin-bottom: 13px;
}

.blog-section .blog-posts .blog-post .blog-info .read-more {
    display: inline-block;
    color: #155799;
    font-size: 14.23px;
    font-weight: 600;
}

.blog-section .blog-posts .blog-post .blog-info .read-more i {
    padding-left: 3px;
}

.meta {
    margin-bottom: 3px;
}

.meta li {
    display: inline-block;
    margin-right: 16px;
}

.meta li:last-child {
    margin-right: 0;
}

.meta li a {
    display: inline-block;
    color: #575757;
    font-size: 14.23px;
    font-weight: 500;
}

.meta li img {
    margin-right: 6px;
}

/* ══════════════════════════════
   NEWSLETTER
══════════════════════════════ */
.newsletter-section .newsletter-sec {
    background: linear-gradient(90deg, #fdc830, #C1AC69);
    padding: 57px 100px 55px;
    border-radius: 40px;
    margin-bottom: -135px;
    position: relative;
    overflow: hidden;
}

.newsletter-section .newsletter-sec:before {
    content: "";
    position: absolute;
    bottom: 46px;
    left: 0;
    width: 59px;
    height: 115px;
    background-image: url(../img/news-bg.png);
    background-repeat: no-repeat;
}

.newsletter-section .newsletter-sec:after {
    content: "";
    position: absolute;
    bottom: 15px;
    right: 0;
    width: 78px;
    height: 100px;
    background-image: url(../img/circle5.png);
    background-repeat: no-repeat;
}

.newsletter-section .newsletter-sec .newsz-ltr-text>h2 {
    color: #2b2b2b;
    font-size: 36.58px;
    line-height: 44.71px;
    margin-bottom: 33px;
    font-weight: 700;
}

.newsletter-section .newsletter-sec .newsletter-form {
    padding-left: 62px;
}

.newsletter-section .newsletter-sec .newsletter-form .row {
    margin: 0 -10px;
}

.newsletter-section .newsletter-sec .newsletter-form .row .col-md-4,
.newsletter-section .newsletter-sec .newsletter-form .row .col-md-12 {
    padding: 0 10px;
}

.newsletter-section .newsletter-sec .newsletter-form .form-group {
    margin-bottom: 20px;
}

.newsletter-section .newsletter-sec .newsletter-form .form-group input,
.newsletter-section .newsletter-sec .newsletter-form .form-group select {
    width: 100%;
    background-color: #fddead;
    height: 40px;
    line-height: 40px;
    color: #575757;
    font-size: 14.23px;
    padding: 0 16px;
    border-radius: 20px;
    border: 0;
    font-style: italic;
}

.newsletter-section .newsletter-sec .newsletter-form .form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";
}

.newsletter-section .newsletter-sec .newsletter-form .form-group textarea {
    color: #575757;
    font-size: 14.23px;
    background-color: #fddead;
    height: 70px;
    width: 100%;
    border-radius: 20px;
    border: 0;
    resize: none;
    padding: 10px 15px;
}

.newsletter-section .newsletter-sec .newsletter-form .form-group.select-tg {
    position: relative;
}

.newsletter-section .newsletter-sec .newsletter-form .form-group.select-tg:before {
    content: "\f107";
    font-family: Font Awesome\5 Free;
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 16px;
    color: #575757;
    transform: translateY(-50%);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
    background-color: #f2f7fd;
    padding: 219px 0 72px;
}

footer .top-footer {
    padding-bottom: 59px;
}

footer .widget-about>img {
    margin-bottom: 28px;
}

footer .widget-contact ul li {
    display: block;
    margin-bottom: 19px;
}

footer .widget-contact ul li:last-child {
    margin-bottom: 0;
}

footer .widget-contact ul li .contact-info>img {
    vertical-align: top;
    margin-right: 5px;
    position: relative;
    top: 6px;
}

footer .widget-contact ul li .contact-tt {
    display: inline-block;
    max-width: calc(100% - 21px);
}

footer .widget-contact ul li .contact-tt>h4 {
    color: #2b2b2b;
    font-size: 14.23px;
    margin-bottom: 6px;
    font-weight: 600;
}

footer .widget-contact ul li .contact-tt>span {
    display: block;
    color: #575757;
    font-size: 14.23px;
}

footer .widget-title {
    color: #2b2b2b;
    font-size: 18.29px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 15px;
}

footer .widget-links li {
    margin-bottom: 7px;
}

footer .widget-links li:last-child {
    margin-bottom: 0;
}

footer .widget-links li a {
    display: block;
    color: #232323;
    font-size: 16px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
}

footer .widget-links li a:hover {
    color: #C1AC69;
    padding-left: 5px;
}

footer .widget-iframe iframe {
    width: 100%;
    height: 200px;
}

footer .bottom-footer {
    border-top: 1px solid #bfbfbf;
    padding-top: 26px;
}

footer .bottom-footer .social-links {
    text-align: right;
}

.footer-studio p,
.footer-studio span {
    color: #232323;
}

.footer-studio a {
    color: #000000;
    transition: 0.3s;
}

.footer-studio a:hover {
    color: #C1AC69;
    text-decoration: none;
}

.footer-studio .social-links a {
    font-size: 18px;
    margin-left: 15px;
    color: #fff;
}

/* ══════════════════════════════
   PAGER
══════════════════════════════ */
.pager-section {
    position: relative;
    background-color: #003327;
    background-repeat: no-repeat;
    background-position: 100%;
    padding: 100px 0;
    overflow: hidden;
}

.pager-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.pager-section>* {
    position: relative;
    z-index: 2;
}

.pager-section .pager-content {
    position: relative;
    z-index: 99;
}

.pager-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.pager-section .pager-content>h2 {
    color: #ffffff;
    font-size: 28px;
    line-height: 66px;
    font-weight: 600;
    margin-bottom: 26px;
    padding-right: 20px;
}

.pager-content>p {
    color: #ffffff;
    font-size: 20px;
}

.pager-section .pager-content>ul li {
    display: inline-block;
    position: relative;
    padding: 0 12px;
}

.pager-section .pager-content>ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 1px;
    height: 15px;
    margin-left: 2px;
    background-color: #575757;
    transform: translateY(-50%);
    margin-top: 2px;
}

.pager-section .pager-content>ul li:last-child:before {
    display: none;
}

.pager-section .pager-content>ul li a,
.pager-section .pager-content>ul li span {
    display: inline-block;
    color: #575757;
    font-size: 14.23px;
}

.pager-section .page-titlee {
    color: #C1AC69;
    font-size: 162.6px;
    font-weight: 600;
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Pager decorativo com SVG */
.pager-section::before,
.pager-section::after {
    content: "";
    position: absolute;
    background: url('../img/simbolo-dourado.svg') no-repeat center !important;
    background-size: contain;
    width: 350px;
    height: 600px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.pager-section::before {
    top: -80px;
    left: -150px;
}

.pager-section::after {
    bottom: -100px;
    right: -150px;
}

.pager-section.blog-version {
    background-image: url(https://via.placeholder.com/1340x894);
    padding: 169px 0 242px;
    background-position: 50%;
    background-size: cover;
}

.pager-section.blog-version:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.pager-section.blog-version .pager-content>h2 {
    color: #fff;
    max-width: 650px;
    line-height: 81.3px;
    margin: 18px auto 32px;
    font-weight: 600;
}

.pager-section.blog-version .pager-content ul li:before {
    background-color: #fff;
}

.pager-section.blog-version .pager-content ul li a,
.pager-section.blog-version .pager-content ul li span {
    color: #fff;
}

.pager-section.blog-version .pager-content .categry {
    display: inline-block;
    color: #2b2b2b;
    font-size: 14.23px;
    font-style: italic;
    background-color: #ffd31d;
    padding: 0 20px;
    height: 24px;
    line-height: 24px;
    border-radius: 30px;
    margin-bottom: 13px;
}

.pager-section.blog-version .pager-content .meta li {
    margin-right: 0;
}

.pager-section.blog-version .pager-content .meta li:before {
    display: none;
}

/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */
.about-page-content {
    padding: 80px 0 0;
}

.about-page-content .abt-page-row {
    margin-bottom: 40px;
}

.about-page-content .abt-page-row .row {
    margin-bottom: 60px;
}

.about-page-content .abt-page-row .row:last-child {
    margin-bottom: 0;
}

.about-page-content .abt-page-row .section-title h2 {
    line-height: 50px;
    margin-bottom: 0;
}

.about-page-content .abt-page-row .section-title p {
    margin-bottom: 20px;
}

.abt-page-row .row {
    align-items: stretch;
}

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

.about-page-content .act-inffo>span {
    text-transform: uppercase;
    color: #C1AC69;
    font-size: 14.23px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    margin-bottom: -10px;
    display: block;
}

.about-page-content .act-inffo>h2 {
    color: #2b2b2b;
    font-size: 48.78px;
    font-weight: 600;
    margin-bottom: 18px;
}

.about-page-content .act-inffo p {
    margin-bottom: 22px;
}

.about-page-content .act-inffo ul li {
    display: block;
    color: #575757;
    font-size: 14.23px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.about-page-content .act-inffo ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 15px;
    background-image: url(../img/icon14.png);
    transform: translateY(-50%);
    margin-top: 2px;
}

.about-page-content .act-inffo ul li:last-child {
    margin-bottom: 0;
}

.benifit-section {
    padding: 120px 0 102px;
}

.benifit-section .section-title h2 {
    margin-bottom: 18px;
}

.benifit-section .section-title p {
    margin-bottom: 48px;
    max-width: 460px;
    margin: inherit;
}

.benifit-section .about-us-section .about-sec .row .col-lg-6:nth-child(2),
.benifit-section .about-us-section .about-sec .row .col-lg-6:nth-child(4) {
    top: 60px;
    position: relative;
}

.benifit-section .about-us-section .abt-col {
    margin-bottom: 30px;
}

/* ══════════════════════════════
   CLASSES PAGE
══════════════════════════════ */
.classes-page {
    padding: 140px 0;
}

.classes-page .classes-banner {
    background-image: url(https://via.placeholder.com/1680x1120);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    padding: 115px 80px 127px;
    position: relative;
    z-index: 1;
}

.classes-page .classes-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #fff, #fff);
    z-index: -1;
    opacity: 0.3;
}

.classes-page .classes-banner>span {
    display: inline-block;
    color: #C1AC69;
    font-size: 14.23px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: -7px;
    font-family: Poppins, sans-serif;
}

.classes-page .classes-banner>h2 {
    color: #2b2b2b;
    font-size: 48.78px;
    margin-bottom: 21px;
}

.classes-page .classes-section {
    padding-top: 80px;
    padding-bottom: 0;
}

.classes-page .classes-section .classes-col {
    margin-bottom: 30px;
}

/* ══════════════════════════════
   PAGINATION
══════════════════════════════ */
.mdp-pagiation {
    text-align: right;
    margin-top: 18px;
}

.mdp-pagiation .pagination {
    justify-content: flex-end;
}

.mdp-pagiation .pagination .page-item:first-child .page-link {
    border-radius: 0;
}

.mdp-pagiation .pagination .page-link {
    border: 0;
    padding: 0;
    line-height: inherit;
    color: #bbb;
    font-size: 18.29px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    position: relative;
    padding-bottom: 1px;
}

.mdp-pagiation .pagination .page-link:hover {
    background-color: inherit;
}

.mdp-pagiation .pagination .page-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #C1AC69;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.mdp-pagiation .pagination .page-link.active,
.mdp-pagiation .pagination .page-link:hover {
    color: #2b2b2b;
}

.mdp-pagiation .pagination .page-link.active:before,
.mdp-pagiation .pagination .page-link:hover:before {
    opacity: 1;
    visibility: visible;
}

.mdp-pagiation .pagination li {
    margin-right: 18px;
}

.mdp-pagiation .pagination li:last-child {
    margin-right: 0;
}

/* ══════════════════════════════
   PAGE CONTENT
══════════════════════════════ */
.page-content {
    padding: 140px 0;
}

.page-content.style2 {
    padding: 43px 0 140px;
}

.page-content.p80 {
    padding: 80px 0 140px;
}

.page-content .teachers-section {
    padding-bottom: 0;
}

.page-content .teachers-section .teacher {
    margin-bottom: 36px;
}

.page-content .course-section {
    padding: 0;
}

.page-content .course-section .courses-list {
    margin: 0;
}

.page-content .teachers-section.teacher-page .section-title h2 {
    font-size: 48px;
}

.page-content .teachers-section.teacher-page .teachers .teacher {
    margin-bottom: 0;
}

/* ══════════════════════════════
   SCHEDULE
══════════════════════════════ */
.schedule-page .nav-tabs {
    justify-content: center;
    border-bottom: 0;
    margin-bottom: 30px;
}

.schedule-page .nav-tabs li {
    display: inline-block;
    border-bottom: 0;
    margin-right: 30px;
}

.schedule-page .nav-tabs li:last-child {
    margin-right: 0;
}

.schedule-page .nav-tabs li a {
    display: inline-block;
    border: 0;
    height: 46px;
    line-height: 46px;
    background-color: #fff;
    border-radius: 30px;
    padding: 0 37px;
    border: 1px solid #dbdbdb;
    color: #575757;
    font-size: 18px;
    font-family: Poppins, sans-serif;
}

.schedule-page .nav-tabs li a.active {
    border-color: #C1AC69 !important;
    color: #C1AC69;
}

.schedule-page .schedule-content {
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid #e5dfdf;
    border-radius: 20px 0 0 0;
}

.schedule-page .schedule-content .schp-list {
    border-right: 1px solid #e5dfdf;
    width: 14.28571%;
}

.schedule-page .schedule-content .schp-list:first-child li .tb-head {
    border-radius: 20px 0 0 0;
    border-left: 0;
}

.schedule-page .schedule-content .schp-list:last-child {
    border-radius: 0 20px 0 0;
}

.schedule-page .schedule-content .schp-list:last-child li .tb-head {
    border-radius: 0 20px 0 0;
    border-right: 0;
}

.schedule-page .schedule-content .schp-list li {
    height: 200px;
    border-bottom: 1px solid #e5dfdf;
}

.schedule-page .schedule-content .schp-list li.no-height {
    height: auto;
}

.schedule-page .schedule-content .schp-list li .tb-head {
    background-color: #f2f7fd;
    text-align: center;
    padding: 12px 0;
    border: 1px solid #d5d7da;
    border-right: 0;
}

.schedule-page .schedule-content .schp-list li .tb-head h2 {
    color: #2b2b2b;
    font-size: 18px;
}

.schedule-page .schedule-content .schp-list li .mkd-info {
    padding: 41px 20px 35px;
    background: linear-gradient(180deg, #fdc830, #C1AC69);
    text-align: center;
    height: 100%;
}

.schedule-page .schedule-content .schp-list li .mkd-info.bg-2 {
    background: linear-gradient(180deg, #159957, #155799);
}

.schedule-page .schedule-content .schp-list li .mkd-info>h3 {
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 17px;
}

.schedule-page .schedule-content .schp-list li .mkd-info>span {
    display: block;
    color: #f2f7fd;
    font-size: 18px;
    font-style: italic;
    font-family: Poppins, sans-serif;
}

.schedule-mobile-content {
    text-align: center;
    display: none;
}

.schedule-mobile-content .ttb-list h2 {
    color: #2b2b2b;
    font-size: 18px;
    background-color: #f2f7fd;
    padding: 15px 0;
}

.schedule-mobile-content .ttb-list>ul li {
    display: block;
}

.schedule-mobile-content .ttb-list>ul li .dd-info {
    background: linear-gradient(180deg, #fdc830, #C1AC69);
    padding: 35px 20px;
}

.schedule-mobile-content .ttb-list>ul li .dd-info h3 {
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}

.schedule-mobile-content .ttb-list>ul li .dd-info>span {
    display: block;
    font-style: italic;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    color: #fff;
}

.schedule-mobile-content .ttb-list>ul li:nth-child(2n) .dd-info {
    background: linear-gradient(180deg, #159957, #155799);
}

/* ══════════════════════════════
   CONTACT / MAP
══════════════════════════════ */
.mdp-map {
    margin-bottom: 36px;
}

.mdp-map iframe {
    width: 100%;
    height: 455px;
}

.mdp-contact .comment-area h3 {
    color: #2b2b2b;
    font-size: 36.59px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 23px;
}

.mdp-contact .comment-area form .row {
    margin: 0 -10px;
}

.mdp-contact .comment-area form .row .col-lg-4,
.mdp-contact .comment-area form .row .col-lg-6,
.mdp-contact .comment-area form .row .col-lg-12 {
    padding: 0 10px;
}

.mdp-contact .comment-area form .form-group {
    margin-bottom: 20px;
}

.mdp-contact .comment-area form .form-group input,
.mdp-contact .comment-area form .form-group textarea {
    width: 100%;
    height: 40px;
    border: 1px solid #ece8e8;
    border-radius: 30px;
    padding: 0 15px;
    font-size: 14.23px;
    color: #575757;
}

.mdp-contact .comment-area form .form-group textarea {
    height: 94px;
    padding: 15px;
    border-radius: 20px;
    resize: none;
    vertical-align: middle;
}

.mdp-contact .comment-area form .form-submit {
    margin-top: 10px;
    text-align: right;
}

.mdp-contact .comment-area form .form-submit .btn-default {
    padding: 0 40px 0 60px;
}

.mdp-contact .mdp-our-contacts ul li {
    margin-bottom: 30px;
}

.mdp-contact .mdp-our-contacts ul li:last-child {
    margin-bottom: 0;
}

.mdp-contact .mdp-our-contacts h3 {
    color: #2b2b2b;
    font-size: 36.59px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 23px;
}

.mdp-contact .mdp-our-contacts .dd-cont {
    padding-left: 15px;
}

.mdp-contact .mdp-our-contacts .dd-cont>h4 {
    color: #2b2b2b;
    font-size: 14.23px;
    margin-bottom: 5px;
    font-weight: 600;
}

.mdp-contact .mdp-our-contacts .dd-cont>span {
    display: block;
    color: #575757;
    font-size: 14.23px;
}

/* ══════════════════════════════
   BLOG SINGLE / POSTS
══════════════════════════════ */
.blog-post.single {
    border-bottom: 1px solid #e8e3e3;
    padding-bottom: 19px;
    margin-bottom: 77px;
}

.blog-post.single p {
    margin-bottom: 32px;
}

.blog-post.single .oderd {
    margin-bottom: 38px;
}

.blog-post.single .oderd>h3 {
    color: #2b2b2b;
    font-size: 20.32px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 13px;
}

.blog-post.single .oderd ol li,
.blog-post.single .oderd ul li {
    display: block;
    color: #575757;
    font-size: 14.23px;
    margin-bottom: 11px;
    padding-left: 30px;
    position: relative;
}

.blog-post.single .oderd ol li:last-child,
.blog-post.single .oderd ul li:last-child {
    margin-bottom: 0;
}

.blog-post.single .oderd ol li:before,
.blog-post.single .oderd ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 15px;
    background-image: url(../img/icon14.png);
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.blog-post.single .oderd ol li {
    padding-left: 0;
}

.blog-post.single .oderd ol li:before {
    display: none;
}

.blog-post.single blockquote {
    border: 1px solid #eae5e5;
    border-radius: 20px;
    text-align: center;
    padding: 55px 100px 60px;
    background-image: url(../img/element-bg.png);
    background-repeat: no-repeat;
    background-position: 50%;
    margin-bottom: 26px;
}

.blog-post.single blockquote p {
    color: #2b2b2b;
    font-size: 18.29px;
    font-weight: 600;
    line-height: 26.42px;
    margin-bottom: 20px;
}

.blog-post.single blockquote>h4 {
    color: #575757;
    font-size: 14.23px;
    font-weight: 600;
    margin-bottom: 7px;
    text-transform: capitalize;
    position: relative;
    z-index: 9;
}

.blog-post.single blockquote>h4:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 66px;
    height: 47px;
    background-image: url(../img/quote.png);
    background-repeat: no-repeat;
    transform: translateX(-50%);
    z-index: -1;
}

.blog-post.single blockquote>span {
    display: block;
    color: #C1AC69;
    font-size: 12.19px;
    font-style: italic;
    position: relative;
    z-index: 9;
}

.mdp-sub-title {
    color: #2b2b2b;
    font-size: 36.58px;
    margin-bottom: 23px;
}

.mdp-post-comments {
    margin-bottom: 75px;
}

.mdp-post-comments ul li {
    margin-bottom: 30px;
}

.mdp-post-comments ul li:last-child {
    margin-bottom: 0;
}

.mdp-post-comments ul li .mdp-comment .mdp-img {
    max-width: 72px;
}

.mdp-post-comments ul li .mdp-comment .mdp-com {
    max-width: calc(100% - 72px);
    padding-left: 15px;
}

.mdp-post-comments ul li .mdp-comment .mdp-com>h3 {
    color: #2b2b2b;
    font-size: 18.29px;
    text-transform: capitalize;
    margin-bottom: 8px;
    display: inline-block;
}

.mdp-post-comments ul li .mdp-comment .mdp-com>span {
    display: inline-block;
    color: #575757;
    font-size: 14.23px;
    font-weight: 300;
    font-family: Poppins, sans-serif;
    padding-left: 12px;
}

.mdp-post-comments ul li .mdp-comment .mdp-com .reply-btn {
    margin-top: 21px;
    display: block;
    text-align: right;
    color: #575757;
    font-size: 14.23px;
    font-family: Poppins, sans-serif;
}

.mdp-post-comments ul li .mdp-comment .mdp-com .reply-btn i {
    color: #155799;
    margin-right: 4px;
}

.mdp-post-comments ul li ul {
    margin-top: 30px;
    padding-left: 90px;
}

.blog-section.posts-page,
.blog-section.posts-page .blog-posts .blog-post {
    margin-bottom: 60px;
}

.blog-section.posts-page .blog-posts .blog-post:last-child {
    margin-bottom: -7px;
}

.blog-section.posts-page .blog-posts .blog-post .blog-info .category {
    padding: 0 20px;
    color: #2b2b2b;
    font-size: 14.23px;
    height: 24px;
    line-height: 24px;
    background-color: #ffd31d;
    border-radius: 30px;
    position: relative;
    top: -10px;
    display: inline-block;
}

.blog-section.posts-page .blog-posts .blog-post .blog-info h3 {
    font-size: 36.58px;
    font-weight: 500;
    position: relative;
    line-height: 44.71px;
    margin-bottom: 9px;
}

.blog-section.posts-page .blog-posts .blog-post .blog-info h3.stick {
    padding-left: 30px;
}

.blog-section.posts-page .blog-posts .blog-post .blog-info h3.stick:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    background: linear-gradient(270deg, #fdc830, #C1AC69);
    transform: translateY(-50%);
    border-radius: 50%;
}

.blog-section.posts-page .blog-posts .blog-post .blog-info p {
    margin-bottom: 19px;
}

.blog-section.posts-page .blog-posts .blog-post .blog-info .chat-format li {
    display: flex;
    flex-wrap: wrap;
}

.blog-section.posts-page .blog-posts .blog-post .blog-info .chat-format li>strong {
    color: #2b2b2b;
    font-size: 18.29px;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    width: 100px;
}

.blog-section.posts-page .blog-posts .blog-post .blog-info .chat-format li p {
    max-width: calc(100% - 100px);
    padding-left: 10px;
}

.blog-section.posts-page .blog-posts .blog-post.without-thumb .blog-thumbnail {
    margin-bottom: 10px;
    padding: 0 20px;
}

.blog-section.posts-page .blog-posts .blog-post.without-thumb .blog-thumbnail .category {
    position: static;
}

.blog-section.posts-page .blog-posts .blog-post.without-title .blog-info p {
    color: #2b2b2b;
    font-size: 18.29px;
    font-family: Poppins, sans-serif;
    line-height: 24.39px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 30px;
}

.blog-section.posts-page .blog-posts .blog-post.gallery-post .blog-info {
    padding-top: 0;
    position: relative;
    top: -20px;
}

.blog-section.posts-page .blog-posts .blog-post.quote-post {
    border: 1px solid #eae5e5;
    border-radius: 20px;
    text-align: center;
    padding: 50px 100px 51px;
    background-image: url(../img/element-bg2.png);
    background-repeat: no-repeat;
    background-position: 50%;
}

.blog-section.posts-page .blog-posts .blog-post.quote-post.no-bg {
    background: #fff;
}

.blog-section.posts-page .blog-posts .blog-post.quote-post .blog-info .category {
    padding: 0 20px;
    color: #2b2b2b;
    font-size: 14.23px;
    height: 24px;
    line-height: 24px;
    background-color: #ffd31d;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 12px;
}

.blog-section.posts-page .blog-posts .blog-post.quote-post .blog-info .meta {
    margin-bottom: 29px;
}

.blog-section.posts-page .blog-posts .blog-post.quote-post .blog-info p {
    color: #2b2b2b;
    font-size: 18.29px;
    font-weight: 600;
    line-height: 26.42px;
    margin-bottom: 20px;
}

.blog-section.posts-page .blog-posts .blog-post.quote-post .blog-info h4 {
    color: #575757;
    font-size: 14.23px;
    font-weight: 600;
    margin-bottom: 7px;
    text-transform: capitalize;
    position: relative;
    z-index: 9;
}

.blog-section.posts-page .blog-posts .blog-post.quote-post .blog-info h4:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 66px;
    height: 47px;
    background-image: url(../img/quote.png);
    background-repeat: no-repeat;
    transform: translateX(-50%);
    z-index: -1;
}

.blog-section.posts-page .blog-posts .blog-post.quote-post .blog-info>span {
    display: block;
    color: #C1AC69;
    font-size: 12.19px;
    font-style: italic;
    position: relative;
    z-index: 9;
}

.blog-section.posts-page .blog-posts .blog-post.quote-post .blog-info h3 {
    font-size: 20.32px;
    line-height: 26.42px;
    position: relative;
    z-index: 1;
}

.blog-section.posts-page .blog-posts .blog-post.quote-post .blog-info h3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: -10px;
    width: 70px;
    height: 70px;
    background-image: url(../img/link.png);
    background-repeat: no-repeat;
    transform: translateX(-50%);
    z-index: -1;
}

.blog-section.posts-page .blog-posts .blog-post.quote-post .blog-info .read-more {
    position: relative;
    z-index: 9;
}

/* ══════════════════════════════
   SIDEBAR
══════════════════════════════ */
.sidebar .widget {
    margin-bottom: 40px;
}

.sidebar .widget:last-child {
    margin-bottom: 0;
}

.sidebar .widget-search form {
    position: relative;
}

.sidebar .widget-search form input {
    width: 100%;
    height: 52px;
    color: #575757;
    font-size: 14.23px;
    font-style: italic;
    padding: 0 20px;
    border-radius: 30px;
    border: 1px solid #c9c9c9;
}

.sidebar .widget-search form button {
    background-color: inherit;
    border: 0;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.sidebar .widget-title {
    color: #2b2b2b;
    font-size: 20.32px;
    font-weight: 500;
    border: 1px solid #f6986b;
    border-radius: 30px;
    text-align: center;
    padding: 10px 15px;
    margin-bottom: 25px;
}

.sidebar .widget-categories ul {
    padding: 0 20px;
}

.sidebar .widget-categories ul li {
    color: #575757;
    font-size: 18.29px;
    font-weight: 300;
    font-family: Poppins, sans-serif;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3px;
}

.sidebar .widget-categories ul li:last-child {
    margin-bottom: 0;
}

.sidebar .widget-categories ul li a {
    display: inline-block;
    color: #2b2b2b;
    font-size: 18.29px;
}

.sidebar .widget-categories ul li a:hover {
    color: #C1AC69;
}

.sidebar .widget-categories ul li span {
    margin-left: auto;
}

.sidebar .widget-posts .wd-posts {
    padding: 0 10px 0 20px;
}

.sidebar .widget-posts .wd-posts .wd-post {
    margin-bottom: 25px;
}

.sidebar .widget-posts .wd-posts .wd-post:last-child {
    margin-bottom: 0;
}

.sidebar .widget-posts .wd-posts .wd-post .wd-info {
    max-width: calc(100% - 52px);
    padding-left: 10px;
}

.sidebar .widget-posts .wd-posts .wd-post .wd-info>h3 {
    color: #2b2b2b;
    font-size: 14.23px;
    line-height: 18.29px;
    margin-bottom: 3px;
    font-weight: 500;
}

.sidebar .widget-posts .wd-posts .wd-post .wd-info>h3:hover {
    color: #C1AC69;
}

.sidebar .widget-posts .wd-posts .wd-post .wd-info>span {
    display: block;
    color: #575757;
    font-size: 14.23px;
}

.sidebar .widget-comments ul {
    padding: 0 10px 0 20px;
}

.sidebar .widget-comments ul li {
    display: block;
    color: #2b2b2b;
    font-size: 14.23px;
    font-family: Poppins, sans-serif;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
}

.sidebar .widget-comments ul li:last-child {
    margin-bottom: 0;
}

.sidebar .widget-comments ul li:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 17px;
    height: 15px;
    background-image: url(../img/icon18.png);
    background-repeat: no-repeat;
}

.sidebar .widget-comments ul li a {
    font-weight: 500;
}

.sidebar .widget-comments ul li:hover {
    color: #C1AC69;
}

.sidebar .widget-comments ul li:hover a {
    color: #2b2b2b;
}

.sidebar .widget-archives ul {
    padding: 0 10px 0 20px;
}

.sidebar .widget-archives ul li {
    display: block;
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
}

.sidebar .widget-archives ul li:last-child {
    margin-bottom: 0;
}

.sidebar .widget-archives ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: #155799;
    border-radius: 50%;
    transform: translateY(-50%);
}

.sidebar .widget-archives ul li a {
    display: block;
    color: #2b2b2b;
    font-size: 14.23px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
}

.sidebar .widget-archives ul li a:hover {
    color: #C1AC69;
}

.sidebar .widget-tags ul {
    padding: 0 20px;
    margin-bottom: -5px;
}

.sidebar .widget-tags ul li {
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 1px;
}

.sidebar .widget-tags ul li a {
    display: inline-block;
    color: #575757;
    font-size: 14.23px;
    border: 1px solid #ece8e8;
    border-radius: 30px;
    padding: 6px 8px;
}

.sidebar .widget-calendar .mdp-calendar {
    text-align: center;
    padding: 0 20px;
}

.sidebar .widget-calendar .mdp-calendar .month {
    color: #2b2b2b;
    font-size: 14.23px;
    font-weight: 500;
    margin-bottom: 10px;
}

.sidebar .widget-calendar .mdp-calendar table {
    width: 100%;
}

.sidebar .widget-calendar .mdp-calendar table thead tr th {
    color: #575757;
    font-size: 16px;
    font-weight: 600;
    padding: 6px 0;
}

.sidebar .widget-calendar .mdp-calendar table tbody td {
    padding: 6px 0;
    color: #2b2b2b;
    font-size: 14px;
}

.sidebar .widget-calendar .mdp-calendar table tbody td.active {
    background: linear-gradient(270deg, #fdc830, #C1AC69);
    color: #fff;
    border-radius: 50%;
}

.sidebar .widget-calendar .mdp-calendar .controls {
    margin-top: 10px;
}

.sidebar .widget-calendar .mdp-calendar .controls li {
    display: inline-block;
    margin-right: 90px;
}

.sidebar .widget-calendar .mdp-calendar .controls li:last-child {
    margin-right: 0;
}

.sidebar .widget-calendar .mdp-calendar .controls li:last-child a i {
    margin-right: 0;
    margin-left: 6px;
}

.sidebar .widget-calendar .mdp-calendar .controls li a {
    display: inline-block;
    color: #2b2b2b;
    font-size: 14.23px;
}

.sidebar .widget-calendar .mdp-calendar .controls li a:hover {
    color: #155799;
}

.sidebar .widget-calendar .mdp-calendar .controls li a i {
    margin-right: 6px;
    font-size: 18px;
    position: relative;
    top: 2px;
}

/* ══════════════════════════════
   SLIDERS / CAROUSELS
══════════════════════════════ */
.slick-slide {
    outline: none;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease-in-out;
}

.video-play:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.blog-carousel .slick-next,
.blog-carousel .slick-prev {
    width: 52px;
    height: 52px;
    background-repeat: no-repeat;
    z-index: 999;
}

.blog-carousel .slick-next:before,
.blog-carousel .slick-prev:before {
    display: none;
}

.blog-carousel .slick-prev {
    background-image: url(../img/left.png);
    left: 20px;
}

.blog-carousel .slick-next {
    background-image: url(../img/right.png);
    right: 20px;
}

.classes-carousel .slick-next,
.classes-carousel .slick-prev {
    width: 31px;
    height: 21px;
    top: -100px;
    right: 0;
    left: auto;
    transform: inherit;
    background-repeat: no-repeat;
    transition: all 0.4s ease-in-out;
}

.classes-carousel .slick-next:before,
.classes-carousel .slick-prev:before {
    display: none;
}

.classes-carousel .slick-prev {
    background-image: url(../img/arrow-left.png);
    right: 76px;
}

.classes-carousel .slick-prev:hover {
    background-image: url(../img/arrow-left2.png);
}

.classes-carousel .slick-next {
    background-image: url(../img/arrow-right.png);
    right: 20px;
}

.classes-carousel .slick-next:hover {
    background-image: url(../img/arrow-right2.png);
}

.reviews-carousel .slick-slide {
    padding: 15px;
}

/* ══════════════════════════════
   MISC / WIDGETS
══════════════════════════════ */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    max-height: 40px;
    max-width: 40px;
    overflow: hidden;
    border-radius: 50%;
    color: #fff;
    background-image: linear-gradient(180deg, #fdc830, #C1AC69);
    z-index: 1;
}

.back-to-top:hover {
    background-image: linear-gradient(210deg, #fdc830, #C1AC69);
}

a.wabutton {
    background-color: #45C553;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF !important;
    font-size: 32px;
    text-decoration: none;
}

.borda {
    border-radius: 15px;
    border: 4px solid #fff;
    height: auto;
    box-shadow: 10px 10px 26px 0 rgba(0, 0, 0, 0.21);
}

.global-benefits {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.global-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.global-benefits li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}

.failed,
.text-info {
    background: #C1AC69;
    padding: 10px;
    margin-bottom: 20px;
    color: #fff !important;
}

.failed img,
.text-info img {
    margin-right: 10px;
    display: inline-block;
}

#html5-watermark {
    display: none !important;
}

/* ══════════════════════════════
   MASONARY
══════════════════════════════ */
.masonary li {
    padding: 0 9.5px;
    margin-bottom: 19px;
}

.masonary li img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 100%;
}

.masonary li.width1 {
    width: 199px;
    height: 210px;
    margin-top: 190px;
}

.masonary li.width2 {
    width: 297px;
    height: 360px;
}

.masonary li.width3 {
    width: 197px;
    height: 290px;
    margin-top: 20px;
}

.masonary li.width4 {
    width: 180px;
    margin-top: 60px;
}

.masonary li.width4 img {
    width: 94px;
    height: 87px;
}

.masonary li.width5 {
    width: 297px;
    height: 192px;
    padding-left: 30px;
}

.masonary li.width6 {
    width: 198px;
    height: 240px;
    margin-top: -45px;
}

.masonary li.width7 {
    width: 198px;
    height: 240px;
}

.masonary li.width8 {
    width: 80px;
    height: 64px;
}

.masonary li.width9 {
    width: 199px;
    height: 190px;
}

.masonary li.width10 {
    width: 99px;
    height: 72px;
}

/* ══════════════════════════════
   ERROR PAGE
══════════════════════════════ */
.error-page {
    background: #f2f7fd url(../img/error-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100vh;
    justify-content: center;
    position: relative;
    overflow-y: auto;
}

.error-page .page-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #C1AC69;
    font-size: 300px;
    font-weight: 600;
    opacity: 0.05;
    margin-top: -200px;
}

.error-page .error-text {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 99;
}

.error-page .error-text h2 {
    color: #C1AC69;
    font-size: 150px;
    font-weight: 700;
    line-height: 150px;
    margin-bottom: 16px;
}

.error-page .error-text h3 {
    color: #2b2b2b;
    font-size: 64px;
    margin-bottom: 51px;
}

.error-page .error-text .btn-default {
    padding: 0 42px 0 60px;
    margin-bottom: 150px;
}

.error-page .error-text .social-icons li a {
    background: linear-gradient(270deg, #159957, #155799);
}

.error-page .error-text .social-icons li a:hover {
    background: linear-gradient(180deg, #fdc830, #C1AC69);
}

/* ══════════════════════════════
   SEARCH / TEACHER SINGLE
══════════════════════════════ */
.search-content.classes-page .classes-col .class-thumb img {
    border-radius: 20px;
}

.search-content.classes-page .classes-col .class-thumb:before {
    display: none;
}

.search-content.classes-page .classes-col .class-info {
    border: 0;
    padding: 0;
}

.search-content .blog-section {
    margin-bottom: -8px;
}

.search-content .blog-section .blog-posts {
    margin-top: 50px;
}

.search-content .blog-section .blog-posts .blog-post .blog-info {
    padding-top: 9px;
}

.teacher-col {
    margin-top: 50px;
}

.teacher-col .teacher-thumb img {
    border-radius: 20px;
    max-width: 100%;
}

.teacher-col .teacher--info h3 {
    color: #2b2b2b;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 1px;
}

.teacher-col .teacher--info>span {
    display: block;
    color: #155799;
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.teacher-col .teacher--info .social-icons li a {
    background: linear-gradient(180deg, #fdc830, #C1AC69);
}

.teacher-single-page {
    margin-bottom: 44px;
}

.teacher-single-page .teacher-coly {
    position: relative;
}

.teacher-single-page .teacher-coly>img {
    max-width: 100%;
}

.teacher-single-page .teacher-coly .social-icons {
    text-align: center;
    position: relative;
    top: -25px;
}

.teacher-single-page .teacher-coly .social-icons li a {
    background: inherit;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.teacher-single-page .teacher-coly .social-icons li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #fdc830, #C1AC69);
    height: 100%;
    z-index: -1;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.teacher-single-page .teacher-coly .social-icons li a:hover:before {
    background: linear-gradient(0deg, #fdc830, #C1AC69);
}

.teacher-single-page .teacher-content {
    padding-left: 20px;
    box-sizing: border-box;
}

.teacher-single-page .teacher-content>h3 {
    color: #C1AC69;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 21px;
}

.teacher-single-page .teacher-content .rol-z {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
}

.teacher-single-page .teacher-content .rol-z .rol-info {
    padding-left: 15px;
    box-sizing: border-box;
}

.teacher-single-page .teacher-content .rol-z .rol-info h3 {
    color: #2b2b2b;
    font-size: 14px;
    margin-bottom: 3px;
}

.teacher-single-page .teacher-content .rol-z .rol-info span {
    display: block;
    color: #575757;
    font-size: 14px;
}

.teacher-single-page .teacher-content .rol-z.style2 .rol-info h3 {
    font-size: 18px;
    color: #2b2b2b;
    line-height: 20px;
}

.teacher-single-page .teacher-content p {
    color: #575757;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 33px;
    max-width: 600px;
}

.teacher-single-page .teacher-content p:last-child {
    margin-bottom: 0;
}

.teacher-single-page .teacher-content .tech-detils {
    max-width: 460px;
    background-color: #fff;
    border: 1px solid #e9723a;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 25px;
    background-repeat: no-repeat;
    background-position: 4px 0;
    position: relative;
    overflow: hidden;
}

.teacher-single-page .teacher-content .tech-detils:before {
    content: "";
    position: absolute;
    top: 0;
    left: 145px;
    width: 48px;
    height: 24px;
    background-image: url(../img/circle3.png);
    background-repeat: no-repeat;
}

.teacher-single-page .teacher-content .tech-detils:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -7px;
    width: 73px;
    height: 71px;
    background-image: url(../img/circle4.png);
    background-repeat: no-repeat;
}

.teacher-single-page .teacher-content .tech-detils li {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 13px;
}

.teacher-single-page .teacher-content .tech-detils li:last-child {
    margin-bottom: 0;
}

.teacher-single-page .teacher-content .tech-detils li h3 {
    display: inline-block;
    color: #575757;
    font-size: 14px;
    font-style: italic;
    width: 145px;
}

.teacher-single-page .teacher-content .tech-detils li span {
    display: inline-block;
    color: #155799;
    font-size: 14px;
    font-style: italic;
    font-weight: 700;
}

.teacher-single-page .teacher-content .skills-tech {
    max-width: 600px;
    margin-bottom: 25px;
}

.teacher-single-page .teacher-content .skills-tech>h3 {
    color: #2b2b2b;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 18px;
}

.teacher-single-page .teacher-content .skills-tech .progess-row {
    position: relative;
    margin-bottom: 13px;
}

.teacher-single-page .teacher-content .skills-tech .progess-row>span {
    color: #575757;
    font-size: 14px;
    position: absolute;
    top: 0;
    right: 0;
}

.teacher-single-page .teacher-content .skills-tech .progess-row h3 {
    color: #2b2b2b;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 9px;
}

.teacher-single-page .teacher-content .skills-tech .progess-row .progress {
    position: relative;
    height: 16px;
    border-radius: 30px;
}

.teacher-single-page .teacher-content .skills-tech .progess-row .progress .progress-bar.bg-clr1 {
    background-color: #f45905;
}

.teacher-single-page .teacher-content .skills-tech .progess-row .progress .progress-bar.bg-clr2 {
    background-color: #155799;
}

.teacher-single-page .teacher-content .skills-tech .progess-row .progress .progress-bar.bg-clr3 {
    background-color: #fdc830;
}

.teacher-single-page .teacher-content .skills-tech .progess-row .progress .progress-bar.bg-clr4 {
    background-color: #159957;
}

/* ══════════════════════════════
   CLASS SINGLE
══════════════════════════════ */
.class-single-content {
    max-width: 760px;
}

.class-single-content h2 {
    color: #2b2b2b;
    font-size: 64px;
    line-height: 80px;
    margin-bottom: 17px;
}

.class-single-content p {
    color: #575757;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 25px;
}

.class-single-content .meta-box {
    margin-bottom: 24px;
}

.class-single-content .meta-box li {
    display: inline-block;
    padding: 0 13px;
    position: relative;
}

.class-single-content .meta-box li:first-child {
    padding-left: 0;
}

.class-single-content .meta-box li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 1px;
    height: 15px;
    background-color: #575757;
    transform: translateY(-50%);
    margin-top: 1px;
    margin-left: 2px;
}

.class-single-content .meta-box li:last-child:before {
    display: none;
}

.class-single-content .meta-box li a,
.class-single-content .meta-box li span {
    display: inline-block;
    color: #575757;
    font-size: 14px;
}

.class-single-content .class-gallery-img {
    margin-bottom: 20px;
}

.class-single-content .class-gallery-img>a img {
    max-width: 100%;
}

.class-single-content h3 {
    color: #2b2b2b;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 23px;
}

.class-single-content .class-gallery .row {
    margin: 0 -10px;
}

.class-single-content .class-gallery .row .col-lg-3 {
    padding: 0 10px;
}

.ordrd {
    margin-bottom: 49px;
}

.ordrd li {
    color: #575757;
    font-size: 14px;
    margin-bottom: 11px;
    position: relative;
    padding-left: 31px;
}

.ordrd li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 15px;
    background-image: url(../img/icon14.png);
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.ordrd li:last-child {
    margin-bottom: 0;
}

.class-sidebar {
    position: relative;
    top: -143px;
    max-width: 293px;
    margin-left: auto;
}

.class-sidebar .widget {
    margin-bottom: 30px;
}

.class-sidebar .widget:last-child {
    margin-bottom: 0;
}

.class-sidebar .widget-information {
    background-color: #fff;
    padding: 47px 20px 50px;
    border: 2px solid #f9b493;
    border-radius: 20px;
}

.class-sidebar .widget-information .widget-title {
    color: #2b2b2b;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    border: 0;
    padding: 0;
    margin-bottom: 17px;
}

.class-sidebar .widget-information ul {
    padding-bottom: 26px;
    border-bottom: 1px solid #e5dfdf;
}

.class-sidebar .widget-information ul li {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.class-sidebar .widget-information ul li:last-child {
    margin-bottom: 0;
}

.class-sidebar .widget-information ul li h4 {
    color: #575757;
    font-size: 14px;
    font-style: italic;
}

.class-sidebar .widget-information ul li>span {
    margin-left: auto;
    color: #155799;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
}

.class-sidebar .widget-information .tech-info {
    padding-top: 25px;
    text-align: center;
}

.class-sidebar .widget-information .tech-info .tech-tble {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}

.class-sidebar .widget-information .tech-info .tech-tble>img {
    border-radius: 50%;
}

.class-sidebar .widget-information .tech-info .tech-tble .tch-info {
    padding-left: 16px;
    text-align: left;
}

.class-sidebar .widget-information .tech-info .tech-tble .tch-info h3 {
    color: #2b2b2b;
    font-size: 18px;
    text-transform: capitalize;
}

.class-sidebar .widget-information .tech-info .tech-tble .tch-info span {
    display: block;
    color: #575757;
    font-size: 14px;
    font-family: Poppins, sans-serif;
}

.class-sidebar .widget-information .tech-info .btn-default {
    padding: 0 40px 0 60px;
}

.class-sidebar .widget-class {
    background-color: #fff;
    padding: 15px 20px;
    border: 2px solid #f9b493;
    border-radius: 20px;
    margin-bottom: 22px;
}

.class-sidebar .widget-class .wd-class-post {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.class-sidebar .widget-class .wd-class-post .wd-class-thumb {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(270deg, #fdc830, #C1AC69);
    border-radius: 50%;
    text-align: center;
}

.class-sidebar .widget-class .wd-class-post .wd-class-info {
    max-width: calc(100% - 50px);
    padding-left: 15px;
}

.class-sidebar .widget-class .wd-class-post .wd-class-info>h3 {
    color: #2b2b2b;
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: -1px;
}

.class-sidebar .widget-class .wd-class-post .wd-class-info>span {
    display: block;
    color: #575757;
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
}

.class-sidebar .widget-classes-carousel {
    margin-bottom: 48px;
}

.class-sidebar .widget-classes-carousel .widget-title {
    color: #2b2b2b;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 12px;
    border: 0;
    background-color: inherit;
    padding: 0;
    text-align: left;
}

.class-sidebar .widget-classes-carousel .classes-section {
    padding: 0;
}

.class-sidebar .widget-classes-carousel .slick-dots {
    bottom: -21px;
}

.class-sidebar .widget-classes-carousel .slick-dots li button {
    width: 5px;
    height: 5px;
    background-color: #bbb;
    border-radius: 30px;
}

.class-sidebar .widget-classes-carousel .slick-dots li.slick-active button {
    width: 20px;
    background: linear-gradient(270deg, #159957, #155799);
}

.class-sidebar .widget-contact-dp {
    background-color: #fff;
    border: 2px solid #f9b493;
    border-radius: 20px;
    padding: 47px 20px 50px;
}

.class-sidebar .widget-contact-dp .mdp-our-contacts h3 {
    font-size: 20px;
    font-weight: 600;
}

.class-sidebar .widget-contact-dp .mdp-our-contacts .dd-cont {
    max-width: calc(100% - 50px);
}

/* ══════════════════════════════
   EVENTS
══════════════════════════════ */
.event-single {
    max-width: 100%;
}

.event-single .event-gallery-sec {
    margin-bottom: 16px;
}

.event-single .event-gallery-sec .row {
    margin: 0 -10px;
}

.event-single .event-gallery-sec .row .col-lg-3 {
    padding: 0 10px;
}

.event-single p {
    color: #575757;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
}

.event-single>h3 {
    color: #2b2b2b;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 13px;
    text-transform: capitalize;
}

.event-single .mdp-map {
    margin-top: 26px;
    margin-bottom: 0;
}

.event-gallery {
    position: relative;
    margin-bottom: 20px;
}

.event-gallery>a {
    display: block;
    position: relative;
}

.event-gallery>a img {
    max-width: 100%;
    width: 100%;
    border-radius: 20px;
}

.event-gallery .price {
    position: absolute;
    top: 30px;
    right: 30px;
    height: 46px;
    line-height: 46px;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    border-radius: 30px;
    z-index: 9;
}

.event-gallery .price,
.sg-event>span {
    display: inline-block;
    color: #fff;
    background: linear-gradient(180deg, #fdc830, #C1AC69);
}

.sg-event>span {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 7px;
}

.sg-event h3 {
    color: #2b2b2b;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 3px;
    text-transform: capitalize;
}

/* ══════════════════════════════
   PLANOS / PLAN CARDS
══════════════════════════════ */
.planos-hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.planos-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
    z-index: 1;
}

.planos-content {
    position: relative;
    z-index: 2;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.plan-card {
    background: #f3f3f3;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.plan-card.highlight {
    border: 2px solid #e5a63a;
}

.plan-card.popular {
    border: 3px solid #FF6B35;
    transform: scale(1.02);
}

.plan-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B35, #FF8A50);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.plan-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.plano-individual {
    background-image: url("../img/plano-individual.jpg");
}

.plano-compartilhado {
    background-image: url("../img/plano-compartilhado.jpg");
}

.plan-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-content h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin: 30px 0;
}

.plan-price .currency {
    font-size: 16px;
    color: #777;
    margin-bottom: 8px;
}

.plan-price .value {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    color: #C1AC69;
}

.plan-price .period {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.plan-price-value {
    font-size: 48px;
    font-weight: 800;
    color: #FF6B35;
    line-height: 1;
}

.plan-price-label {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.plan-old-price {
    text-decoration: line-through;
    font-size: 14px;
    color: #888;
    margin-left: 8px;
}

.plan-discount {
    display: block;
    color: #232323;
    font-size: 12px;
    margin-bottom: 10px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    flex-grow: 1;
}

.plan-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #c89b3c;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.plan-cta {
    margin-top: 30px;
    width: 100%;
}

.plan-cta a {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #FF6B35;
    color: #FF6B35;
    font-size: 15px;
}

.plan-card.popular .plan-cta a {
    background: #FF6B35;
    color: white;
}

.plan-card.popular .plan-cta a:hover {
    background: #E55A2B;
    border-color: #E55A2B;
}

.plan-card:not(.popular) .plan-cta a:hover {
    background: #FF6B35;
    color: white;
}

.plan-info {
    padding: 25px;
    text-align: center;
}

.plan-info h3 {
    color: #C1AC69;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 7px;
}

/* ══════════════════════════════
   INCLUSIONS SECTION
══════════════════════════════ */
.inclusions-section {
    background: #003327;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.inclusions-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 420px;
    height: 420px;
    background-image: url("../img/simbolo-dourado.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.inclusions-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -50px;
    width: 260px;
    height: 260px;
    background-image: url("../img/simbolo-dourado.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.inclusions-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap;
}

.inclusions-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C1AC69;
    margin-bottom: 14px;
    padding: 5px 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
}

.inclusions-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    max-width: 480px;
}

.inclusions-header h2 span {
    color: #C1AC69;
}

.inclusions-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 260px;
    text-align: right;
}

.inclusions-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 50px;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.25s ease;
    cursor: default;
}

.inclusion-item:nth-child(even) {
    border-right: none;
}

.inclusion-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.inclusion-item:hover {
    background: rgba(255, 107, 53, 0.05);
}

.inclusion-item:hover .inclusion-check {
    background: #C1AC69;
    border-color: #C1AC69;
    transform: scale(1.1);
}

.inclusion-item:hover .inclusion-check svg {
    stroke: #fff;
}

.inclusion-check {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    background: rgba(255, 107, 53, 0.08);
}

.inclusion-check svg {
    width: 16px;
    height: 16px;
    stroke: #C1AC69;
    stroke-width: 2.5;
    fill: none;
    transition: stroke 0.25s ease;
}

.inclusion-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.inclusion-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.inclusion-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.inclusions-bottom {
    margin-top: 50px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.inclusions-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
}

.inclusions-note::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #C1AC69;
    border-radius: 50%;
    flex-shrink: 0;
}

.inclusions-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #C1AC69;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: gap 0.2s ease;
}

.inclusions-cta:hover {
    gap: 16px;
}

.inclusions-cta svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* ══════════════════════════════
   ACCORDION / FAQ
══════════════════════════════ */
.accordion-section {
    background: var(--light);
    padding: 0;
    overflow: hidden;
}

.faq-image-col {
    position: relative;
    background: var(--green);
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 0 !important;
}

.faq-image-col img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.92;
}

.faq-image-col::after,
.faq-content-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    z-index: 3;
}

.faq-image-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.10) 35%, rgba(0, 0, 0, 0.10) 60%, rgba(0, 0, 0, 0.80) 100%);
    z-index: 1;
}

.faq-image-content {
    position: relative;
    z-index: 2;
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.faq-tagline-title {
    font-weight: 800;
    font-size: clamp(26px, 2.8vw, 38px);
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.faq-tagline-sub {
    font-weight: 300;
    font-style: italic;
    font-size: clamp(15px, 1.6vw, 20px);
    color: #C1AC69;
    line-height: 1.2;
    margin: 0;
}

.faq-stats {
    display: flex;
    gap: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(193, 172, 105, 0.3);
}

.faq-stat-number {
    font-weight: 800;
    font-size: 24px;
    color: #C1AC69;
    line-height: 1;
    margin-bottom: 4px;
}

.faq-stat-label {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-content-col {
    background: var(--light);
    padding: 60px 60px 60px 56px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.faq-header {
    margin-bottom: 0;
    padding-bottom: 30px;
}

.faq-image-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.faq-image-tag span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold);
}

.faq-main-title {
    font-weight: 800;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    color: var(--green);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.faq-main-title em {
    font-style: italic;
    font-weight: 600;
    color: var(--gold);
}

.faq-main-desc {
    font-size: 14px;
    font-weight: 300;
    color: #888;
    line-height: 1.75;
    margin: 0;
}

.accordion-wrapper {
    margin-bottom: 32px;
    flex: 1;
}

.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 51, 39, 0.1);
    border-radius: 0 !important;
    position: relative;
}

.accordion-item:first-child {
    border-top: 1px solid rgba(0, 51, 39, 0.1);
}

.accordion-trigger {
    width: 100%;
    padding: 20px 0;
    background: transparent !important;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    box-shadow: none !important;
}

.accordion-trigger:focus {
    outline: none;
}

.accordion-trigger-title {
    font-size: 14.5px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.25s ease;
    flex: 1;
}

.accordion-item.active .accordion-trigger-title,
.accordion-trigger:hover .accordion-trigger-title {
    color: var(--green);
}

.accordion-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 51, 39, 0.15);
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 1.5px;
    background: #aaa;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5px;
    height: 10px;
    background: #aaa;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-icon {
    background: var(--green);
    border-color: var(--green);
    transform: rotate(45deg);
}

.accordion-item.active .accordion-icon::before,
.accordion-item.active .accordion-icon::after {
    background: #fff;
}

.accordion-trigger:hover .accordion-icon {
    border-color: var(--green);
}

.accordion-trigger:hover .accordion-icon::before,
.accordion-trigger:hover .accordion-icon::after {
    background: var(--green);
}

.active .accordion-trigger:hover .accordion-icon::before,
.active .accordion-trigger:hover .accordion-icon::after {
    background: #fff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 400px;
    opacity: 1;
}

.accordion-body {
    padding: 0 0 20px;
}

.accordion-body p {
    font-size: 13.5px;
    font-weight: 300;
    color: #666;
    line-height: 1.85;
    margin: 0;
    border-left: 2px solid var(--gold);
    padding-left: 14px;
}

.faq-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
}

.faq-bottom-text {
    font-size: 13px;
    color: #999;
    flex: 1;
    line-height: 1.5;
}

.faq-bottom-text strong {
    color: #333;
    font-weight: 500;
    display: block;
}

.faq-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 13px 22px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 51, 39, 0.2);
    flex-shrink: 0;
}

.faq-whatsapp-btn:hover {
    background: #004d3a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 51, 39, 0.3);
}

.faq-whatsapp-btn svg {
    width: 15px;
    height: 15px;
    fill: var(--gold);
    flex-shrink: 0;
}

/* ══════════════════════════════
   COMPARISON
══════════════════════════════ */
.comparison-section {
    padding: 70px 0;
}

.comparison-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    border: none;
}

.comparison-table th:first-child {
    width: 35%;
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #555;
}

.comparison-table tbody tr:hover {
    background: #fafafa;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .check {
    color: #FF6B35;
    font-weight: 700;
    font-size: 16px;
}

.comparison-table .label {
    color: #1a1a1a;
    font-weight: 600;
}

/* ══════════════════════════════
   INCLUSO SECTION (alt layout)
══════════════════════════════ */
.incluso-section {
    padding: 100px 0 90px;
    background: #fff;
}

.incluso-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.incluso-sticky {
    position: sticky;
    top: 100px;
}

.incluso-sticky h2 {
    font-size: clamp(1.9rem, 2.8vw, 2.5rem);
    font-weight: 400;
    color: var(--green);
    line-height: 1.2;
    margin-bottom: 14px;
}

.incluso-sticky h2 em {
    font-style: italic;
    color: var(--gold);
}

.incluso-sticky p {
    font-size: .9rem;
    font-weight: 300;
    color: var(--text-sub);
    line-height: 1.75;
    margin-bottom: 32px;
}

.incluso-price-box {
    display: inline-block;
    border: 1px solid var(--light-brd);
    border-radius: 14px;
    padding: 22px 26px;
}

.incluso-price-box small {
    display: block;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-sub);
    margin-bottom: 8px;
}

.incluso-price-box strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--green);
    line-height: 1;
}

.incluso-price-box span {
    display: block;
    font-size: .72rem;
    color: var(--text-sub);
    margin-top: 5px;
}

.incluso-price-box em {
    display: block;
    font-style: normal;
    font-size: .68rem;
    color: var(--gold);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--light-brd);
    letter-spacing: .3px;
}

.incluso-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.incluso-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--light-brd);
}

.incluso-item:first-child {
    border-top: 1px solid var(--light-brd);
}

.incluso-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--light-brd);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: border-color .2s, background .2s;
}

.incluso-item:hover .incluso-icon {
    border-color: var(--gold-brd);
    background: var(--gold-lt);
}

.incluso-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--green);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s;
}

.incluso-item:hover .incluso-icon svg {
    stroke: var(--gold);
}

.incluso-item-body h4 {
    font-size: .97rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 5px;
}

.incluso-item-body p {
    font-size: .84rem;
    font-weight: 300;
    color: var(--text-sub);
    line-height: 1.65;
    margin: 0;
}

.incluso-tag {
    display: inline-block;
    font-size: .60rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-brd);
    background: var(--gold-lt);
    padding: 2px 9px;
    border-radius: 100px;
    margin-top: 8px;
}

/* ══════════════════════════════
   COMP SECTION (dark cards)
══════════════════════════════ */
.comp-section {
    padding: 100px 0 90px;
    background: var(--green);
}

.comp-section .eyebrow-new {
    color: var(--gold);
}

.comp-section .eyebrow-new::before {
    background: var(--gold);
}

.comp-head h2 {
    font-size: clamp(1.9rem, 2.8vw, 2.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.comp-head p {
    font-size: .9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .85);
    line-height: 1.75;
    margin: 0;
}

.comp-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.comp-card {
    border-radius: 16px;
    padding: 40px 36px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .04);
}

.comp-card--featured {
    background: rgba(201, 168, 76, .07);
    border-color: rgba(201, 168, 76, .28);
}

.comp-badge {
    display: inline-block;
    font-size: .60rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.comp-badge--gold {
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, .35);
}

.comp-badge--muted {
    color: rgba(255, 255, 255, .3);
    border: 1px solid rgba(255, 255, 255, .1);
}

.comp-card-name {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 8px;
}

.comp-card-price {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 4px;
}

.comp-card--featured .comp-card-price {
    color: var(--gold);
}

.comp-card:not(.comp-card--featured) .comp-card-price {
    color: rgba(255, 255, 255, .45);
}

.comp-card-period {
    font-size: .74rem;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 32px;
}

.comp-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin-bottom: 24px;
}

.comp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.comp-row:last-of-type {
    border-bottom: none;
}

.comp-row-label {
    font-size: .82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .9);
}

.comp-row-val {
    font-size: .82rem;
    font-weight: 500;
}

.comp-row-val--gold {
    color: var(--gold);
}

.comp-row-val--yes {
    color: #5de09a;
}

.comp-row-val--muted {
    color: rgba(255, 255, 255, .18);
}

.comp-row-val--mid {
    color: rgba(255, 255, 255, .45);
}

.comp-card-btn {
    display: block;
    margin-top: 32px;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-size: .83rem;
    font-weight: 600;
    letter-spacing: .3px;
    text-decoration: none;
    transition: opacity .2s, border-color .2s;
}

.comp-card-btn--gold {
    background: var(--gold);
    color: #fff;
}

.comp-card-btn--gold:hover {
    opacity: .85;
    color: #fff;
}

.comp-card-btn--outline {
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .4);
}

.comp-card-btn--outline:hover {
    border-color: rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .6);
}

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section {
    padding: 100px 0 90px;
    background: var(--light);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.cta-left h2 {
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 400;
    color: var(--green);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-left h2 em {
    font-style: italic;
    color: var(--gold);
}

.cta-left>p {
    font-size: .92rem;
    font-weight: 300;
    color: var(--text-sub);
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 44px;
}

.cta-steps {
    margin-bottom: 44px;
}

.cta-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-brd);
}

.cta-step:first-child {
    border-top: 1px solid var(--light-brd);
}

.cta-step-num {
    font-size: 1.5rem;
    color: var(--light-brd);
    line-height: 1.3;
    padding-top: 1px;
}

.cta-step-body strong {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 3px;
}

.cta-step-body span {
    font-size: .82rem;
    font-weight: 300;
    color: var(--text-sub);
}

.cta-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .3px;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity .2s;
}

.btn-cta-primary:hover {
    opacity: .85;
    color: #fff;
}

.btn-cta-primary svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    flex-shrink: 0;
}

.btn-cta-ghost {
    font-size: .83rem;
    font-weight: 500;
    color: var(--text-sub);
    text-decoration: none;
    border-bottom: 1px solid var(--light-brd);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
}

.btn-cta-ghost:hover {
    color: var(--green);
    border-color: var(--green);
}

.cta-card {
    background: var(--green);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, .13) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card-label {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green-acc);
    display: block;
    margin-bottom: 24px;
}

.cta-status {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .84rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot--on {
    background: #5de09a;
    box-shadow: 0 0 0 3px rgba(93, 224, 154, .15);
}

.status-dot--off {
    background: var(--gold);
}

.cta-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin: 24px 0;
}

.cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .38);
}

.cta-contact-item svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, .22);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.btn-wpp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(37, 211, 102, .13);
    border: 1px solid rgba(37, 211, 102, .2);
    color: #5de09a;
    font-size: .85rem;
    font-weight: 600;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: .3px;
    margin-top: 24px;
    transition: background .2s, border-color .2s;
}

.btn-wpp:hover {
    background: rgba(37, 211, 102, .22);
    border-color: rgba(37, 211, 102, .35);
    color: #5de09a;
}

.btn-wpp svg {
    width: 16px;
    height: 16px;
    fill: #5de09a;
    flex-shrink: 0;
}

/* ══════════════════════════════
   PLANOS CTA / CONTACT SECTION
══════════════════════════════ */
.planos-cta-section {
    background: linear-gradient(135deg, #FF6B35, #FF8A50);
    color: white;
    padding: 70px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.planos-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.planos-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
}

.cta-button.primary {
    background: white;
    color: #FF6B35;
}

.cta-button.primary:hover {
    background: transparent;
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-title {
    font-size: 2.3rem;
    font-weight: 700;
}

.contact-subtitle {
    font-weight: 500;
    color: #e0e0e0;
}

.contact-text {
    font-size: 1.05rem;
    color: #d0d0d0;
    max-width: 650px;
    margin: 0 auto;
}

.btn-outline-light.contact-btn:hover {
    background-color: #ffffff;
    color: #111111;
    transform: translateY(-3px);
}

.btn-light.contact-btn:hover {
    transform: translateY(-3px);
}

/* ══════════════════════════════
   PATTERNS / GALLERY
══════════════════════════════ */
.padrao-bg {
    position: relative;
    overflow: hidden;
}

.padrao-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background-image: url('../img/padrao.png');
    background-repeat: repeat-y;
    background-size: 570px auto;
    opacity: 0.75;
    pointer-events: none;
}

.plans-section {
    position: relative;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
}

.plans-section::before {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: url(../img/simbolo.svg) no-repeat;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
}

.plans-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120px;
    width: 360px;
    height: 360px;
    background: url(../img/simbolo.svg) no-repeat;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
}

.plans-section>* {
    position: relative;
    z-index: 2;
}

.gallery-section::before {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: url(../img/simbolo.svg) no-repeat;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.gallery-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120px;
    width: 360px;
    height: 360px;
    background: url(../img/simbolo.svg) no-repeat;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
}

/* ══════════════════════════════
   CLT / EYEBROW UTILS
══════════════════════════════ */
.clt {
    padding-bottom: 30px !important;
}

.clt li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 21px !important;
}

.clt li:last-child {
    margin-bottom: 0 !important;
}

.clt li .clt-info {
    max-width: calc(100% - 45px);
    padding-left: 15px;
    box-sizing: border-box;
}

.clt li .clt-info h3 {
    color: #2b2b2b;
    font-size: 18px;
    line-height: 20px;
}

.clt li .clt-info h3 span {
    display: block;
    color: #155799;
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 1.5rem;
}

.custom-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #198754;
}

.eyebrow-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.eyebrow-new::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: .6;
}

.eyebrow-apt {
    font-size: .70rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-acc);
    margin-bottom: 8px;
    display: block;
}

.section-title-apt {
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
    margin-bottom: 12px;
}

.list-group-item-apt {
    border-color: var(--light-brd) !important;
    padding: 14px 0;
    font-size: .93rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: transparent !important;
}

.apt-check {
    width: 22px;
    height: 22px;
    background-color: var(--green-lt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.apt-check svg {
    width: 11px;
    height: 11px;
    stroke: var(--green-acc);
    fill: none;
    stroke-width: 2.5;
}

/* ══════════════════════════════
   PILLS BAR
══════════════════════════════ */
.pills-bar {
    background-color: var(--green);
    padding: 14px 0;
}

.pills-bar .badge {
    font-size: .78rem;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, .12) !important;
    color: rgba(255, 255, 255, .90) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pills-bar .badge svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    opacity: .8;
}

/* ══════════════════════════════
   Padrões
══════════════════════════════ */

/* Pager decorativo com SVG */
.padrao-dourado::before,
.padrao-dourado::after {
    content: "";
    position: absolute;
    background: url('../img/simbolo-dourado.svg') no-repeat center !important;
    background-size: contain;
    width: 350px;
    height: 600px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.padrao-dourado::before {
    top: -80px;
    left: -150px;
}

.padrao-dourado::after {
    bottom: -100px;
    right: -150px;
}

.padrao-white::before {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: url(../img/simbolo.svg) no-repeat;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
}

.padrao-white::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120px;
    width: 360px;
    height: 360px;
    background: url(../img/simbolo.svg) no-repeat;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

@media (max-width: 768px) {
    .padrao-dourado::after {
        width: 180px;
        height: 300px;
    }
}

@media (max-width: 991px) {
    .faq-image-col {
        min-height: 340px;
    }

    .faq-image-content {
        padding: 36px 28px;
    }

    .faq-content-col {
        padding: 48px 28px !important;
    }

    .accordion-item::before {
        display: none;
    }

    .faq-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .incluso-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .incluso-sticky {
        position: static;
    }

    .comp-head {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-img-col {
        display: none;
    }

    .pager-section {
        padding-bottom: 60px;
    }

    .padrao-bg::before {
        opacity: 0.25;
    }

}

@media (max-width: 768px) {
    .planos-hero-section {
        padding: 50px 0;
    }

    .planos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-card.popular {
        transform: scale(1);
    }

    .plan-card.popular:hover {
        transform: translateY(-5px);
    }

    .inclusions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background: white;
        z-index: 10;
    }

    .comparison-table thead th:first-child {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    }

    .contact-title {
        font-size: 1.7rem;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .contact-btn {
        width: 100%;
        margin-right: 0 !important;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .inclusions-grid {
        grid-template-columns: 1fr;
    }

    .inclusion-item {
        border-right: none;
    }

    .inclusion-item:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .inclusion-item:last-child {
        border-bottom: none;
    }

    .inclusions-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .inclusions-subtitle {
        text-align: left;
    }

    .comp-cards {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 768px) {

    .pager-section::before,
    .pager-section::after {
        width: 170px;
    }

    .pager-section::before {
        top: -60px;
        left: -60px;
    }

    .pager-section::after {
        bottom: -60px;
        right: -60px;
    }
}
.scs-image-block {
    position: relative;
    overflow: hidden;
}

.scs-image-block .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.scs-image-block .bg-video iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scs-overlay {
    position: relative;
    z-index: 1;
}

.scs-content,
.scs-deco {
    position: relative;
    z-index: 2;
}
.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.video-thumbnail-wrapper:hover .video-thumbnail-img {
    transform: scale(1.01);
    filter: brightness(1.05);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / .3);
    /* top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px; */
}

.play-btn-pulse {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.pulse-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    animation: pulsar 2s ease-out infinite;
}

.pulse-ring.delay {
    animation-delay: 0.7s;
}

@keyframes pulsar {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.play-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #222;
    padding-left: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background 0.2s ease;
}

.play-icon img {
    height: 50%;
    margin-left: -9px;
}

.video-thumbnail-wrapper:hover .play-icon {
    transform: scale(1.1);
    background: #fff;
}

/* Modal */
.video-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay.ativo {
    display: flex;
}

.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 560px;
    /* era 860px */
    max-height: 90vh;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.video-modal-container video {
    width: 100%;
    display: block;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 28px;
    line-height: 1;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.modal-backdrop {
    z-index: 1040 !important;
}

.modal {
    z-index: 1050 !important;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Container do vídeo no popup */
.video-popup-content {
    width: 50vw;
    max-width: 860px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
    /* remove gap embaixo do vídeo */
}

/* Esconde o elemento inline fora do popup */
.mfp-hide {
    display: none !important;
}

/* Overlay escuro */
.mfp-bg {
    background: rgba(0, 0, 0, 0.88) !important;
}

/* Botão de fechar */
.mfp-close {
    color: #fff !important;
    font-size: 32px !important;
    opacity: 0.85;
}

.mfp-close:hover {
    opacity: 1;
}

.mfp-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.mfp-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.mfp-inline-holder .mfp-content {
    /* width: 60vw !important;
    max-width: 860px !important; */
    max-height: 90vh !important;
    max-width: 90vh;
    margin: 0 auto !important;
    float: none !important;
}

.video-popup-content {
    width: 100%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

/* Centraliza o botão sobre o image block */
.scs-video-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-decoration: none;
}

/* Garante referência de posicionamento */
.scs-image-block {
    position: relative; /* adicione apenas se ainda não estiver definido */
}


#contato {
    scroll-margin-top: 80px;
    /* altura do seu header */
}

/* ── SEÇÃO DE CONTATO PREMIUM ────────────────────── */

.scs-section {
    background: linear-gradient(135deg, #003327 0%, #004d3a 50%, #003327 100%);
    padding: 0 !important;
    position: relative;
    overflow: hidden;
}

/* ── EFEITO SUTIL NO BACKGROUND ──────────────────── */
.scs-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 70%, rgba(193, 172, 105, 0.10) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(193, 172, 105, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(193, 172, 105, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

.scs-wrapper {
    padding: 60px 180px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .scs-wrapper {
        padding: 60px 80px;
    }
}

@media (max-width: 991px) {
    .scs-wrapper {
        padding: 60px 40px;
    }
}

@media (max-width: 575px) {
    .scs-wrapper {
        padding: 40px 16px;
    }
}

/* ── IMAGEM DE FUNDO - MAIS CLARA ───────────────── */
.scs-image-block {
    position: relative;
    min-height: 520px;
    border-radius: 16px;
    overflow: hidden;
    background: url('../img/contato-bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.scs-image-block-contato {
    position: relative;
    min-height: 520px;
    border-radius: 16px;
    overflow: hidden;
    background: url('../img/contato-1-bg.jpeg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.scs-image-block:hover {
    transform: scale(1.02);
}

/* ── OVERLAY MAIS LEVE ──────────────────────────── */
.scs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 51, 39, 0.70) 0%,
            rgba(0, 51, 39, 0.50) 35%,
            rgba(0, 51, 39, 0.20) 70%,
            rgba(0, 51, 39, 0) 100%);
    z-index: 1;
    transition: opacity 0.6s ease;
}

.scs-image-block:hover .scs-overlay {
    opacity: 0.8;
}

/* ── CONTEÚDO ───────────────────────────────────── */
.scs-content {
    position: relative;
    z-index: 2;
    padding: 52px 48px;
    color: #fff;
    max-width: 520px;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── BADGE ──────────────────────────────────────── */
.scs-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #C1AC69;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 16px;
    border: 1.5px solid rgba(193, 172, 105, 0.4);
    border-radius: 25px;
    background: linear-gradient(135deg,
            rgba(193, 172, 105, 0.12) 0%,
            rgba(193, 172, 105, 0.05) 100%);
    animation: fadeIn 0.8s ease-out 0.2s both;
    backdrop-filter: blur(10px);
}

/* ── TÍTULO ────────────────────────────────────── */
.scs-title {
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 16px;
    color: #fff;
    letter-spacing: -0.5px;
    animation: fadeIn 0.8s ease-out 0.3s both;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ── SUBTÍTULO ──────────────────────────────────── */
.scs-subtitle {
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 16px;
    line-height: 1.5;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

/* ── TEXTO DESCRITIVO ───────────────────────────── */
.scs-text {
    font-size: clamp(13px, 1.1vw, 15px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0 0 32px;
    animation: fadeIn 0.8s ease-out 0.5s both;
}

/* ── BOTÃO CTA PREMIUM ──────────────────────────── */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #C1AC69 0%, #D4C081 100%);
    color: #003327 !important;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 8px 32px rgba(193, 172, 105, 0.35), 0 4px 18px rgba(0, 0, 0, 0.35);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out 0.6s both;
    cursor: pointer;
    white-space: nowrap;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transition: left 0.35s ease;
    z-index: 0;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #D4C081 0%, #C1AC69 100%);
    box-shadow: 0 12px 40px rgba(193, 172, 105, 0.5), 0 8px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
    color: #003327 !important;
}

.btn-cta:active {
    transform: translateY(-1px);
}

.btn-cta svg {
    flex-shrink: 0;
    transition: transform 0.35s ease;
    position: relative;
    z-index: 1;
}

.btn-cta:hover svg {
    transform: scale(1.15) rotate(10deg);
}

.btn-cta span {
    position: relative;
    z-index: 1;
}

/* ── SVG DECORATIVO COM ANIMAÇÃO ────────────────── */
.scs-deco {
    position: absolute;
    right: -280px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0.65;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 30px 50px rgba(193, 172, 105, 0.2)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.scs-deco-svg {
    width: 420px;
    height: 420px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% + 25px));
    }
}

/* ── RESPONSIVO MOBILE ──────────────────────────── */
@media (max-width: 767px) {
    .scs-wrapper {
        padding: 40px 16px;
    }

    .scs-image-block {
        min-height: 420px;
        border-radius: 12px;
    }

    .scs-content {
        padding: 32px 20px;
        max-width: 100%;
    }

    .scs-deco {
        right: -175px;
        opacity: 0.4;
        top: 300px;
    }

    .scs-deco-svg {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .scs-image-block {
        min-height: 360px;
    }

    .scs-content {
        padding: 15px 16px;
    }

    .btn-cta {
        width: 100%;
    }
}

/* ── ANIMAÇÃO FADE IN ──────────────────────────── */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.gallery-title {
    font-family: Poppins, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 10px;
}

.gallery-line {
    width: 50px;
    height: 3px;
    background-color: #C1AC69;
    border-radius: 2px;
    margin-bottom: 14px;
}

.gallery-subtitle {
    font-size: 16px;
    color: #575757;
    margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   SWIPER PRINCIPAL
───────────────────────────────────────────── */
.studioSwiper {
    position: relative;
    padding: 10px 70px 52px;
    overflow: visible;
}

.studioSwiper .swiper-slide {
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.6s ease;
    opacity: 0.72;
    transform: scale(0.88);
    filter: blur(0.4px);
    border-radius: 14px;
}

.studioSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
    border-radius: 14px;
}

/* — Link wrapper — */
.gallery-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    line-height: 0;
    text-decoration: none;
}

/* — Imagem principal — */
.gallery-link img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.5s ease;
}

.gallery-link:hover img {
    transform: scale(1.05);
}

/* — Gradiente fixo na base — */
.gallery-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.40) 40%,
            transparent 100%);
    border-radius: 0 0 14px 14px;
    z-index: 1;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.gallery-link:hover::after {
    opacity: 0.6;
}

/* — Legenda — */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 14px 16px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    pointer-events: none;
}

.gallery-link:hover .gallery-caption {
    opacity: 0;
    transform: translateY(6px);
}

.gallery-caption-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: rgba(193, 172, 105, 0.20);
    border: 1px solid rgba(193, 172, 105, 0.55);
    border-radius: 6px;
    flex-shrink: 0;
}

.gallery-caption-icon svg {
    width: 13px;
    height: 13px;
    stroke: #C1AC69;
}

.gallery-caption-text {
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* — Overlay de lupa — */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 39, 0.50);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 14px;
    z-index: 3;
}

.gallery-link:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    width: 56px;
    height: 56px;
    background: rgba(193, 172, 105, 0.95);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transform: scale(0.75);
    transition: transform 0.3s ease;
}

.gallery-link:hover .gallery-zoom {
    transform: scale(1);
}

.gallery-zoom svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
}

/* — Setas de navegação — */
.studio-prev,
.studio-next {
    width: 44px !important;
    height: 44px !important;
    background-color: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14) !important;
    top: 44% !important;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.studio-prev::after,
.studio-next::after {
    font-size: 13px !important;
    font-weight: 900;
    color: #003327 !important;
    transition: color 0.25s ease;
}

.studio-prev {
    left: 12px !important;
}

.studio-next {
    right: 12px !important;
}

.studio-prev:hover,
.studio-next:hover {
    background-color: #C1AC69 !important;
    box-shadow: 0 8px 24px rgba(193, 172, 105, 0.40) !important;
}

.studio-prev:hover::after,
.studio-next:hover::after {
    color: #ffffff !important;
}

/* — Paginação — */
.studio-pagination {
    bottom: 12px !important;
}

.studio-pagination .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background-color: #C1AC69 !important;
    opacity: 0.35 !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.studio-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 26px !important;
    border-radius: 4px !important;
}

/* ─────────────────────────────────────────────
   SWIPER THUMBS
───────────────────────────────────────────── */
.studioThumbsSwiper {
    padding: 4px 2px;
    overflow: hidden;
}

.studioThumbsSwiper .swiper-slide {
    cursor: pointer;
    border-radius: 8px;
    opacity: 0.45;
    transform: scale(0.94);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.studioThumbsSwiper .swiper-slide:hover {
    opacity: 0.70;
    transform: scale(0.96);
}

/* Thumb ativo */
.studioThumbsSwiper .swiper-slide-thumb-active {
    opacity: 1;
    transform: scale(1);
}

/* Thumb item */
.thumb-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    line-height: 0;
}

.thumb-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    transition: filter 0.3s ease;
    filter: brightness(0.80) saturate(0.85);
}

/* Borda dourada + imagem viva no ativo */
.studioThumbsSwiper .swiper-slide-thumb-active .thumb-item {
    border-color: #C1AC69;
    box-shadow: 0 4px 14px rgba(193, 172, 105, 0.45);
}

.studioThumbsSwiper .swiper-slide-thumb-active .thumb-item img {
    filter: brightness(1) saturate(1);
}

/* Hover nos inativos */
.studioThumbsSwiper .swiper-slide:not(.swiper-slide-thumb-active):hover .thumb-item img {
    filter: brightness(0.92) saturate(0.95);
}

/* ─────────────────────────────────────────────
   MAGNIFIC POPUP
───────────────────────────────────────────── */
.mfp-bg {
    background: rgba(0, 0, 0, 0.92) !important;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 1 !important;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0 !important;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.mfp-figure figure {
    border-bottom: 3px solid #C1AC69;
}

.mfp-counter {
    color: #C1AC69 !important;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    right: 8px;
    top: 8px;
}

.mfp-arrow {
    opacity: 0.75 !important;
    transition: opacity 0.2s ease;
}

.mfp-arrow:hover {
    opacity: 1 !important;
}

.mfp-close {
    color: #C1AC69 !important;
    font-size: 36px !important;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mfp-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.mfp-title {
    color: rgba(255, 255, 255, 0.75);
    font-family: Poppins, sans-serif;
    font-size: 13px;
    padding-left: 4px;
}

/* ─────────────────────────────────────────────
   RESPONSIVO
───────────────────────────────────────────── */
@media (max-width: 991px) {
    .studioSwiper {
        padding: 10px 50px 52px;
    }
}

@media (max-width: 767px) {
    .studioSwiper {
        padding: 10px 16px 52px;
    }

    .studio-prev,
    .studio-next {
        display: none !important;
    }

    .gallery-title {
        font-size: 24px;
    }

    .studioSwiper .swiper-slide {
        opacity: 1;
        transform: scale(0.97) !important;
        filter: blur(0);
    }

    .studioSwiper .swiper-slide-active {
        transform: scale(1) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .studioThumbsSwiper {
        display: none;
    }
}

.localizacao-section {
    background-color: #003327;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

/* ─── TÍTULO ─── */
.localizacao-title {
    font-family: Poppins, sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.localizacao-title em {
    font-style: italic;
    font-weight: 600;
    color: #C1AC69;
}

.localizacao-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ─── WRAPPER DO MAPA ─── */
.mapa-wrapper {
    position: relative;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(193, 172, 105, 0.2);
}

.mapa-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}

/* Barra dourada no topo do mapa */
.mapa-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C1AC69 0%, rgba(193, 172, 105, 0.3) 100%);
    z-index: 10;
    border-radius: 16px 16px 0 0;
}

/* Badge flutuante */
.mapa-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 51, 39, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 172, 105, 0.35);
    color: rgba(255, 255, 255, 0.9);
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

/* Gradiente lateral esquerdo suave */
.mapa-fade-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 51, 39, 0.15) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* ─── CARDS DE INFO ─── */
.loc-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 12px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    flex: 1;
}

.loc-card:last-child {
    margin-bottom: 0;
}

.loc-card:hover {
    background: rgba(193, 172, 105, 0.08);
    border-color: rgba(193, 172, 105, 0.25);
    transform: translateX(4px);
}

.loc-card--cta {
    background: rgba(193, 172, 105, 0.07);
    border-color: rgba(193, 172, 105, 0.22);
}

.loc-card--cta:hover {
    background: rgba(193, 172, 105, 0.13);
    border-color: rgba(193, 172, 105, 0.40);
}

.txt-pc {
    opacity: 1;
}

.txt-mobile {
    display: none;
}

/* Ícone */
.loc-card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    border: 1px solid rgba(193, 172, 105, 0.30);
    background: rgba(193, 172, 105, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
    margin-top: 1px;
}

.loc-card:hover .loc-card-icon {
    background: rgba(193, 172, 105, 0.18);
}

/* Texto */
.loc-card-title {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.2px;
}

.loc-card-text {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
}

/* Botão CTA no card */
.loc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #C1AC69;
    text-decoration: none;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(193, 172, 105, 0.35);
    padding-bottom: 2px;
    margin-top: 4px;
    transition: gap 0.2s ease, border-color 0.2s ease;
}

.loc-cta-btn:hover {
    gap: 12px;
    border-color: #C1AC69;
    color: #C1AC69;
    text-decoration: none;
}

/* ─── EYEBROW (reutilizado do projeto) ─── */
.eyebrow-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C1AC69;
    margin-bottom: 18px;
}

/* ─── RESPONSIVO ─── */
@media (max-width: 991px) {
    .mapa-wrapper {
        height: 380px;
    }

    .loc-card {
        flex: none;
    }
}

@media (max-width: 767px) {
    .localizacao-section {
        padding: 60px 0;
    }

    .mapa-wrapper {
        height: 300px;
        border-radius: 12px;
    }

    .localizacao-title {
        font-size: 28px;
    }

    .loc-card:hover {
        transform: none;
    }
}
/* Remove o height: 100vh que quebra o posicionamento */
.mfp-content {
    display: block;
}

.mfp-inline-holder .mfp-content {
    text-align: center;
}

.popup-wrapper {
    position: relative;
    display: inline-block;
    max-width: 90%;
    width: 400px;
    border-radius: 10px;
    overflow: visible;
    margin: 0 auto;
}

.popup-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.popup-close {
    position: absolute;
    top: -14px;
    right: -14px;  /* fica sobre a imagem, fora do overflow */
    background: #003327;
    color: #C1AC69;
    border: 2px solid #C1AC69;
    font-size: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: #C1AC69;
    color: #003327;
}