/* ========== VARIABLES ========== */
:root {
    --primary: #0a1f44;
    --primary-light: #1a3a6b;
    --accent: #2bb5e8;
    --accent-dark: #1a9fd4;
    --green-whatsapp: #25d366;
    --gradient-blue: linear-gradient(135deg, #0a1f44 0%, #1565c0 50%, #2bb5e8 100%);
    --gradient-cta: linear-gradient(135deg, #0a1f44 0%, #1565c0 100%);
    --bg-light: #f4f8fb;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
}

/* ========== BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== TOP LINE (faixa decorativa verde/cyan) ========== */
.top-line {
    height: 4px;
    background: linear-gradient(90deg, #00e676 0%, #00e5ff 50%, #2bb5e8 100%);
    width: 100%;
}

/* ========== SITE HEADER ========== */
.site-header {
    background: var(--gradient-blue);
    z-index: 1050;
}

/* Header top row (redes + portais) */
.header-top {
    padding: 8px 0 0;
}

.navbar-social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-nav-icon {
    color: #fff;
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.social-nav-icon:hover {
    color: #00e5ff;
    border-color: #00e5ff;
}

.btn-portal {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 4px 16px !important;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.6;
}

.btn-portal:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

.btn-portal i {
    font-size: 0.7rem;
}

.btn-whatsapp-header {
    background: #25d366;
    color: #fff !important;
    border: none;
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    line-height: 1.6;
}

.btn-whatsapp-header:hover {
    background: #1eba59;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-header i {
    font-size: 0.85rem;
}

/* Header layout */
.site-header .container > .d-flex {
    padding: 10px 0;
}

.header-logo img {
    height: 55px;
    width: auto;
    display: block;
}

/* Top row (redes + portais) */
.header-top-row {
    padding-bottom: 6px;
}

/* Nav row (links) */
.header-nav-row {
    padding: 4px 0;
}

.header-nav-row .nav-link {
    font-weight: 500;
    color: #fff !important;
    padding: 6px 14px !important;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.header-nav-row .nav-link:hover {
    color: #00e5ff !important;
}

.header-nav-row .dropdown-toggle::after {
    border: none;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.5rem;
    margin-left: 4px;
    vertical-align: middle;
}

.header-nav-row .dropdown-menu {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
}

.header-nav-row .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 20px;
    transition: all 0.2s ease;
}

.header-nav-row .dropdown-item:hover {
    background: rgba(43, 181, 232, 0.2);
    color: #00e5ff;
}

/* Mobile nav */
#mobileNav .nav-link {
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* ========== BANNER ========== */
#banner {
    line-height: 0;
    overflow: hidden;
}

#banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== INFO BAR ========== */
#info-bar {
    background: var(--gradient-blue);
}

.info-item {
    padding: 10px 15px;
}

.info-item i {
    color: var(--accent);
}

.info-item p {
    font-size: 0.9rem;
}

/* ========== SECTION TITLES ========== */
.section-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 2rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 10px;
}

/* ========== CURSOS ========== */
.section-cursos {
    background-color: #fff;
}

.curso-card-overlay {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curso-card-overlay:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.curso-card-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.curso-card-overlay:hover img {
    transform: scale(1.05);
}

.curso-card-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 68, 0.8) 0%, rgba(10, 31, 68, 0.2) 50%, rgba(43, 181, 232, 0.15) 100%);
    border-radius: 16px;
}

.curso-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
}

.curso-card-content .badge-curso {
    display: inline-block;
    background: var(--green-whatsapp);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.curso-card-content h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.4;
}

/* Botão inscreva-se */
.btn-inscrevase {
    background-color: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-inscrevase:hover {
    background-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 181, 232, 0.4);
}

.btn-primary {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-dark) !important;
    border-color: var(--accent-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(43, 181, 232, 0.4);
}

/* ========== CTA BAR (azul) ========== */
#cta-bar {
    background: var(--gradient-cta);
}

.btn-cta-green {
    background-color: var(--green-whatsapp);
    color: var(--primary) !important;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-green:hover {
    background-color: #20bd5a;
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-cta-outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    transform: translateY(-2px);
}

/* ========== CTA BAR VERDE ========== */
.cta-green-bar {
    background: #00e676;
}

.cta-text {
    color: var(--primary);
    font-size: 1.2rem;
}

.btn-cta-dark {
    background-color: var(--primary);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 12px 36px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cta-dark:hover {
    background-color: var(--primary-light);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 31, 68, 0.3);
}

.btn-cta-outline-dark {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 10px 36px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cta-outline-dark:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-2px);
}

/* ========== SOBRE + NOSSOS CURSOS (bloco único) ========== */
.section-sobre-cursos {
    background-color: #fff;
    overflow: hidden;
}

