:root {
    --brand: #FFD400;
    --brand-2: #F3C700;
    --dark: #1f1f1f;
    --soft: #f7f7f9;
}

html,
body {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    color: #333;
    background: #fff
}

.navbar {
    background-color: #3e3e3f;
    box-shadow: 0 6px 30px rgba(0, 0, 0, .05)
}

.nav-link{
    color:#fff
}

.navbar-brand img {
    height: auto;
    width: 200px;
}

.btn-brand {
    background: var(--brand);
    border-color: var(--brand);
    color: #000;
    font-weight: 600
}

.btn-brand:hover {
    filter: brightness(.95);
    color: #000;
    border-color: var(--brand-2)
}

.text-brand {
    color: var(--brand)
}

.bg-soft {
    background: var(--soft)
}

.badge-brand {
    background: var(--dark);
    color: #fff
}

.hero {
    background: radial-gradient(1200px 500px at 80% -10%, rgba(255, 212, 0, .25), transparent 60%), radial-gradient(900px 400px at 10% 0%, rgba(0, 0, 0, .06), transparent 60%), linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    position: relative
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px 0;
    height: 16px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    opacity: .9
}

.page-hero {
    padding: 3.5rem 0 2.25rem
}

.page-hero .lead {
    color: #6c757d
}

.section-title .bar {
    width: 78px;
    height: 4px;
    background: var(--brand);
    border-radius: 2px;
    margin-top: .75rem
}

.checklist li::marker {
    color: var(--brand-2)
}

.shadow-soft {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06)
}

.course-card {
    transition: transform .2s ease
}

.course-card:hover {
    transform: translateY(-4px)
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--brand);
    border-radius: 50%;
    display: inline-block;
    margin: 0 .5rem
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1040
}

.whatsapp-float .btn {
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15)
}

.map-embed {
    border: 0;
    width: 100%;
    height: 280px
}

.footer {
    background: #121212;
    color: #D0D0D0
}

.footer a {
    color: #fff;
    text-decoration: none
}

.footer a:hover {
    text-decoration: underline
}

.form-control,
.form-select {
    border-radius: .6rem
}

.nav-link.active {
    color: var(--brand) !important
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "›"
}

.small-muted {
    color: #6c757d
}