.sobre-cursos-watermark {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.sobre-cursos-watermark img {
    width: 380px;
    height: auto;
}

.section-sobre-cursos .container {
    position: relative;
    z-index: 1;
}

.sobre-img-wrapper {
    position: relative;
}

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

.sobre-label {
    color: var(--text-dark);
    font-size: 1.3rem;
}

.sobre-titulo {
    color: #2bb5e8;
    font-weight: 800;
    font-size: 2.5rem;
}

.btn-saiba-mais {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.3);
}

.text-primary-dark {
    color: var(--primary) !important;
}

.text-accent {
    color: #2bb5e8 !important;
}

/* Nossos Cursos title */
.nossos-cursos-title {
    color: #2bb5e8;
    font-size: 2rem;
}

.curso-circle-card {
    padding: 30px 20px;
}

.curso-circle-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #2bb5e8;
    transition: transform 0.3s ease;
}

.curso-circle-img:hover {
    transform: scale(1.05);
}

.curso-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-ver-cursos {
    display: inline-block;
    background: #2bb5e8;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    transition: all 0.3s ease;
}

.btn-ver-cursos:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(43, 181, 232, 0.3);
}

/* ========== COMO FUNCIONA ========== */
.section-como-funciona {
    background-color: var(--bg-light);
}

.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-card h5 {
    color: var(--primary);
}

.step-card p {
    font-size: 0.9rem;
}

/* ========== CTA BAR AZUL 2 ========== */
.cta-bar-azul {
    background: var(--gradient-blue);
}

.btn-cta-white {
    background: #fff;
    color: var(--primary) !important;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cta-white:hover {
    background: transparent;
    color: #fff !important;
    border-color: #fff;
    transform: translateY(-2px);
}

/* ========== EVENTOS ========== */
.section-eventos {
    background-color: #fff;
}

.evento-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.evento-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.evento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.evento-card:hover .evento-img img {
    transform: scale(1.05);
}

.evento-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    text-align: center;
    line-height: 1.2;
}

.evento-day {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
}

.evento-month {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.evento-body {
    padding: 20px;
}

.evento-body h5 {
    color: var(--primary);
    font-size: 1rem;
}

.btn-evento {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-evento:hover {
    color: var(--accent-dark);
    gap: 4px;
}

/* ========== DEPOIMENTO ========== */
.section-depoimento {
    background: url('../img/fundo_depoimneto.png') center center / cover no-repeat;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(43, 181, 232, 0.15);
}

.quote-icon i {
    color: var(--accent);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
}

.social-link {
    color: var(--accent);
    font-weight: 500;
}

.social-link:hover {
    color: var(--accent-dark);
}

.testimonial-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

.testimonial-text p {
    margin-bottom: 0;
}

#carouselDepoimentos .carousel-item {
    transition: opacity 0.6s ease-in-out;
}

.btn-depoimento-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(43, 181, 232, 0.3);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-depoimento-nav:hover {
    background: var(--accent);
    color: #fff;
}

.depoimento-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(43, 181, 232, 0.3);
    margin: 0 4px;
    padding: 0;
    transition: all 0.3s;
}

.depoimento-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

.depoimento-indicators {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

/* ========== INSTAGRAM ========== */
.section-instagram {
    background: #fff;
}

.insta-icon-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.insta-icon-header i {
    font-size: 3rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insta-feed {
    display: flex;
    gap: 15px;
    overflow: hidden;
}

.insta-item {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    min-width: 0;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.insta-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.insta-item:hover img {
    transform: scale(1.08);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover .insta-overlay i {
    transform: scale(1);
}

/* Efeito escalonado nos items */
.insta-item:nth-child(1) { animation: instaFloat 3s ease-in-out infinite; }
.insta-item:nth-child(2) { animation: instaFloat 3s ease-in-out 0.3s infinite; }
.insta-item:nth-child(3) { animation: instaFloat 3s ease-in-out 0.6s infinite; }
.insta-item:nth-child(4) { animation: instaFloat 3s ease-in-out 0.9s infinite; }
.insta-item:nth-child(5) { animation: instaFloat 3s ease-in-out 1.2s infinite; }

@keyframes instaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.insta-item:hover {
    animation-play-state: paused;
}

@media (max-width: 767.98px) {
    .insta-feed {
        flex-wrap: wrap;
    }

    .insta-item {
        flex: 0 0 calc(50% - 8px);
    }

    .insta-item:last-child {
        display: none;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary);
}

.footer-logo {
    max-height: 80px;
    width: auto;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact i {
    color: var(--accent);
    width: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--green-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20bd5a;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
    .header-logo img {
        height: 40px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .info-item p {
        font-size: 0.8rem;
    }

    .gallery-img {
        height: 140px;
    }

    .testimonial-card {
        padding: 25px !important;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    #cta-bar h3 {
        font-size: 1.3rem;
    }
}

/* ========== DECORATIVE PATTERNS ========== */

/* --- Bolhas grandes na seção Cursos --- */
.section-cursos {
    position: relative;
    overflow: hidden;
}

.section-cursos::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(43,181,232,0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -120px;
    left: -120px;
    pointer-events: none;
    animation: floatBubble 8s ease-in-out infinite;
}

.section-cursos::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,230,118,0.10) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
    pointer-events: none;
    animation: floatBubble 10s ease-in-out 2s infinite;
}

/* --- Cruzes médicas + dots na seção Como Funciona --- */
.section-como-funciona {
    position: relative;
    overflow: hidden;
}

.section-como-funciona::before {
    content: '✚';
    position: absolute;
    font-size: 14rem;
    color: #2bb5e8;
    opacity: 0.08;
    top: -20px;
    right: 20px;
    pointer-events: none;
    animation: floatBubble 12s ease-in-out infinite;
}

.section-como-funciona::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -80px;
    background-image: radial-gradient(circle, rgba(43,181,232,0.08) 2px, transparent 2px);
    background-size: 24px 24px;
    pointer-events: none;
    animation: rotateSlow 40s linear infinite;
}

/* --- Dots + círculos vivos nos CTAs --- */
#cta-bar {
    position: relative;
    overflow: hidden;
}

#cta-bar::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    top: -100px;
    right: 5%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 2px);
    background-size: 22px 22px;
    pointer-events: none;
    animation: driftRight 12s linear infinite alternate;
}

#cta-bar::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: 8%;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseRing 5s ease-in-out infinite;
}

.cta-bar-azul {
    position: relative;
    overflow: hidden;
}

.cta-bar-azul::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    bottom: -120px;
    left: 3%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.18) 2px, transparent 2px);
    background-size: 20px 20px;
    pointer-events: none;
    animation: rotateSlow 30s linear infinite;
}

.cta-bar-azul::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    top: -60px;
    right: 10%;
    border: 3px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseRing 6s ease-in-out 1s infinite;
}

.cta-green-bar {
    position: relative;
    overflow: hidden;
}

.cta-green-bar::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    top: -120px;
    left: -60px;
    background-image: radial-gradient(circle, rgba(10,31,68,0.08) 2.5px, transparent 2.5px);
    background-size: 24px 24px;
    pointer-events: none;
    animation: driftRight 15s linear infinite alternate;
}

.cta-green-bar::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    bottom: -80px;
    right: 3%;
    border: 3px solid rgba(10,31,68,0.08);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseRing 7s ease-in-out infinite;
}

/* --- Anéis + cruzes na seção Eventos --- */
.section-eventos {
    position: relative;
    overflow: hidden;
}

.section-eventos::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border: 4px solid rgba(43,181,232,0.08);
    border-radius: 50%;
    top: -80px;
    right: -100px;
    pointer-events: none;
    animation: pulseRing 5s ease-in-out infinite;
}

.section-eventos::after {
    content: '✚';
    position: absolute;
    font-size: 6rem;
    color: #2bb5e8;
    opacity: 0.06;
    bottom: 20px;
    left: 30px;
    pointer-events: none;
    animation: floatBubble 9s ease-in-out 1s infinite;
}

/* --- Sobre + Nossos Cursos: bolha verde e anel --- */
.section-sobre-cursos::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0,230,118,0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
    animation: floatBubble 12s ease-in-out 3s infinite;
}

.section-sobre-cursos::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(43,181,232,0.08);
    border-radius: 50%;
    top: 40px;
    right: -60px;
    pointer-events: none;
    z-index: 0;
    animation: pulseRing 7s ease-in-out infinite;
}

/* --- Quadrados + diamante na seção Instagram --- */
.section-instagram {
    position: relative;
    overflow: hidden;
}

.section-instagram::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border: 3px solid rgba(43,181,232,0.1);
    top: 20px;
    left: 20px;
    pointer-events: none;
    transform: rotate(45deg);
    border-radius: 12px;
    animation: rotateSlow 25s linear infinite;
}

.section-instagram::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(0,230,118,0.1);
    bottom: 30px;
    right: 40px;
    pointer-events: none;
    transform: rotate(30deg);
    border-radius: 12px;
    animation: rotateSlow 20s linear infinite reverse;
}

/* --- Glow no footer --- */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: radial-gradient(ellipse at 15% 30%, rgba(43,181,232,0.08) 0%, transparent 50%),
                       radial-gradient(ellipse at 85% 70%, rgba(43,181,232,0.06) 0%, transparent 40%),
                       radial-gradient(ellipse at 50% 100%, rgba(0,230,118,0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* --- Info bar: dots flutuantes --- */
#info-bar {
    position: relative;
    overflow: hidden;
}

#info-bar::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    top: -100px;
    left: -50px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    pointer-events: none;
    animation: driftRight 18s linear infinite alternate;
}

#info-bar::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: 5%;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseRing 6s ease-in-out infinite;
}

/* Keyframes dos patterns */
@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -25px) scale(1.08); }
    50% { transform: translate(-15px, -40px) scale(1); }
    75% { transform: translate(25px, -15px) scale(0.95); }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes driftRight {
    from { transform: translateX(-60px) rotate(0deg); }
    to { transform: translateX(60px) rotate(5deg); }
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

/* ========== SCROLL SMOOTH ========== */
html {
    scroll-behavior: smooth;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== PAGE HEADER (Cabeçalho Páginas Internas) ========== */
.page-header {
    background: var(--gradient-blue);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(43, 181, 232, 0.08);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.page-header .breadcrumb {
    background: none;
    padding: 0;
    padding-left: 0;
    margin: 0.75rem 0 0;
    list-style: none;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.page-header .breadcrumb-item a:hover {
    color: #fff;
}

.page-header .breadcrumb-item.active {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "›";
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-header {
        padding: 2.5rem 0 2rem;
    }
    .page-header h1 {
        font-size: 1.6rem;
    }
}

/* ========== PÁGINA 404 ========== */
.section-404 {
    background: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-number {
    font-size: 9rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.error-number .error-icon {
    display: inline-block;
    -webkit-text-fill-color: var(--accent);
    font-size: 7rem;
    vertical-align: middle;
    animation: pulse404 2s ease-in-out infinite;
}

@keyframes pulse404 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.card-404 {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(10, 31, 68, 0.08);
    overflow: hidden;
}

.card-404 .btn-primary-custom {
    background: var(--gradient-blue);
    border: none;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.2);
}

.card-404 .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 31, 68, 0.3);
}

.card-404 .btn-outline-custom {
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s;
}

.card-404 .btn-outline-custom:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.links-404 .btn {
    border: 1px solid #e0e8f0;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.links-404 .btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.card-ajuda-404 {
    background: linear-gradient(135deg, rgba(43, 181, 232, 0.08) 0%, rgba(10, 31, 68, 0.05) 100%);
    border: 1px solid rgba(43, 181, 232, 0.15);
    border-radius: 1.5rem;
}

.card-ajuda-404 a {
    transition: all 0.3s;
}

.card-ajuda-404 a:hover {
    color: var(--accent) !important;
}

@media (max-width: 768px) {
    .error-number {
        font-size: 6rem;
    }
    .error-number .error-icon {
        font-size: 4.5rem;
    }
}

/* ========== PÁGINA FALE CONOSCO ========== */
.contato-section {
    padding: 3.5rem 0;
    background: var(--bg-light);
}

.contato-wrapper {
    display: flex;
    gap: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(10, 31, 68, 0.1);
    background: #fff;
}

/* Sidebar Esquerda (Azul) */
.contato-sidebar {
    background: var(--gradient-blue);
    color: #fff;
    padding: 2.5rem;
    width: 380px;
    min-width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.contato-sidebar::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.contato-sidebar::after {
    content: '';
    position: absolute;
    top: -40px;
    right: 40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(43, 181, 232, 0.1);
    pointer-events: none;
}

.contato-sidebar h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contato-sidebar > p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Lista de informações */
.contato-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contato-sidebar-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contato-sidebar-list li > i {
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-top: 2px;
}

.contato-sidebar-list li div {
    display: flex;
    flex-direction: column;
}

.contato-sidebar-list li div span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.6;
    margin-bottom: 2px;
}

.contato-sidebar-list li div a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.contato-sidebar-list li div a:hover {
    opacity: 0.8;
}

.contato-sidebar-list li div strong {
    font-weight: 600;
    font-size: 0.95rem;
}

.contato-sidebar-list li div small {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Redes sociais sidebar */
.contato-sidebar-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contato-sidebar-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.contato-sidebar-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Área do Formulário (Direita) */
.contato-form-area {
    flex: 1;
    padding: 2.5rem 3rem;
}

.contato-form-area h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Alert de erro */
.contato-alert-erro {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.contato-alert-erro > i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 2px;
}

.contato-alert-erro div strong {
    display: block;
    color: #dc2626;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contato-alert-erro div span {
    font-size: 0.85rem;
    color: #7f1d1d;
}

/* Layout de campos (2 colunas) */
.contato-form-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.contato-form-row .contato-field {
    flex: 1;
}

.contato-field {
    margin-bottom: 1.25rem;
}

.contato-form-row .contato-field {
    margin-bottom: 0;
}

.contato-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.contato-field .form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 0.65rem;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: #f8fafc;
}

.contato-field .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(43, 181, 232, 0.12);
    background: #fff;
}

.contato-field .form-control::placeholder {
    color: #a0aec0;
    font-size: 0.85rem;
}

.contato-field textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Rodapé do form: captcha + botão */
.contato-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contato-btn-enviar {
    background: var(--gradient-blue);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.2);
    white-space: nowrap;
}

.contato-btn-enviar:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(10, 31, 68, 0.3);
}

.contato-btn-enviar:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Seção do Mapa */
.contato-mapa-section {
    padding: 0 0 3.5rem;
    background: var(--bg-light);
}

.contato-mapa {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(10, 31, 68, 0.1);
}

.contato-mapa-frame {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsivo Contato */
@media (max-width: 991px) {
    .contato-wrapper {
        flex-direction: column;
    }

    .contato-sidebar {
        width: 100%;
        min-width: 100%;
        padding: 2rem;
    }

    .contato-form-area {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .contato-form-row {
        flex-direction: column;
        gap: 0;
    }

    .contato-form-row .contato-field {
        margin-bottom: 1.25rem;
    }

    .contato-form-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .contato-btn-enviar {
        width: 100%;
        text-align: center;
    }

    .contato-form-area {
        padding: 1.5rem;
    }

    .contato-sidebar {
        padding: 1.5rem;
    }
}

/* ========== PÁGINA EVENTOS (Listagem) ========== */
.eventos-page {
    background: var(--bg-light);
    min-height: 50vh;
}

/* Card do Evento */
.evento-page-card {
    display: block;
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.07);
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
    height: 100%;
}

.evento-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 31, 68, 0.14);
    color: inherit;
}

.evento-page-card:hover .evento-page-img img {
    transform: scale(1.06);
}

.evento-page-card:hover .evento-page-link {
    color: var(--accent);
    gap: 0.5rem;
}

/* Imagem do Evento */
.evento-page-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.evento-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Badge de Data */
.evento-page-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: #fff;
    border-radius: 0.75rem;
    padding: 0.5rem 0.75rem;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.3);
}

.evento-page-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.evento-page-month {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

/* Badge Classificação */
.evento-page-classif {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(43, 181, 232, 0.35);
}

/* Corpo do Card */
.evento-page-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.evento-page-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.evento-page-subtitulo {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.evento-page-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
    transition: all 0.3s;
}

/* Paginação */
.eventos-paginacao {
    display: flex;
    justify-content: center;
}

.eventos-paginacao ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
}

.eventos-paginacao a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 0.65rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    background: #fff;
    border: 1.5px solid #e2e8f0;
    transition: all 0.3s;
}

.eventos-paginacao a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.eventos-paginacao a.active {
    background: var(--gradient-blue);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.2);
}

/* Estado vazio */
.eventos-vazio-icon {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.4;
}

.btn-voltar-home {
    display: inline-block;
    background: var(--gradient-blue);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.2);
}

.btn-voltar-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(10, 31, 68, 0.3);
    color: #fff;
}

@media (max-width: 768px) {
    .evento-page-img {
        height: 180px;
    }

    .evento-page-body {
        padding: 1.25rem;
    }
}

/* ========== LISTAGEM DE CURSOS ========== */
.cursos-listagem {
    background: var(--bg-light);
    min-height: 50vh;
}

.curso-grid-card {
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.07);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.curso-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 31, 68, 0.14);
}

.curso-grid-card:hover .curso-grid-img img {
    transform: scale(1.06);
}

.curso-grid-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.curso-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.curso-grid-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.curso-grid-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.curso-grid-titulo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.curso-grid-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.curso-grid-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f4f8;
    margin-top: auto;
}

.curso-grid-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.curso-grid-preco {
    font-weight: 800;
    color: var(--primary) !important;
    font-size: 1.05rem !important;
}

.curso-grid-btn {
    display: block;
    text-align: center;
    background: var(--gradient-blue);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.15);
}

.curso-grid-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(10, 31, 68, 0.25);
    color: #fff;
}

/* ========== PÁGINA INDIVIDUAL DO CURSO ========== */

/* Breadcrumb */
.curso-breadcrumb {
    background: #f0f4f8;
    padding: 0.85rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.curso-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    font-size: 0.85rem;
}

.curso-breadcrumb .breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.curso-breadcrumb .breadcrumb-item a:hover {
    color: var(--accent);
}

.curso-breadcrumb .breadcrumb-item.active {
    color: var(--primary);
    font-weight: 600;
}

.curso-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #c0c8d4;
    content: "›";
    font-weight: 700;
}

/* Banner Full Width do Curso */
.curso-banner-full {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.curso-banner-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curso-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,31,68,0.85) 0%, rgba(21,101,192,0.7) 100%);
    display: flex;
    align-items: center;
}

.curso-banner-overlay .curso-hero-titulo {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .curso-banner-full {
        height: 280px;
    }
    .curso-banner-overlay .curso-hero-titulo {
        font-size: 1.5rem;
    }
}

/* Hero do Curso */
.curso-hero {
    background: var(--gradient-blue);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.curso-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(43, 181, 232, 0.08);
    pointer-events: none;
}

.curso-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.curso-hero-titulo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.curso-hero-img {
    text-align: right;
}

.curso-hero-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    height: 260px;
}

.btn-matricula-verde {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 0.75rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-matricula-verde:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Detalhe */
.curso-detalhe {
    background: #fff;
}

.curso-detalhe-sobre h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.curso-detalhe-texto {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.curso-detalhe-texto p {
    margin-bottom: 1rem;
}

/* Lista de specs inline (dentro do conteúdo) */
.curso-detalhe-specs {
    list-style: none;
    padding: 1.5rem;
    margin: 2rem 0 0;
    background: var(--bg-light);
    border-radius: 1rem;
    border: 1px solid #e8eef4;
}

.curso-detalhe-specs li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.92rem;
    color: #444;
}

.curso-detalhe-specs li:last-child {
    border-bottom: none;
}

.curso-detalhe-specs li i {
    color: var(--accent);
    width: 22px;
    text-align: center;
    margin-right: 0.6rem;
}

.curso-detalhe-specs li strong {
    color: var(--text-dark);
}

/* Sidebar */
.curso-sidebar {
    position: sticky;
    top: 120px;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 8px 40px rgba(10, 31, 68, 0.1);
    overflow: hidden;
}

.curso-sidebar-preco {
    background: var(--gradient-blue);
    color: #fff;
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.curso-sidebar-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.curso-preco-box {
    background: rgba(255,255,255,0.10);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
}

.curso-preco-tipo {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
    margin-bottom: 0.25rem;
}

/* Parcelado — destaque principal */
.curso-preco-destaque {
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.35);
    padding: 1.1rem 1rem;
}

.curso-preco-destaque .curso-preco-tipo {
    font-size: 0.8rem;
    opacity: 0.95;
}

.curso-preco-parcelas {
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.15;
}

/* À vista — secundário */
.curso-preco-secundario {
    background: rgba(255,255,255,0.06);
    padding: 0.6rem 1rem;
    opacity: 0.92;
}

.curso-preco-secundario .curso-preco-tipo {
    font-size: 0.7rem;
    opacity: 0.75;
}

.curso-preco-valor {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
}

/* À vista em destaque (quando NÃO há parcelamento) */
.curso-preco-avista-destaque {
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1.15;
}

.curso-taxa-box {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.curso-sidebar-btns {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-sidebar-matricula {
    display: block;
    text-align: center;
    background: #25d366;
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-sidebar-matricula:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.btn-sidebar-whatsapp {
    display: block;
    text-align: center;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    background: transparent;
}

.btn-sidebar-whatsapp:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* Box motivacional */
.curso-cta-box {
    margin: 1.5rem;
    background: linear-gradient(135deg, rgba(43, 181, 232, 0.08) 0%, rgba(10, 31, 68, 0.05) 100%);
    border-left: 4px solid var(--accent);
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.curso-cta-box p {
    font-size: 0.9rem;
    color: var(--primary);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Outros Cursos */
.outros-cursos {
    background: var(--bg-light);
}

.outros-cursos-titulo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* Responsivo Cursos */
@media (max-width: 991px) {
    .curso-sidebar {
        position: static;
        margin-top: 2rem;
    }

    .curso-hero-titulo {
        font-size: 1.7rem;
    }

    .curso-hero {
        padding: 2.5rem 0;
    }
}

@media (max-width: 576px) {
    .curso-hero-titulo {
        font-size: 1.4rem;
    }

    .curso-hero {
        padding: 2rem 0;
    }

    .curso-sidebar-valor {
        font-size: 1.6rem;
    }

    .curso-grid-img {
        height: 170px;
    }
}

/* ========== CURSOS HUB (Página principal de cursos) ========== */
.cursos-hub {
    background: var(--bg-light);
}

.cursos-hub-card {
    display: block;
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.07);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    height: 100%;
}

.cursos-hub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(10, 31, 68, 0.15);
    color: inherit;
}

.cursos-hub-card:hover .cursos-hub-img img {
    transform: scale(1.08);
}

.cursos-hub-card:hover .cursos-hub-link {
    color: var(--accent);
}

.cursos-hub-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.cursos-hub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cursos-hub-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 31, 68, 0.5));
}

.cursos-hub-body {
    padding: 1.75rem;
    text-align: center;
}

.cursos-hub-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 1rem;
    position: relative;
    box-shadow: 0 6px 20px rgba(10, 31, 68, 0.25);
}

.cursos-hub-icon i {
    color: #fff;
    font-size: 1.4rem;
}

.cursos-hub-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.cursos-hub-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cursos-hub-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.3s;
}

/* Diferenciais */
.cursos-hub-diff {
    background: #fff;
}

.cursos-hub-diff-item {
    padding: 1.5rem 1rem;
}

.cursos-hub-diff-item i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.cursos-hub-diff-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cursos-hub-diff-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ========== PÁGINA QUEM SOMOS ========== */

/* Intro */
.sobre-intro {
    background: #fff;
}

.sobre-intro-img {
    position: relative;
}

.sobre-intro-img img {
    box-shadow: 0 20px 60px rgba(10, 31, 68, 0.12);
}

.sobre-intro-badge {
    position: absolute;
    bottom: -20px;
    right: -15px;
    background: var(--gradient-blue);
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.3);
}

.sobre-intro-badge-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.sobre-intro-badge-txt {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.9;
}

.sobre-intro-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.sobre-intro-titulo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sobre-intro-titulo span {
    color: var(--accent);
}

.sobre-intro-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.sobre-intro-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.sobre-intro-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sobre-intro-stat i {
    font-size: 1.5rem;
    color: var(--accent);
}

.sobre-intro-stat strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.sobre-intro-stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Missão, Visão e Valores */
.sobre-mvv {
    background: var(--bg-light);
}

.sobre-mvv-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.06);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.sobre-mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(10, 31, 68, 0.12);
    border-color: var(--accent);
}

.sobre-mvv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(43, 181, 232, 0.1) 0%, rgba(10, 31, 68, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.sobre-mvv-card:hover .sobre-mvv-icon {
    background: var(--gradient-blue);
}

.sobre-mvv-icon i {
    font-size: 1.6rem;
    color: var(--accent);
    transition: color 0.4s ease;
}

.sobre-mvv-card:hover .sobre-mvv-icon i {
    color: #fff;
}

.sobre-mvv-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.sobre-mvv-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Diferenciais */
.sobre-diferenciais {
    background: var(--gradient-blue);
    position: relative;
    overflow: hidden;
}

.sobre-diferenciais::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.sobre-diff-item {
    text-align: center;
    padding: 2rem 1rem;
}

.sobre-diff-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sobre-diff-item:hover .sobre-diff-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.sobre-diff-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.sobre-diff-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.sobre-diff-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* Estrutura */
.sobre-estrutura {
    background: #fff;
}

.sobre-estrutura-img img {
    box-shadow: 0 20px 60px rgba(10, 31, 68, 0.12);
}

.sobre-estrutura-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.sobre-estrutura-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.sobre-estrutura-list li i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Responsivo Quem Somos */
@media (max-width: 991px) {
    .sobre-intro-titulo {
        font-size: 1.8rem;
    }

    .sobre-intro-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .sobre-intro-badge {
        right: 10px;
        bottom: -15px;
    }
}

@media (max-width: 576px) {
    .sobre-intro-titulo {
        font-size: 1.5rem;
    }

    .sobre-intro-stats {
        gap: 1rem;
    }

    .sobre-intro-stat {
        flex: 0 0 100%;
    }

    .sobre-intro-badge {
        padding: 1rem;
    }

    .sobre-intro-badge-num {
        font-size: 1.5rem;
    }
}

/* ========== PÁGINA LOGIN CLIENTE ========== */
.cliente-login-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.min-vh-60 {
    min-height: 60vh;
}

.cliente-login-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 8px 40px rgba(10, 31, 68, 0.1);
    border-top: 4px solid var(--accent);
}

.cliente-login-header h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.4rem;
    margin-top: 12px;
}

.cliente-login-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.cliente-login-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.cliente-login-form .input-group-text {
    background: var(--bg-light);
    border-right: 0;
    color: var(--primary);
}

.cliente-login-form .form-control {
    border-left: 0;
}

.cliente-login-form .form-control:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.cliente-login-form .input-group-text + .form-control:focus ~ .input-group-text,
.cliente-login-form .input-group:focus-within .input-group-text {
    border-color: var(--accent);
}

.btn-cliente-login {
    background: var(--gradient-blue);
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cliente-login:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(43, 181, 232, 0.3);
}

/* ========== ÁREA DO CLIENTE ========== */
.area-cliente-section {
    padding: 40px 0 60px;
    background: var(--bg-light);
    min-height: 70vh;
}

.area-cliente-header {
    background: var(--gradient-blue);
    color: #fff;
    border-radius: 16px;
    padding: 30px;
}

.area-cliente-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 16px;
    flex-shrink: 0;
}

.area-cliente-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
}

.area-cliente-tabs {
    border-bottom: 2px solid #dee2e6;
}

.area-cliente-tabs .nav-link {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 20px;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.area-cliente-tabs .nav-link:hover {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

.area-cliente-tabs .nav-link.active {
    color: var(--primary);
    background: transparent;
    border-bottom-color: var(--accent);
}

.area-cliente-content {
    background: #fff;
    border-radius: 0 0 16px 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Cards da área do cliente */
.area-cliente-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.area-cliente-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.area-cliente-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.area-cliente-card h5 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

/* Resumo do cadastro */
.area-cliente-resumo {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
}

.area-resumo-item {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.area-resumo-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.area-resumo-valor {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Formulário da área do cliente */
.area-cliente-form .form-label {
    color: var(--text-dark);
}

.area-cliente-form .form-control:focus,
.area-cliente-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(43, 181, 232, 0.15);
}

/* Responsivo */
@media (max-width: 767px) {
    .area-cliente-header {
        padding: 20px;
    }

    .area-cliente-header h2 {
        font-size: 1.1rem;
    }

    .area-cliente-content {
        padding: 20px 16px;
    }

    .area-cliente-tabs .nav-link {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .cliente-login-card {
        padding: 30px 20px;
    }
}

/* ========== PÁGINA CHECKOUT / MATRÍCULA ========== */
.matricula-checkout {
    background: var(--bg-light);
    padding: 0 0 60px;
    min-height: 70vh;
}

.matricula-titulo {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.matricula-resumo-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.matricula-resumo-img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.matricula-cupom-card,
.matricula-metodo-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.matricula-metodo-opcoes {
    display: flex;
    gap: 12px;
}

.matricula-metodo-opcao {
    flex: 1;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.matricula-metodo-opcao:hover {
    border-color: var(--accent);
}

.matricula-metodo-opcao.active {
    border-color: var(--accent);
    background: rgba(43, 181, 232, 0.05);
}

.matricula-metodo-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.matricula-metodo-opcao span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.matricula-metodo-opcao small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.matricula-valor-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e9ecef;
    position: sticky;
    top: 100px;
}

.btn-matricula-finalizar {
    background: var(--gradient-blue);
    color: #fff;
    border: none;
    padding: 14px;
    font-weight: 700;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-matricula-finalizar:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(43, 181, 232, 0.3);
}

.btn-matricula-finalizar:disabled {
    opacity: 0.7;
    transform: none;
}

/* ========== PÁGINA CONFIRMAÇÃO MATRÍCULA ========== */
.matricula-confirmacao-section {
    background: var(--bg-light);
    padding: 0 0 60px;
    min-height: 70vh;
}

.matricula-conf-header h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 16px;
}

.matricula-conf-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.matricula-conf-icon.sucesso {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.matricula-conf-icon.aguardando {
    background: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}

.matricula-conf-icon.cancelado {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.matricula-conf-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e9ecef;
    margin-top: 24px;
}

.matricula-conf-pix,
.matricula-conf-boleto {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e9ecef;
}

.matricula-pix-qr {
    max-width: 250px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

/* ========== ÁREA CLIENTE - MEUS CURSOS ========== */
.area-curso-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.area-curso-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.area-curso-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.area-curso-card-body {
    padding: 16px;
}

.area-curso-card-body h6 {
    color: var(--primary);
}

/* Responsivo checkout */
@media (max-width: 767px) {
    .matricula-metodo-opcoes {
        flex-direction: column;
    }

    .matricula-valor-card {
        position: static;
    }

    .matricula-resumo-img {
        width: 70px;
        height: 55px;
    }
}

/* ========== CARD CRIAR CONTA (LOGIN) ========== */
.cliente-criar-conta-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    border: 2px dashed var(--accent);
    transition: all 0.3s ease;
}

.cliente-criar-conta-card:hover {
    border-style: solid;
    box-shadow: 0 4px 15px rgba(43, 181, 232, 0.15);
}

.cliente-criar-conta-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(43, 181, 232, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.btn-criar-conta {
    background: var(--accent);
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-criar-conta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* ========== PÁGINA CADASTRO CLIENTE ========== */
.cliente-cadastro-section {
    background: var(--bg-light);
    padding: 20px 0 40px;
}

.cliente-cadastro-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(10, 31, 68, 0.1);
    border-top: 4px solid var(--accent);
}

.cliente-cadastro-header h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.4rem;
    margin-top: 12px;
}

.cliente-cadastro-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.cliente-cadastro-secao-titulo {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: 12px;
}

.cliente-cadastro-section .form-control:focus,
.cliente-cadastro-section .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(43, 181, 232, 0.15);
}

@media (max-width: 767px) {
    .cliente-cadastro-card {
        padding: 28px 18px;
    }

    .cliente-criar-conta-card {
        flex-wrap: wrap;
        text-align: center;
    }

    .cliente-criar-conta-card .d-flex {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .cliente-criar-conta-icon {
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .cliente-criar-conta-card .flex-grow-1 {
        width: 100%;
        margin-bottom: 12px;
    }
}

/* ===== Investimento do evento (sidebar) ===== */
.evento-investimento-box {
    background: var(--gradient-blue);
    color: #fff;
    padding: 1.25rem 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
}

.evento-investimento-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.evento-investimento-valor {
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1.15;
}

.evento-investimento-tipo {
    display: block;
    font-size: 0.78rem;
    opacity: 0.85;
    margin-top: 0.25rem;
}

/* ===== Ministrantes do evento ===== */
.evento-ministrante {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.evento-ministrante:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 14px rgba(43, 181, 232, 0.15);
    transform: translateY(-2px);
}

.evento-ministrante-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    flex-shrink: 0;
}

.evento-ministrante-foto-placeholder {
    background: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.evento-ministrante-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
}

.evento-ministrante-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    font-weight: 600;
}

.evento-ministrante-info strong {
    color: var(--primary);
    font-size: 1rem;
}