﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette Design Tokens (Top 15 occurrences inside master stylesheet) */
    --white: #ffffff;
    /* Indigos (Primary Brand) */
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    /* Violets (Accents) */
    --violet-500: #8b5cf6;
    --violet-600: #7c3aed;
    /* Green (Gallery Theme) */
    --gallery-green-400: #34ce57;
    --gallery-green-500: #28a745;
    --gallery-green-600: #218838;
    --gallery-green-700: #1e7e34;
    /* Blues (Tons de Azul) */
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-900: #1e3a8a;
    --blue-legacy-dark: #144781;
    --blue-legacy-light: #1b4f8f;
    --blue-legacy-hover: #0056b3;
    --blue-legacy-primary: #007bff;
    /* Pinks (Accents) */
    --pink-500: #ec4899;
    /* Slates (Neutrals / Backgrounds / Typography) */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-900: #0f172a;
    /* Emeralds (Success State) */
    --success-color: #10b981;
    --success-hover: #059669;
    /* Roses / Reds (Danger State) */
    --danger-color: #ef4444;
    --danger-hover: #dc2626;
    /* Ambers / Yellows (Warning State / Accents) */
    --warning-color: #f59e0b;
    --warning-hover: #d97706;
    /* Abstract Semantic Mappings */
    --dark-color: var(--slate-900);
    --light-color: var(--slate-50);
    --text-primary: #1e293b;
    --text-secondary: var(--slate-500);
    --bg-card: var(--white);
    --border-color: var(--slate-200);
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-outfit: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-inter) !important;
    background-color: var(--light-color) !important;
    color: var(--text-primary) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-top: 65px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-outfit) !important;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 0;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.25rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.88rem;
    line-height: 1.25;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.35;
}

h5 {
    font-size: 1.05rem;
    line-height: 1.4;
}

h6 {
    font-size: 0.9rem;
    line-height: 1.45;
}

p {
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.15s ease;
}

    a:hover {
        color: var(--primary-hover);
        text-decoration: none;
    }

.primary-color {
    color: var(--primary-color) !important;
}

.violet-color {
        color: var(--violet-500) !important;
}

.pink-color {
        color: var(--pink-500) !important;
}

.blue-color {
            color: var(--blue-500) !important;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}


.container {
    max-width: 1215px;
}

.container-fluid {
    max-width: 1440px;
}

/* Equipe - Premium Crystal Glassmorphic Theme */
.equipe-container-wrapper {
    position: relative;
    overflow: hidden;
}

.equipe-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.equipe-glow-1 {
    top: 5%;
    left: 2%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

.equipe-glow-2 {
    bottom: 10%;
    right: 2%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--violet-500) 0%, transparent 70%);
}

.equipe-badge {
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.05);
}

.equipe-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e66 0%, var(--primary-color) 50%, var(--violet-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.equipe-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.card-delicate {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: 20px 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
    z-index: 2;
}

    .card-delicate::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--violet-500) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .card-delicate:hover {
        transform: translateY(-8px);
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 20px 40px rgba(99, 102, 241, 0.08), 0 2px 10px rgba(99, 102, 241, 0.03);
    }

        .card-delicate:hover::before {
            opacity: 1;
        }

.avatar-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2.2rem;
    padding-bottom: 1rem;
}

.avatar-ring-glow {
    position: absolute;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--violet-500) 100%);
    opacity: 0.12;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.card-delicate:hover .avatar-ring-glow {
    transform: scale(1.08);
    opacity: 0.3;
    filter: blur(3px);
}

.avatar-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.12);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-delicate:hover .avatar-img {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.18);
}

.card-body-custom {
    padding: 1rem 1.5rem 1.8rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.member-city {
    background: rgba(99, 102, 241, 0.05);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    align-self: center;
    border: 1px solid rgba(99, 102, 241, 0.08);
    margin-bottom: 4px;
}

    .member-city i {
        font-size: 0.8rem;
    }

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    transition: color 0.3s ease;
}

.card-delicate:hover .member-name {
    color: var(--primary-color);
}

.member-resumo {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.5em;
}

/* Social Icons */
.social-compact {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: auto 0 10px;
}

    .social-compact a {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(99, 102, 241, 0.04);
        border: 1px solid rgba(99, 102, 241, 0.06);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #4b5563;
        font-size: 1rem;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-decoration: none !important;
    }

        .social-compact a:hover {
            color: var(--white);
            transform: translateY(-3px) scale(1.05);
        }

        .social-compact a[title="Instagram"]:hover {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
            border-color: transparent;
            box-shadow: 0 4px 12px rgba(214, 36, 159, 0.3);
        }

        .social-compact a[title="LinkedIn"]:hover,
        .social-compact a i.fa-linkedin-in:hover,
        .social-compact a i.fa-linkedin:hover {
            background: #0077b5;
            border-color: transparent;
            box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
        }

        /* fallback checks to ensure correct routing for linkedin selector */
        .social-compact a:has(i.fa-linkedin):hover,
        .social-compact a:has(i.fa-linkedin-in):hover {
            background: #0077b5;
            border-color: transparent;
            box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
        }

        .social-compact a[title="Facebook"]:hover {
            background: #1877f2;
            border-color: transparent;
            box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
        }

        .social-compact a[title="Twitter"]:hover {
            background: #1da1f2;
            border-color: transparent;
            box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
        }

/* Button styles */
.btn-curriculo {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--violet-500) 100%);
    border: none;
    color: var(--white) !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
    margin-top: auto;
}

    .btn-curriculo:hover {
        background: linear-gradient(135deg, var(--primary-hover) 0%, var(--violet-600) 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
        text-decoration: none;
    }

    .btn-curriculo:active {
        transform: translateY(0);
    }

.btn-curriculo-disabled {
    background: rgba(0, 0, 0, 0.03);
    border: 1px dashed rgba(0, 0, 0, 0.08);
    color: #9ca3af;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    cursor: default;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    margin-top: auto;
    opacity: 1;
}

/* Modals */
.modal-content-delicate {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px -15px rgba(99, 102, 241, 0.2);
    overflow: hidden;
}

.modal-header-delicate {
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
    background: rgba(99, 102, 241, 0.02);
    padding: 1.2rem 2rem;
}

    .modal-header-delicate .modal-title {
        font-weight: 700;
        color: #1f2937;
    }

#iframeCurriculo {
    background: white;
}

#conteudoCurriculo {
    background: white;
    border-radius: 0 0 28px 28px;
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
}

    #conteudoCurriculo p,
    #conteudoCurriculo span {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #4b5563;
    }

    #conteudoCurriculo br {
        display: block;
        margin-bottom: 0.6rem;
    }

.curriculo-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    white-space: pre-wrap;
    max-height: 60vh;
    overflow-y: auto;
    padding: 0.5rem;
}

/* Slick Customization */
.equipe-list .responsive {
    margin: 0 -15px;
}

    /*.equipe-list .responsive .slick-slide > div {
        padding: 0 15px;
    }*/

    .equipe-list .responsive .slick-prev,
    .equipe-list .responsive .slick-next {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(99, 102, 241, 0.1);
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.08);
        border-radius: 50%;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

        .equipe-list .responsive .slick-prev:hover,
        .equipe-list .responsive .slick-next:hover {
            background: var(--primary-color);
            color: var(--white);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
        }

        .equipe-list .responsive .slick-prev::before,
        .equipe-list .responsive .slick-next::before {
            font-family: 'FontAwesome';
            font-size: 16px;
            color: var(--primary-color);
            transition: color 0.3s ease;
            opacity: 1;
        }

        .equipe-list .responsive .slick-prev::before {
            content: "\f104";
        }

        .equipe-list .responsive .slick-next::before {
            content: "\f105";
        }

        .equipe-list .responsive .slick-prev:hover::before,
        .equipe-list .responsive .slick-next:hover::before {
            color: var(--white);
        }

@media (max-width: 768px) {
    .avatar-img {
        width: 85px;
        height: 85px;
    }

    .member-name {
        font-size: 1.15rem;
    }

    .equipe-main-title {
        font-size: 2rem;
    }
}

/* Fim Equipe */




/* FOOTER - PREMIUM GLASSMORPHIC MODERN DESIGN */
.footer-premium {
    background-color: #0b0d17;
    color: #a0aec0;
    position: relative;
    overflow: hidden;
    padding: 90px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

    /* Atmospheric Glows */
    .footer-premium .footer-glow {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.15;
        pointer-events: none;
        z-index: 1;
    }

    .footer-premium .footer-glow-1 {
        top: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    }

    .footer-premium .footer-glow-2 {
        bottom: -50px;
        right: -50px;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, var(--violet-500) 0%, transparent 70%);
    }

/* Top Section: Branding & Newsletter */
.footer-top-grid {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 60px;
}

.footer-brand-showcase {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand-logo {
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    align-self: flex-start;
}

    .footer-brand-logo:hover {
        transform: scale(1.03);
    }

.footer-brand-tagline {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
    max-width: 380px;
    margin: 0;
}

/* Newsletter Glass Card */
.footer-newsletter-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-badge {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 50px;
    align-self: flex-start;
}

.newsletter-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #f3f4f6;
    margin: 0;
}

/* Form inputs styling nested inside footer-premium to avoid breaking global forms */
.form-news {
    display: flex;
    width: 100%;
}

input.form-news {
    flex: 1;
    height: 54px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px 0 0 12px;
    color: var(--white);
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-right: 0;
    transition: all 0.3s ease;
}

    input.form-news:focus {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: rgba(139, 92, 246, 0.5);
        outline: none;
        box-shadow: none;
    }

.btn-news {
    height: 54px;
    padding: 0 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--violet-500) 100%);
    border-radius: 0 12px 12px 0;
    border: 0;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    cursor: pointer;
}

    .btn-news:hover {
        background: linear-gradient(135deg, var(--primary-hover) 0%, var(--violet-600) 100%);
        transform: translateY(0);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    }

/* Middle Section: Navigation & Information */
.footer-middle-grid {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.footer-nav-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f3f4f6;
    margin-bottom: 25px;
    position: relative;
}

    .footer-nav-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--blue-500);
        border-radius: 2px;
    }

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-premium .footer-nav-links li {
    font-size: 0.95rem;
    line-height: normal;
}

.footer-nav-links a {
    color: #9ca3af;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

    .footer-nav-links a::before {
        content: '→';
        position: absolute;
        left: 0;
        opacity: 0;
        color: var(--violet-500);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        transform: translateX(-10px);
    }

    .footer-nav-links a:hover {
        color: var(--white);
        padding-left: 18px;
    }

        .footer-nav-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

/* Support status card */
.footer-status-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-indicator-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: inline-block;
}

.green-pulse {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.status-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--success-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-desc {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

.btn-whatsapp-premium {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success-color) !important;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

    .btn-whatsapp-premium:hover {
        background: var(--success-color);
        color: var(--white) !important;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        transform: translateY(-2px);
    }

/* Social Column */
.social-intro {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.premium-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-tile {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

    .social-tile:hover {
        color: var(--white);
        transform: translateY(-4px) scale(1.05);
    }

.tile-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(214, 36, 159, 0.4);
}

.tile-facebook:hover {
    background: #1877f2;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.tile-youtube:hover {
    background: #ff0000;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.tile-tiktok:hover {
    background: #000000;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.tile-tiktok i {
    font-size: 1rem;
}

.fa-tiktok {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.32c7.87,33.47,31.76,60.59,62.75,74.71,13.31,6.06,28.24,9.31,43.16,9.31Z"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.32c7.87,33.47,31.76,60.59,62.75,74.71,13.31,6.06,28.24,9.31,43.16,9.31Z"/></svg>') no-repeat center;
    vertical-align: middle;
}

/* Bottom Section: Copyright Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0;
    background-color: rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.bottom-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    font-size: 0.85rem;
    color: #6b7280;
}

.brand-highlight {
    color: var(--blue-500);
    font-weight: 600;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-link {
    font-size: 0.85rem;
    color: #6b7280;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

    .policy-link:hover {
        color: var(--white);
    }

.divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

/* Floating WhatsApp Widget with pulsing ripple and tooltip */
.whatsapp-float-modern {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white) !important;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

    .whatsapp-float-modern:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
        background-color: #22c35e;
    }

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse-anim 2s infinite;
}

@keyframes whatsapp-pulse-anim {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #0f111a;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-float-modern:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 991px) {
    .footer-premium {
        padding: 60px 0 0;
    }

    .footer-top-grid {
        margin-bottom: 40px;
        padding-bottom: 35px;
    }

    .footer-brand-showcase {
        align-items: center;
        text-align: center;
    }

    .footer-brand-logo {
        align-self: center;
    }

    .footer-brand-tagline {
        max-width: 100%;
    }

    .footer-newsletter-card {
        padding: 20px;
    }

    .newsletter-header {
        align-items: center;
        text-align: center;
    }

    .newsletter-badge {
        align-self: center;
    }

    .newsletter-title {
        font-size: 1.2rem;
    }

    input.form-news {
        height: 48px;
        font-size: 0.9rem;
    }

    .btn-news {
        height: 48px;
        padding: 0 15px;
        font-size: 0.9rem;
    }

    .footer-middle-grid {
        padding-bottom: 40px;
    }

    .footer-nav-title {
        margin-bottom: 20px;
        font-size: 0.85rem;
    }

        .footer-nav-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

    .footer-premium .col-6,
    .footer-premium .col-12 {
        text-align: center;
    }

    .footer-nav-links {
        align-items: center;
        margin-bottom: 30px;
    }

        .footer-nav-links a:hover {
            padding-left: 0;
        }

        .footer-nav-links a::before {
            display: none;
        }

    .footer-status-card {
        align-items: center;
        margin-bottom: 30px;
    }

    .premium-social-links {
        justify-content: center;
        margin-bottom: 20px;
    }

    .bottom-flex-container {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float-modern {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

/* Fim Footer */

/* FAQ Section - Premium Crystal Glassmorphic Theme */
.faq-section-wrapper {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.faq-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.faq-glow-1 {
    top: 10%;
    right: 5%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

.faq-glow-2 {
    bottom: 5%;
    left: 5%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--violet-500) 0%, transparent 70%);
}

.relative-content {
    position: relative;
    z-index: 2;
}

.faq-badge {
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.05);
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e66 0%, var(--primary-color) 50%, var(--violet-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.faq-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Accordion Glass Cards */
.accordionList {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

    .faq-card:hover {
        background: rgba(255, 255, 255, 0.7);
        border-color: rgba(99, 102, 241, 0.25);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.06);
        transform: translateY(-2px);
    }

.faq-card-header {
    background: transparent;
    border: none;
    padding: 0;
}

.faq-accordion-btn {
    width: 100%;
    padding: 22px 26px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none !important;
    text-decoration: none !important;
}

.faq-question-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.faq-accordion-btn:hover .faq-question-text {
    color: var(--primary-color);
}

.faq-accordion-btn:not(.collapsed) .faq-question-text {
    color: var(--primary-color);
}

/* Custom Rotating Indicator Icon */
.faq-icon-indicator {
    position: relative;
    width: 24px;
    height: 24px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-shrink: 0;
}

    .faq-icon-indicator::before,
    .faq-icon-indicator::after {
        content: '';
        position: absolute;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
    }

    /* Horizontal line */
    .faq-icon-indicator::before {
        width: 10px;
        height: 2px;
    }

    /* Vertical line */
    .faq-icon-indicator::after {
        width: 2px;
        height: 10px;
    }

.faq-accordion-btn:not(.collapsed) .faq-icon-indicator {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(135deg);
}

    .faq-accordion-btn:not(.collapsed) .faq-icon-indicator::before,
    .faq-accordion-btn:not(.collapsed) .faq-icon-indicator::after {
        background-color: var(--white);
    }

.faq-card-body {
    padding: 0 26px 22px 26px;
}

.faq-response-content {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
    border-top: 1px solid rgba(99, 102, 241, 0.06);
    padding-top: 16px;
}

    .faq-response-content p {
        margin-bottom: 0.8rem;
    }

        .faq-response-content p:last-child {
            margin-bottom: 0;
        }

/* Right Column: Floating Callout Card */
.faq-aside-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.04), 0 2px 10px rgba(0, 0, 0, 0.01);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .faq-aside-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, var(--primary-color) 0%, var(--violet-500) 100%);
    }

    .faq-aside-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(99, 102, 241, 0.08);
        border-color: rgba(99, 102, 241, 0.25);
    }

.aside-glow-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-aside-card:hover .aside-glow-badge {
    transform: scale(1.08) rotate(15deg);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25);
}

.aside-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2c3e66;
    margin: 0;
}

.aside-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.aside-action-wrapper {
    width: 100%;
    margin-top: 10px;
}

.btn-faq-more-premium {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--violet-500) 100%);
    border: none;
    color: var(--white) !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
}

    .btn-faq-more-premium:hover {
        background: linear-gradient(135deg, var(--primary-hover) 0%, var(--violet-600) 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
        text-decoration: none;
    }

    .btn-faq-more-premium i {
        transition: transform 0.3s ease;
    }

    .btn-faq-more-premium:hover i {
        transform: translateX(4px);
    }

@media (max-width: 991px) {
    .faq-section-wrapper {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-card-body {
        padding: 0 20px 18px 20px;
    }

    .faq-accordion-btn {
        padding: 18px 20px;
    }

    .faq-aside-card {
        padding: 35px 25px;
        margin-top: 30px;
    }

        .faq-aside-card::before {
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
        }
}

/* News Section - Premium Crystal Glassmorphic Theme */
.news-section-wrapper {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.news-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.news-glow-1 {
    top: 5%;
    left: 3%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

.news-glow-2 {
    bottom: 8%;
    right: 3%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--violet-500) 0%, transparent 70%);
}

.news-badge {
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.05);
}

.news-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e66 0%, var(--primary-color) 50%, var(--violet-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.news-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slick Carousel Spacing Overrides for Noticia */
.multiple-items {
    margin: 0 -15px;
}

    .multiple-items .slick-slide > div {
        padding: 0 15px;
    }

    .multiple-items .slick-prev,
    .multiple-items .slick-next {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(99, 102, 241, 0.1);
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.08);
        border-radius: 50%;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

        .multiple-items .slick-prev:hover,
        .multiple-items .slick-next:hover {
            background: var(--primary-color);
            color: var(--white);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
        }

        .multiple-items .slick-prev::before,
        .multiple-items .slick-next::before {
            font-family: 'FontAwesome';
            font-size: 16px;
            color: var(--primary-color);
            transition: color 0.3s ease;
            opacity: 1;
        }

        .multiple-items .slick-prev::before {
            content: "\f104";
        }

        .multiple-items .slick-next::before {
            content: "\f105";
        }

        .multiple-items .slick-prev:hover::before,
        .multiple-items .slick-next:hover::before {
            color: var(--white);
        }

.post {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: calc(100% - 40px);
    margin: 20px 0;
    overflow: hidden;
    text-decoration: none !important;
    position: relative;
    z-index: 2;
}

    .post::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--violet-500) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .post:hover {
        transform: translateY(-8px);
        border-color: rgba(99, 102, 241, 0.2);
        box-shadow: 0 20px 40px rgba(99, 102, 241, 0.08), 0 2px 10px rgba(99, 102, 241, 0.03);
    }

        .post:hover::before {
            opacity: 1;
        }

    .post .img {
        height: 200px;
        width: 100%;
        overflow: hidden;
        position: relative;
        border-radius: 20px 20px 0 0;
    }

        .post .img img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

    .post:hover .img img {
        transform: scale(1.06);
    }

    .post .blog-desc {
        padding: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

        .post .blog-desc h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #1f2937;
            margin: 0;
            line-height: 1.3;
            /*display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 2.8em;
            transition: color 0.3s ease;*/
        }

    .post:hover .blog-desc h3 {
        color: var(--primary-color);
    }

    .post .blog-desc p {
        font-size: 0.88rem;
        color: #4b5563;
        line-height: 1.6;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 4.8em;
    }

    .post .link-read {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--primary-color);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: auto;
        padding-top: 10px;
    }

        .post .link-read i {
            font-size: 0.8rem;
            transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

    .post:hover .link-read i {
        transform: translateX(6px);
    }

/* Bottom CTA button */
.btn-news-all-premium {
    background: transparent;
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary-color) !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.02);
}

    .btn-news-all-premium:hover {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--violet-500) 100%);
        border-color: transparent;
        color: var(--white) !important;
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
        transform: translateY(-2px);
        text-decoration: none;
    }

    .btn-news-all-premium i {
        transition: transform 0.3s ease;
    }

    .btn-news-all-premium:hover i {
        transform: translateX(4px);
    }

@media (max-width: 768px) {
    .post .img {
        height: 180px;
    }

    .post .blog-desc h3 {
        font-size: 1.05rem;
    }

    .news-main-title {
        font-size: 2rem;
    }
}

/* Ebook Section - Premium Crystal Glassmorphic Theme */
.ebook-banner-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.ebook-banner-card {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--violet-500) 50%, #ec4899 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    padding: 45px 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
}

    .ebook-banner-card:hover {
        transform: scale(1.01);
        box-shadow: 0 25px 55px rgba(139, 92, 246, 0.35);
    }

.ebook-banner-title {
    color: var(--white);
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.25;
}

.ebook-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.ebook-banner-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.btn-ebook-banner {
    background: var(--white);
    color: var(--violet-500) !important;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

    .btn-ebook-banner:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        color: var(--primary-hover) !important;
    }

    .btn-ebook-banner i {
        transition: transform 0.3s ease;
    }

    .btn-ebook-banner:hover i {
        transform: translateX(4px);
    }

@media (max-width: 991px) {
    .ebook-banner-card {
        padding: 35px 25px;
    }

    .ebook-banner-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .ebook-banner-text {
        font-size: 0.95rem;
    }

    .ebook-banner-content {
        align-items: center;
    }

    .btn-ebook-banner {
        width: 100%;
        justify-content: center;
    }
}

/* Chamadas/Callouts Section - Premium Large Showcase Theme */
.calls-large-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.calls-large-row {
    position: relative;
    z-index: 2;
}

.calls-large-content-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.calls-large-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
    display: inline-block;
}

.calls-badge-blue {
    background: rgba(59, 130, 246, 0.08);
    color: var(--blue-600);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.calls-badge-violet {
    background: rgba(139, 92, 246, 0.08);
    color: var(--violet-600);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.calls-large-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.calls-large-text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 28px;
}

/* Timeline Showcase styles */
.calls-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.calls-timeline-item {
    display: flex;
    gap: 16px;
}

.timeline-dot-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 24px;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.completed .timeline-dot {
    background: var(--blue-500);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.active .timeline-dot {
    background: var(--violet-600);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
    animation: active-pulse 2s infinite;
}

@keyframes active-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(139, 92, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(139, 92, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0px rgba(139, 92, 246, 0);
    }
}

.planned .timeline-dot {
    background: #e5e7eb;
    border: 2px solid #d1d5db;
}

.timeline-line {
    width: 2px;
    background: #e5e7eb;
    flex-grow: 1;
    margin-top: 4px;
    margin-bottom: 4px;
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-phase {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
}

.timeline-status {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 50px;
}

.completed .timeline-status {
    background: rgba(59, 130, 246, 0.08);
    color: var(--blue-600);
}

.active .timeline-status {
    background: rgba(139, 92, 246, 0.08);
    color: var(--violet-600);
}

.planned .timeline-status {
    background: #f3f4f6;
    color: #6b7280;
}

/* Stats Showcase Grid styles */
.calls-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.calls-stat-item {
    background: var(--slate-50);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .calls-stat-item:hover {
        background: var(--white);
        box-shadow: 0 10px 25px rgba(139, 92, 246, 0.05);
        border-color: rgba(139, 92, 246, 0.15);
        transform: translateY(-2px);
    }

.stat-value {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--violet-600);
    display: block;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons style */
.btn-calls-large {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-calls-large-blue {
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
    color: var(--white) !important;
}

    .btn-calls-large-blue:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
    }

.btn-calls-large-violet {
    background: linear-gradient(135deg, var(--violet-500) 0%, #6d28d9 100%);
    color: var(--white) !important;
}

    .btn-calls-large-violet:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35);
    }

.btn-calls-large i {
    transition: transform 0.3s ease;
}

.btn-calls-large:hover i {
    transform: translateX(5px);
}

/* Visual Showcase Scenes styles */
.calls-large-visual-scene {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px 0;
}

.calls-large-visual-card {
    width: 100%;
    max-width: 380px;
    height: 260px;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .calls-large-visual-card:hover {
        transform: translateY(-8px) scale(1.02);
    }

.visual-card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.08;
    pointer-events: none;
    top: -20px;
    right: -20px;
}

.visual-card-blue .visual-card-glow {
    background: var(--blue-500);
}

.visual-card-violet .visual-card-glow {
    background: var(--violet-500);
}

.visual-header-accent {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.visual-card-blue .visual-header-accent {
    background: rgba(59, 130, 246, 0.08);
    color: var(--blue-600);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.05);
}

.visual-card-violet .visual-header-accent {
    background: rgba(139, 92, 246, 0.08);
    color: var(--violet-600);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.05);
}

.calls-large-visual-card:hover .visual-header-accent {
    transform: scale(1.1) rotate(5deg);
}

.visual-progress-track {
    width: 100%;
    height: 8px;
    background: var(--slate-100);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.visual-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--blue-500) 0%, var(--blue-700) 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.visual-card-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Concentric Hub Animation circles for schools card */
.visual-card-hubs {
    position: relative;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.hub-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.2);
    animation: hub-pulse 3s infinite ease-in-out;
}

.hub-1 {
    width: 30px;
    height: 30px;
    background: rgba(139, 92, 246, 0.1);
    animation-delay: 0s;
}

.hub-2 {
    width: 60px;
    height: 60px;
    animation-delay: 1s;
}

.hub-3 {
    width: 90px;
    height: 90px;
    animation-delay: 2s;
}

@keyframes hub-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
        border-color: rgba(139, 92, 246, 0.4);
    }

    100% {
        transform: scale(0.8);
        opacity: 0.2;
    }
}

.visual-card-tag {
    font-size: 0.72rem;
    color: var(--violet-600);
    letter-spacing: 1px;
}

/* --- Badges for New Showcase Themes --- */
.calls-badge-emerald {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.calls-badge-teal {
    background: rgba(20, 184, 166, 0.08);
    color: #14b8a6;
    border: 1px solid rgba(20, 184, 166, 0.15);
}

.calls-badge-pink {
    background: rgba(236, 72, 153, 0.08);
    color: #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.15);
}

.calls-badge-orange {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.calls-badge-red {
    background: rgba(239, 68, 68, 0.08);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.calls-badge-indigo {
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.calls-badge-slate {
    background: rgba(100, 116, 139, 0.08);
    color: var(--slate-500);
    border: 1px solid rgba(100, 116, 139, 0.15);
}

/* --- Buttons for New Showcase Themes --- */
.btn-calls-large-emerald {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: var(--white) !important;
}

    .btn-calls-large-emerald:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    }

.btn-calls-large-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: var(--white) !important;
}

    .btn-calls-large-teal:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(20, 184, 166, 0.35);
    }

.btn-calls-large-pink {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: var(--white) !important;
}

    .btn-calls-large-pink:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(236, 72, 153, 0.35);
    }

.btn-calls-large-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: var(--white) !important;
}

    .btn-calls-large-orange:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
    }

.btn-calls-large-red {
    background: linear-gradient(135deg, var(--danger-color) 0%, #dc2626 100%);
    color: var(--white) !important;
}

    .btn-calls-large-red:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.35);
    }

.btn-calls-large-indigo {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white) !important;
}

    .btn-calls-large-indigo:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
    }

.btn-calls-large-slate {
    background: linear-gradient(135deg, var(--slate-500) 0%, var(--slate-600) 100%);
    color: var(--white) !important;
}

    .btn-calls-large-slate:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(100, 116, 139, 0.35);
    }

/* --- Custom Spaced Content Lists --- */
.calls-pillars-list,
.calls-ebooks-list,
.calls-videos-list,
.calls-team-bullets {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.pillar-bullet-item,
.ebook-item-bullet,
.video-item-bullet,
.team-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bullet-icon {
    font-size: 1.25rem;
    color: var(--success-color);
    margin-top: 3px;
}

.pillar-label,
.ebook-title,
.video-label,
.team-bullet-label {
    font-size: 0.98rem;
    font-weight: 700;
    color: #1f2937;
    display: block;
}

.pillar-desc,
.ebook-downloads,
.video-duration,
.team-bullet-desc {
    font-size: 0.85rem;
    color: #6b7280;
    display: block;
    margin-top: 2px;
}

.book-item-icon {
    font-size: 1.25rem;
    color: #ec4899;
    margin-top: 3px;
}

.video-item-icon {
    font-size: 1.25rem;
    color: var(--danger-color);
    margin-top: 3px;
}

.team-bullet-icon {
    font-size: 1.25rem;
    color: var(--slate-500);
    margin-top: 3px;
}

.video-duration {
    font-weight: 600;
}

/* --- Visual Showcase Mockup Cards --- */

/* Emerald Theme (Sobre) */
.visual-card-emerald .visual-card-glow {
    background: var(--success-color);
}

.visual-card-emerald .visual-header-accent {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success-color);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.05);
}

.visual-card-emerald .visual-card-tag {
    color: var(--success-color);
}

.visual-card-pillars-graphic {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 75px;
    margin: 20px 0;
    width: 100%;
    padding: 0 20px;
}

.pillar-bar {
    width: 32px;
    background: linear-gradient(180deg, var(--success-color) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 8px 8px 0 0;
    animation: bar-rise 2s ease-in-out infinite alternate;
}

.bar-1 {
    height: 40px;
    animation-delay: 0s;
}

.bar-2 {
    height: 70px;
    animation-delay: 0.3s;
}

.bar-3 {
    height: 55px;
    animation-delay: 0.6s;
}

@keyframes bar-rise {
    0% {
        transform: scaleY(0.85);
    }

    100% {
        transform: scaleY(1.05);
    }
}

/* Teal Theme (Cursos) */
.visual-card-teal .visual-card-glow {
    background: #14b8a6;
}

.visual-card-teal .visual-header-accent {
    background: rgba(20, 184, 166, 0.08);
    color: #14b8a6;
    box-shadow: 0 10px 20px rgba(20, 184, 166, 0.05);
}

.visual-card-teal .visual-card-tag {
    color: #14b8a6;
}

.visual-card-terminal {
    background: var(--slate-900);
    border-radius: 14px;
    padding: 15px;
    font-family: monospace;
    margin: 20px 0;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
    width: 100%;
    text-align: left;
}

.terminal-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

    .terminal-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        display: inline-block;
    }

.dot-red {
    background: var(--danger-color);
}

.dot-yellow {
    background: #eab308;
}

.dot-green {
    background: #22c55e;
}

.terminal-code {
    color: #38bdf8;
    font-size: 0.85rem;
    display: block;
}

/* Pink Theme (Ebooks) */
.visual-card-pink .visual-card-glow {
    background: #ec4899;
}

.visual-card-pink .visual-header-accent {
    background: rgba(236, 72, 153, 0.08);
    color: #ec4899;
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.05);
}

.visual-card-pink .visual-card-tag {
    color: #ec4899;
}

.visual-card-book-mockup {
    position: relative;
    height: 75px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.book-layer {
    position: absolute;
    width: 85px;
    height: 60px;
    border-radius: 8px;
    background: var(--white);
    border: 2px solid #ec4899;
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.12);
    transition: all 0.4s ease;
}

.book-layer-1 {
    transform: rotate(-10deg) translate(-15px, -5px);
    z-index: 1;
}

.book-layer-2 {
    transform: rotate(6deg) translate(8px, 2px);
    z-index: 2;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    border: none;
}

.book-layer-3 {
    transform: rotate(-2deg) translate(0px, 12px);
    z-index: 3;
}

/* Orange Theme (Imagens) */
.visual-card-orange .visual-card-glow {
    background: #f97316;
}

.visual-card-orange .visual-header-accent {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.05);
}

.visual-card-orange .visual-card-tag {
    color: #f97316;
}

.visual-card-gallery-frames {
    position: relative;
    height: 75px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.gallery-frame {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: var(--slate-50);
    border: 3px solid var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.frame-1 {
    transform: rotate(-12deg) translateX(-25px);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    z-index: 1;
}

.frame-2 {
    transform: rotate(10deg) translateX(25px);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 2;
}

/* Red Theme (VÃƒÆ’Ã‚Â­deos) */
.visual-card-red .visual-card-glow {
    background: var(--danger-color);
}

.visual-card-red .visual-header-accent {
    background: rgba(239, 68, 68, 0.08);
    color: var(--danger-color);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.05);
}

.visual-card-red .visual-card-tag {
    color: var(--danger-color);
}

.visual-card-video-glow {
    position: relative;
    height: 75px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.video-play-wave {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    animation: play-wave-pulse 2s infinite;
}

@keyframes play-wave-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.play-pulse-icon {
    font-size: 2.2rem;
    color: var(--danger-color);
    z-index: 2;
    animation: float-play 3s ease-in-out infinite alternate;
}

@keyframes float-play {
    0% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Indigo Theme (FAQ) */
.visual-card-indigo .visual-card-glow {
    background: var(--primary-color);
}

.visual-card-indigo .visual-header-accent {
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.05);
}

.visual-card-indigo .visual-card-tag {
    color: var(--primary-color);
}

.visual-card-faq-bubbles {
    position: relative;
    height: 75px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.faq-bubble {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.1);
    transition: all 0.4s ease;
}

.bubble-left {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
    transform: translateY(-5px) rotate(-12deg);
}

.bubble-right {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid rgba(99, 102, 241, 0.15);
    transform: translateY(8px) rotate(15deg);
}

/* Slate Theme (Equipe) */
.visual-card-slate .visual-card-glow {
    background: var(--slate-500);
}

.visual-card-slate .visual-header-accent {
    background: rgba(100, 116, 139, 0.08);
    color: var(--slate-500);
    box-shadow: 0 10px 20px rgba(100, 116, 139, 0.05);
}

.visual-card-slate .visual-card-tag {
    color: var(--slate-500);
}

.visual-card-team-avatars {
    position: relative;
    height: 75px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    position: absolute;
    background-size: cover;
    transition: all 0.4s ease;
}

.av-1 {
    transform: translateX(-28px);
    background: linear-gradient(135deg, var(--slate-500) 0%, var(--slate-600) 100%);
    z-index: 1;
}

.av-2 {
    z-index: 2;
    background: var(--slate-300);
    border-color: var(--slate-50);
}

.av-3 {
    transform: translateX(28px);
    background: linear-gradient(135deg, var(--slate-600) 0%, var(--slate-700) 100%);
    z-index: 3;
}

@media (max-width: 991px) {
    .calls-large-section {
        padding: 50px 0;
    }

    .calls-large-title {
        font-size: 2.1rem;
    }

    .calls-stats-grid {
        gap: 15px;
    }

    .calls-large-visual-card {
        margin: 0 auto;
    }
}




/* VÃƒÆ’Ã‚Â­deos */
.video-card {
    display: block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 30px;
    background: var(--white);
    text-decoration: none !important;
}

    .video-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.video-thumbnail-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    opacity: 0.9;
}

.video-card:hover .video-thumbnail {
    opacity: 0.7;
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-button {
    background: rgba(255, 255, 255, 0.9);
    color: #ff0000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding-left: 5px;
    /* Alinhamento ÃƒÆ’Ã‚Â³ptico do ÃƒÆ’Ã‚Â­cone play */
}

.video-card:hover .play-button {
    transform: scale(1.15);
    background: #ff0000;
    color: var(--white);
}

.video-info {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.video-title {
    font-weight: 700;
    color: #2d3479;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.4;
}

.page-header-videos {
    padding: 3rem 0;
    margin-bottom: 2rem;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.video-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    backdrop-filter: blur(4px);
}

/* Fim Vídeos */

/* ==========================================================================
   PÁGINA DE ETAPAS (Index.cshtml) - Novo Estilo Premium
   ========================================================================== */

.bg-breadcrumb-premium {
    padding: 5rem 0 4rem 0;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--slate-200) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.breadcrumb-premium {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 1rem;
    list-style: none;
}

.breadcrumb-item-premium {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-500);
}

    .breadcrumb-item-premium a {
        color: var(--blue-600);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb-item-premium a:hover {
            color: var(--blue-700);
        }

    .breadcrumb-item-premium + .breadcrumb-item-premium::before {
        content: "/";
        padding: 0 8px;
        color: var(--slate-300);
    }

.breadcrumb-premium-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -1.2px;
    margin-bottom: 8px;
    line-height: 1.15;
}

.breadcrumb-premium-subtitle {
    font-size: 1.15rem;
    color: var(--slate-600);
    margin-bottom: 0;
    font-weight: 450;
}

.etapas-page-wrapper {
    background-color: #fafbfc;
}

/* Overall Project Performance Card */
.etapas-summary-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.02);
    padding: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.summary-badge {
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue-600);
    display: inline-block;
    margin-bottom: 15px;
}

.summary-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.summary-text {
    font-size: 1.02rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 25px;
}

.summary-quick-stats {
    display: flex;
    gap: 30px;
}

.quick-stat {
    display: flex;
    flex-direction: column;
}

.border-left-divider {
    border-left: 1px solid var(--slate-200);
    padding-left: 30px;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 850;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Conic Circular Progress Indicator (CSS Conic-Gradient powered) */
.etapas-circle-progress {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(var(--blue-500) calc(var(--percent-val) * 1%), var(--slate-100) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.circle-inner {
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
}

.circle-number {
    font-size: 2.2rem;
    font-weight: 850;
    color: var(--slate-900);
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.circle-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Sticky Aside Panel */
.etapas-sticky-aside {
    position: sticky;
    top: 100px;
}

    .etapas-sticky-aside .aside-title {
        font-size: 1.05rem;
        font-weight: 750;
        color: var(--slate-900);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

.aside-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aside-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--slate-50);
    color: var(--slate-600);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .aside-nav-link:hover {
        background: var(--white);
        color: var(--slate-900);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
        border-color: rgba(0, 0, 0, 0.05);
        transform: translateX(4px);
    }

.nav-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.bg-success-glow {
    background: var(--success-color);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.bg-warning-glow {
    background: var(--warning-color);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.bg-muted-glow {
    background: var(--slate-400);
}

.aside-quote-card {
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--slate-100) 100%);
    border-radius: 18px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.quote-icon {
    font-size: 1.4rem;
    color: var(--slate-300);
    margin-bottom: 10px;
    display: block;
}

.quote-text {
    font-size: 0.88rem;
    color: var(--slate-600);
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

/* Timeline Flow Panels */
.etapas-timeline-section {
    position: relative;
}

.section-timeline-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--slate-100);
    padding-bottom: 15px;
}

.header-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.theme-orange {
    background: rgba(245, 158, 11, 0.08);
    color: var(--warning-hover);
}

.theme-green {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
}

.theme-gray {
    background: rgba(148, 163, 184, 0.08);
    color: var(--slate-600);
}

.fa-spin-slow {
    animation: fa-spin 6s linear infinite;
}

.timeline-section-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--slate-900);
    margin: 0 0 2px 0;
}

.timeline-section-desc {
    font-size: 0.88rem;
    color: var(--slate-500);
    margin: 0;
}

.etapas-timeline-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.etapa-timeline-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    padding: 24px 30px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .etapa-timeline-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        border-color: rgba(0, 0, 0, 0.07);
    }

.etapa-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.etapa-title {
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--slate-900);
    margin: 0;
    flex-grow: 1;
}

.badge-status {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-active {
    background: rgba(245, 158, 11, 0.08);
    color: var(--warning-hover);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.badge-completed {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.badge-planned {
    background: var(--slate-100);
    color: var(--slate-500);
    border: 1px solid var(--slate-200);
}

.etapa-icon-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.pulse-amber {
    background: var(--warning-color);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
    animation: active-pulse-amber 2s infinite;
}

@keyframes active-pulse-amber {
    0% {
        box-shadow: 0 0 0 0px rgba(245, 158, 11, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0px rgba(245, 158, 11, 0);
    }
}

.etapa-icon-dot.bg-success {
    color: var(--white);
    background-color: var(--success-color) !important;
}

.etapa-icon-dot.bg-muted {
    color: var(--slate-500);
    background-color: var(--slate-200) !important;
}

.etapa-description {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.55;
    margin: 0;
}

.etapa-progress-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar-track {
    flex-grow: 1;
    height: 8px;
    background: var(--slate-100);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 10px;
}

.bg-active-gradient {
    background: linear-gradient(90deg, var(--warning-color) 0%, var(--warning-hover) 100%);
}

.progress-label-percent {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--warning-hover);
}

.etapa-timeline-empty-card {
    background: var(--slate-50);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: var(--slate-500);
    font-size: 0.92rem;
    border: 1px dashed var(--slate-200);
}

@media (max-width: 991px) {
    .etapas-summary-card {
        padding: 30px;
        margin-top: -30px;
    }

    .summary-title {
        font-size: 1.8rem;
    }

    .etapas-circle-progress {
        margin-top: 20px;
    }
}

/* ==========================================================================
   PÃƒÆ’Ã‚ÂGINA DE ESCOLAS (Index.cshtml) - Novo Estilo Premium
   ========================================================================== */

.escolas-page-wrapper {
    background-color: #fafbfc;
}

/* Overall Schools Summary Card */
.escolas-summary-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.02);
    padding: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.bg-violet-glow-badge {
    background: rgba(139, 92, 246, 0.08);
    color: var(--violet-500);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.text-violet {
    color: var(--violet-500);
}

/* Schools Interactive Hub Scene & Wave Rings */
.escolas-interactive-hub-scene {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    width: 100%;
}

.escolas-hub-circles {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.escolas-hub-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.2);
    animation: hub-pulse 3s infinite ease-in-out;
}

.hbc-1 {
    width: 55px;
    height: 55px;
    animation-delay: 0s;
}

.hbc-2 {
    width: 95px;
    height: 95px;
    animation-delay: 1s;
}

.hbc-3 {
    width: 135px;
    height: 135px;
    animation-delay: 2s;
}

.escolas-hub-center {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--violet-500) 0%, #6d28d9 100%);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    z-index: 5;
    box-shadow: 0 6px 15px rgba(139, 92, 246, 0.25);
}

/* Escola Premium Card Layout */
.escola-premium-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .escola-premium-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(139, 92, 246, 0.06);
        border-color: rgba(139, 92, 246, 0.15);
    }

.escola-premium-cover {
    height: 160px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.escola-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.escola-premium-card:hover .escola-cover-image {
    transform: scale(1.05);
}

.escola-cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    color: var(--violet-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
}

.escola-badge-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(139, 92, 246, 0.9);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    z-index: 5;
}

.escola-premium-body {
    padding: 25px 25px 15px 25px;
    flex-grow: 1;
}

.escola-premium-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 20px;
    line-height: 1.35;
}

.escola-premium-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .escola-premium-details li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

.detail-icon-wrapper {
    font-size: 1.1rem;
    color: var(--violet-500);
    margin-top: 2px;
}

.detail-text-block {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 0.88rem;
    color: var(--slate-600);
    font-weight: 600;
    line-height: 1.4;
}

.escola-premium-footer {
    padding: 15px 25px 20px 25px;
    border-top: 1px solid var(--slate-100);
}

.footer-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--success-color);
    background: rgba(16, 185, 129, 0.06);
    padding: 4px 10px;
    border-radius: 50px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--success-color);
    box-shadow: 0 0 6px var(--success-color);
    animation: footer-dot-pulse 2s infinite;
}

@keyframes footer-dot-pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }

    100% {
        opacity: 0.5;
    }
}

@media (max-width: 991px) {
    .escolas-summary-card {
        padding: 30px;
        margin-top: -30px;
    }

    .escolas-interactive-hub-scene {
        margin-top: 20px;
    }
}

/* ==========================================================================
   PÃƒÆ’Ã‚ÂGINA DE PERGUNTAS FREQUENTES (FAQ) - Novo Estilo Premium
   ========================================================================== */

.faq-page-wrapper {
    background-color: #fafbfc;
}

/* Overall FAQ Summary Card */
.faq-summary-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.02);
    padding: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.bg-indigo-glow-badge {
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.text-indigo {
    color: var(--primary-color);
}

/* Interactive Floating Bubbles Scene */
.faq-interactive-bubbles-scene {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    width: 100%;
}

.faq-hub-bubbles {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.faq-hub-bubble {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 850;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.12);
    animation: bubble-float 3s infinite ease-in-out alternate;
}

.fh-left {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
    transform: translateY(-8px) rotate(-10deg);
    animation-delay: 0s;
}

.fh-right {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid rgba(99, 102, 241, 0.15);
    transform: translateY(8px) rotate(15deg);
    animation-delay: 1.5s;
}

@keyframes bubble-float {
    0% {
        transform: translateY(-10px) rotate(-5deg);
    }

    100% {
        transform: translateY(10px) rotate(10deg);
    }
}

/* Accordion Premium styles */
.faq-premium-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-accordion-item {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .faq-accordion-item:hover {
        border-color: rgba(99, 102, 241, 0.15);
        box-shadow: 0 10px 25px rgba(99, 102, 241, 0.03);
    }

.faq-item-header {
    background: none;
    padding: 0;
}

.faq-trigger-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 22px 28px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 750;
    color: var(--slate-900);
    cursor: pointer;
    outline: none !important;
    transition: all 0.3s ease;
}

    .faq-trigger-btn:hover {
        color: var(--primary-color);
    }

.trigger-question-text {
    padding-right: 15px;
    line-height: 1.4;
}

.trigger-icon-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.06);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s, color 0.3s;
}

.faq-trigger-btn:not(.collapsed) .trigger-icon-arrow {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: var(--white);
}

.faq-item-body {
    padding: 0 28px 25px 28px;
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.65;
}

    .faq-item-body a {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: underline;
    }

/* Sticky Contact Card Aside */
.faq-sticky-sidebar {
    position: sticky;
    top: 100px;
}

.contact-card-premium {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.contact-badge {
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.contact-text {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.55;
    margin-bottom: 0;
}

.btn-whatsapp-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--white) !important;
    font-size: 0.95rem;
    font-weight: 750;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: btn-whatsapp-pulse 2s infinite;
}

    .btn-whatsapp-premium:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(22, 163, 74, 0.35);
    }

@keyframes btn-whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0px rgba(34, 197, 94, 0);
    }
}

/* Social Glow Buttons Grid */
.contact-social-section {
    border-top: 1px solid var(--slate-100);
}

.social-title-header {
    font-size: 0.72rem;
    font-weight: 750;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.social-glow-buttons {
    display: flex;
    gap: 12px;
}

.social-glow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--slate-50);
    color: var(--slate-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.ig-glow:hover {
    background: rgba(236, 72, 153, 0.08);
    color: #ec4899;
    border-color: rgba(236, 72, 153, 0.15);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.12);
    transform: translateY(-2px);
}

.fb-glow:hover {
    background: rgba(59, 130, 246, 0.08);
    color: var(--blue-500);
    border-color: rgba(59, 130, 246, 0.15);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.12);
    transform: translateY(-2px);
}

.yt-glow:hover {
    background: rgba(239, 68, 68, 0.08);
    color: var(--danger-color);
    border-color: rgba(239, 68, 68, 0.15);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.12);
    transform: translateY(-2px);
}

.tk-glow:hover {
    background: rgba(15, 23, 42, 0.08);
    color: var(--slate-900);
    border-color: rgba(15, 23, 42, 0.15);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .faq-summary-card {
        padding: 30px;
        margin-top: -30px;
    }

    .faq-interactive-bubbles-scene {
        margin-top: 20px;
    }
}

/* ==========================================================================
   PÃƒÆ’Ã‚ÂGINAS DE GALERIAS DE FOTOS - Novo Estilo Premium
   ========================================================================== */

.text-orange-header {
    color: var(--gallery-green-600) !important;
}

.galerias-page-wrapper,
.galeria-interna-wrapper {
    background-color: #fafbfc;
}

/* Overall Galleries Summary Card */
.galerias-summary-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.02);
    padding: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.bg-orange-glow-badge {
    background: rgba(40, 167, 69, 0.08);
    color: var(--gallery-green-600);
    border: 1px solid rgba(40, 167, 69, 0.15);
}

.text-orange {
    color: var(--gallery-green-600);
}

/* Interactive Photograph Frames CSS Scene */
.galerias-interactive-frames-scene {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    width: 100%;
}

.galerias-hub-frames {
    position: relative;
    width: 150px;
    height: 120px;
}

.galerias-frame {
    position: absolute;
    border-radius: 12px;
    background: var(--white);
    border: 4px solid var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gf-1 {
    width: 105px;
    height: 80px;
    left: 0;
    top: 25px;
    background-image: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    transform: rotate(-12deg);
    z-index: 1;
}

.gf-2 {
    width: 90px;
    height: 90px;
    right: 0;
    top: 10px;
    background-image: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    transform: rotate(10deg);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gallery-green-600);
    font-size: 2.2rem;
}

.galerias-summary-card:hover .gf-1 {
    transform: rotate(-18deg) translateY(-8px) scale(1.05);
}

.galerias-summary-card:hover .gf-2 {
    transform: rotate(14deg) translateY(-8px) scale(1.05);
}

/* Gallery Premium Card Layout */
.galeria-premium-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .galeria-premium-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(40, 167, 69, 0.06);
        border-color: rgba(40, 167, 69, 0.15);
    }

.galeria-cover-wrapper {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.galeria-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-premium-card:hover .galeria-cover-img {
    transform: scale(1.05);
}

.galeria-date-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.75);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    z-index: 5;
}

.galeria-premium-body {
    padding: 25px 25px 15px 25px;
    flex-grow: 1;
}

.galeria-premium-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.galeria-premium-summary {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.5;
    margin-bottom: 0;
}

.galeria-premium-footer {
    padding: 15px 25px 25px 25px;
}

.btn-galeria-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    background: var(--slate-50);
    border-radius: 12px;
    color: var(--gallery-green-600) !important;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(40, 167, 69, 0.05);
}

    .btn-galeria-action:hover,
    .galeria-premium-card:hover .btn-galeria-action {
        background: linear-gradient(135deg, var(--gallery-green-500) 0%, var(--gallery-green-700) 100%);
        color: var(--white) !important;
        border-color: transparent;
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    }

    .btn-galeria-action i {
        transition: transform 0.3s ease;
    }

    .btn-galeria-action:hover i,
    .galeria-premium-card:hover .btn-galeria-action i {
        transform: translateX(4px);
    }

/* ==========================================================================
   PÃƒÆ’Ã‚ÂGINA INTERNA DO ÃƒÆ’Ã‚ÂLBUM (Galeria.cshtml)
   ========================================================================== */

.breadcrumb-album-badge {
    display: inline-block;
    background: rgba(40, 167, 69, 0.1);
    color: var(--gallery-green-600);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 10px;
}

/* Inner Photo Cards Grid */
.gallery-photo-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .gallery-photo-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border-color: rgba(40, 167, 69, 0.15);
    }

.photo-img-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gallery-inner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-photo-card:hover .gallery-inner-img {
    transform: scale(1.06);
}

.photo-overlay-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.gallery-photo-card:hover .photo-overlay-glass {
    opacity: 1;
}

.overlay-icon-holder {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    color: var(--gallery-green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-photo-card:hover .overlay-icon-holder {
    transform: scale(1);
}

/* Empty State Cover */
.gallery-empty-state {
    background: var(--white);
    border-radius: 20px;
    border: 1px dashed var(--slate-200);
    padding: 60px 40px;
    text-align: center;
    color: var(--slate-500);
}

.empty-icon {
    font-size: 3rem;
    color: var(--slate-300);
    margin-bottom: 15px;
}

/* Sidebar & Sticky Columns */
.gallery-sticky-sidebar {
    position: sticky;
    top: 100px;
}

.gallery-aside-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.aside-card-badge {
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-block;
}

.gallery-description-content {
    font-size: 0.92rem;
    color: var(--slate-600);
    line-height: 1.6;
}

    .gallery-description-content p {
        margin-bottom: 12px;
    }

        .gallery-description-content p:last-child {
            margin-bottom: 0;
        }

.aside-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.aside-card-text {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.5;
}

/* Share Social Grid */
.share-social-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    color: var(--white) !important;
    font-size: 0.9rem;
    font-weight: 750;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.share-wa {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

    .share-wa:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(22, 163, 74, 0.25);
    }

.share-fb {
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.15);
}

    .share-fb:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(29, 78, 216, 0.25);
    }

.share-mail {
    background: linear-gradient(135deg, var(--slate-500) 0%, var(--slate-600) 100%);
    box-shadow: 0 4px 12px rgba(71, 85, 105, 0.15);
}

    .share-mail:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(71, 85, 105, 0.25);
    }

/* Similar Albums List Feed */
.similar-albums-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.similar-album-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 10px;
}

    .similar-album-item:hover {
        background: var(--slate-50);
    }

.similar-item-thumb {
    width: 70px;
    height: 55px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

    .similar-item-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.similar-item-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.similar-item-title {
    font-size: 0.88rem;
    font-weight: 750;
    color: var(--slate-900);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similar-album-item:hover .similar-item-title {
    color: var(--gallery-green-600);
}

.similar-item-date {
    font-size: 0.72rem;
    color: var(--slate-400);
    margin-top: 2px;
}

@media (max-width: 991px) {
    .galerias-summary-card {
        padding: 30px;
        margin-top: -30px;
    }

    .galerias-interactive-frames-scene {
        margin-top: 20px;
    }
}

/* Bottom Full-Width Galleries Section */
.border-top-divider-glow {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 40px;
}

.bottom-header-badge {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gallery-green-600);
    background: rgba(40, 167, 69, 0.06);
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-block;
}

.bottom-header-title {
    font-size: 1.5rem;
    font-weight: 850;
    color: var(--slate-900);
}

.btn-view-all-galleries {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gallery-green-600) !important;
    font-weight: 750;
    font-size: 0.88rem;
    text-decoration: none !important;
    transition: transform 0.3s ease;
}

    .btn-view-all-galleries:hover {
        transform: translateX(4px);
    }

.bottom-gallery-item-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    width: 100%;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .bottom-gallery-item-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(40, 167, 69, 0.05);
        border-color: rgba(40, 167, 69, 0.15);
    }

.bottom-card-cover {
    height: 140px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .bottom-card-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.bottom-gallery-item-card:hover .bottom-card-cover img {
    transform: scale(1.05);
}

.bottom-card-date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.7);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    backdrop-filter: blur(2px);
}

.bottom-card-body {
    padding: 15px 15px 20px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bottom-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bottom-gallery-item-card:hover .bottom-card-title {
    color: var(--gallery-green-600);
}

.bottom-card-text {
    font-size: 0.8rem;
    color: var(--slate-500);
    line-height: 1.45;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   PÃGINA DE VÃDEOS (Index.cshtml) - Novo Estilo Premium
   ========================================================================== */

.text-red-header {
    color: var(--danger-color) !important;
}

.videos-page-wrapper {
    background-color: #fafbfc;
}

/* Overall Videos Summary Card */
.videos-summary-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.02);
    padding: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.bg-red-glow-badge {
    background: rgba(239, 68, 68, 0.08);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.text-red {
    color: var(--danger-color);
}

/* Videos Interactive Concentric Pulse Player */
.videos-interactive-play-scene {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    width: 100%;
}

.videos-hub-player {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videos-player-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(239, 68, 68, 0.2);
    animation: play-pulse 3s infinite ease-in-out;
}

.vpc-1 {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.vpc-2 {
    width: 100px;
    height: 100px;
    animation-delay: 1.5s;
}

@keyframes play-pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.videos-player-center {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--danger-color) 0%, var(--danger-hover) 100%);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 5;
    padding-left: 3px;
    box-shadow: 0 6px 15px rgba(239, 68, 68, 0.25);
}

/* Video Premium Card Layout */
.video-premium-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .video-premium-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(239, 68, 68, 0.06);
        border-color: rgba(239, 68, 68, 0.15);
    }

.video-premium-cover {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.video-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.video-premium-card:hover .video-cover-img {
    transform: scale(1.05);
    opacity: 0.85;
}

.video-play-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.play-btn-circle-glow {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: var(--danger-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    padding-left: 3px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-premium-card:hover .play-btn-circle-glow {
    transform: scale(1.12);
    background: var(--danger-color);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.35);
}

.video-badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(239, 68, 68, 0.9);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    z-index: 5;
}

.video-premium-body {
    padding: 25px 25px 15px 25px;
    flex-grow: 1;
}

.video-premium-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.3;
    margin-bottom: 0;
}

.video-premium-card:hover .video-premium-title {
    color: var(--danger-color);
}

.video-premium-footer {
    padding: 15px 25px 25px 25px;
}

.video-action-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    background: var(--slate-50);
    border-radius: 12px;
    color: var(--danger-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid rgba(239, 68, 68, 0.05);
}

.video-premium-card:hover .video-action-pill {
    background: linear-gradient(135deg, var(--danger-color) 0%, var(--danger-hover) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.video-action-pill i {
    transition: transform 0.3s ease;
}

.video-premium-card:hover .video-action-pill i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .videos-summary-card {
        padding: 30px;
        margin-top: -30px;
    }

    .videos-interactive-play-scene {
        margin-top: 20px;
    }
}

/* ==========================================================================
   PÃƒÆ’Ã‚ÂGINA QUEM SOMOS (Index.cshtml) - Novo Estilo Premium
   ========================================================================== */

.text-violet-header {
    color: var(--violet-500) !important;
}

.about-page-wrapper {
    background-color: #fafbfc;
}

.about-section-badge {
    background: rgba(139, 92, 246, 0.08);
    color: var(--violet-500);
    border: 1px solid rgba(139, 92, 246, 0.15);
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Rich Dynamic Text Styling */
.about-text-content-rich {
    font-size: 1.05rem;
    color: var(--slate-600);
    line-height: 1.75;
}

    .about-text-content-rich p {
        margin-bottom: 20px;
    }

        .about-text-content-rich p:last-child {
            margin-bottom: 0;
        }

    .about-text-content-rich h2 {
        font-size: 2rem;
        font-weight: 850;
        color: var(--slate-900);
        margin-top: 15px;
        margin-bottom: 20px;
        line-height: 1.25;
    }

    .about-text-content-rich strong {
        color: var(--slate-900);
        font-weight: 750;
    }

/* Media Mockup Browser Container */
.about-video-card-premium {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.video-card-header {
    background: var(--slate-50);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .video-card-header .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

    .video-card-header .d-1 {
        background: var(--danger-color);
    }

    .video-card-header .d-2 {
        background: var(--warning-color);
    }

    .video-card-header .d-3 {
        background: var(--success-color);
    }

    .video-card-header .header-label {
        font-size: 0.72rem;
        font-weight: 800;
        color: var(--slate-400);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-left: auto;
    }

.about-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
}

    .about-video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.about-image-card-premium {
    background: var(--white);
    border-radius: 20px;
    border: 4px solid var(--white);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.about-intro-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

/* About Pillars Column Showcase */
.about-pillar-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    padding: 35px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .about-pillar-card:hover {
        transform: translateY(-5px);
    }

.apc-etapas:hover {
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.15);
}

.apc-escolas:hover {
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.15);
}

.apc-equipe:hover {
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.06);
    border-color: rgba(236, 72, 153, 0.15);
}

.pillar-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 25px;
}

.apc-etapas .pillar-card-icon {
    background: rgba(59, 130, 246, 0.08);
    color: var(--blue-500);
}

.apc-escolas .pillar-card-icon {
    background: rgba(139, 92, 246, 0.08);
    color: var(--violet-500);
}

.apc-equipe .pillar-card-icon {
    background: rgba(236, 72, 153, 0.08);
    color: var(--pink-500);
}

.pillar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.pillar-text {
    font-size: 0.92rem;
    color: var(--slate-500);
    line-height: 1.6;
    flex-grow: 1;
}

.pillar-card-footer {
    margin-top: 25px;
}

.btn-pillar-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    border-radius: 12px;
    color: var(--white) !important;
    font-size: 0.88rem;
    font-weight: 750;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.bg-blue-gradient {
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

    .bg-blue-gradient:hover {
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    }

.bg-violet-gradient {
    background: linear-gradient(135deg, var(--violet-500) 0%, var(--violet-600) 100%);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

    .bg-violet-gradient:hover {
        box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
    }

.bg-emerald-gradient {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
}

    .bg-emerald-gradient:hover {
        box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
    }

.btn-pillar-action i {
    transition: transform 0.3s ease;
}

.btn-pillar-action:hover i {
    transform: translateX(4px);
}

/* Additional Auxiliary Text Block */
.about-extra-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.about-extra-title {
    font-size: 1.5rem;
    font-weight: 850;
    color: var(--slate-900);
    line-height: 1.3;
}

.about-extra-content {
    font-size: 1.02rem;
    color: var(--slate-600);
    line-height: 1.7;
}

    .about-extra-content p {
        margin-bottom: 16px;
    }

        .about-extra-content p:last-child {
            margin-bottom: 0;
        }

/* Home Accordion FAQ Block */
.about-faq-section {
    background: var(--slate-50);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.about-faq-sticky-sidebar {
    position: sticky;
    top: 100px;
}

.about-faq-callout-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.callout-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(139, 92, 246, 0.08);
    color: var(--violet-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.callout-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.callout-text {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.5;
}

.btn-callout-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-radius: 12px;
    color: var(--white) !important;
    font-size: 0.85rem;
    font-weight: 750;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

    .btn-callout-action i {
        transition: transform 0.3s ease;
    }

    .btn-callout-action:hover i {
        transform: translateX(4px);
    }

/* FAQ Accordion Base Components */
.faq-premium-accordion {
    position: relative;
}

/* Accordion Item Card Formats */
.faq-accordion-item,
.faq-accordion-card {
    background: var(--white);
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01) !important;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .faq-accordion-item:hover,
    .faq-accordion-card:hover {
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.04) !important;
        border-color: rgba(139, 92, 246, 0.15) !important;
    }

/* Headers */
.faq-item-header,
.faq-accordion-header {
    background: var(--white);
    padding: 0;
    border: none;
}

/* Triggers & Buttons */
.faq-trigger-btn,
.faq-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 30px;
    background: transparent;
    border: none;
    outline: none !important;
    text-decoration: none !important;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Questions */
.trigger-question-text,
.trigger-text {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--slate-900);
    transition: color 0.3s ease;
    line-height: 1.4;
    padding-right: 15px;
}

.faq-trigger-btn:not(.collapsed) .trigger-question-text,
.faq-accordion-trigger:not(.collapsed) .trigger-text {
    color: var(--violet-500);
}

/* Icon / Chevron Holder */
.trigger-icon-arrow,
.chevron-holder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--slate-50);
    color: var(--slate-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-trigger-btn:not(.collapsed) .trigger-icon-arrow,
.faq-accordion-trigger:not(.collapsed) .chevron-holder {
    background: rgba(139, 92, 246, 0.08);
    color: var(--violet-500);
    transform: rotate(180deg);
}

/* Bodies & Answers */
.faq-item-body,
.faq-accordion-body {
    padding: 0 30px 25px 30px;
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.65;
    border-top: none;
}

    .faq-item-body p,
    .faq-accordion-body p {
        margin-bottom: 12px;
    }

        .faq-item-body p:last-child,
        .faq-accordion-body p:last-child {
            margin-bottom: 0;
        }

/* ==========================================================================
   PÃƒÆ’Ã‚ÂGINA DE EBOOKS (Index.cshtml) - Novo Estilo Premium
   ========================================================================== */

.ebooks-page-wrapper {
    background-color: #fafbfc;
}

/* High Impact Release Banner for the Main Ebook */
.ebooks-highlight-card {
    background: linear-gradient(135deg, var(--white) 0%, #fff1f2 100%);
    border-radius: 24px;
    border: 1px solid rgba(219, 39, 119, 0.06);
    box-shadow: 0 20px 45px rgba(219, 39, 119, 0.03);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.highlight-badge-pill {
    background: rgba(219, 39, 119, 0.08);
    color: #db2777;
    border: 1px solid rgba(219, 39, 119, 0.15);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
}

.highlight-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.25;
    margin-bottom: 25px;
}

.highlight-meta-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.highlight-book-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #db2777;
    margin-bottom: 4px;
}

.highlight-book-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-600);
    margin-bottom: 12px;
}

.highlight-book-description {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Action Button Layouts */
.btn-highlight-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
}

.bg-pink-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.2);
}

    .bg-pink-gradient:hover {
        box-shadow: 0 6px 20px rgba(219, 39, 119, 0.3);
        transform: translateY(-1px);
    }

.btn-highlight-outline {
    background: transparent;
    color: #db2777 !important;
    border: 1px solid rgba(219, 39, 119, 0.3);
}

    .btn-highlight-outline:hover {
        background: rgba(219, 39, 119, 0.04);
        border-color: #db2777;
    }

/* 3D Float Cover Cover Scene */
.highlight-book-scene {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.highlight-glow-background {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(219, 39, 119, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.highlight-book-mockup-wrapper {
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.highlight-book-img {
    max-height: 340px;
    object-fit: contain;
    animation: float-book 6s infinite ease-in-out;
}

@keyframes float-book {
    0% {
        transform: translateY(0) rotateY(-4deg);
    }

    50% {
        transform: translateY(-10px) rotateY(-7deg);
    }

    100% {
        transform: translateY(0) rotateY(-4deg);
    }
}

/* Grid Ebooks Catalog Catalog Cards */
.section-heading-block {
    text-align: center;
}

.catalog-heading-badge {
    background: rgba(219, 39, 119, 0.08);
    color: #db2777;
    border: 1px solid rgba(219, 39, 119, 0.15);
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 15px;
}

.catalog-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.catalog-section-subtitle {
    font-size: 1rem;
    color: var(--slate-500);
    margin-bottom: 0;
}

.ebook-premium-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .ebook-premium-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(219, 39, 119, 0.05);
        border-color: rgba(219, 39, 119, 0.15);
    }

.ebook-premium-cover {
    height: 240px;
    background: var(--slate-50);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    overflow: hidden;
}

.cover-image-container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.cover-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 4px 8px 8px 4px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease;
}

.ebook-premium-card:hover .cover-img {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1);
}

.ebook-premium-badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(219, 39, 119, 0.9);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    z-index: 5;
}

.ebook-premium-body {
    padding: 25px 25px 15px 25px;
    flex-grow: 1;
}

.ebook-premium-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.35;
    margin-bottom: 10px;
}

.ebook-premium-card:hover .ebook-premium-title {
    color: #db2777;
}

.ebook-premium-text {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ebook-premium-footer {
    padding: 15px 25px 25px 25px;
}

.btn-ebook-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 750;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
}

.btn-ebook-outline {
    background: transparent;
    color: #db2777 !important;
    border: 1px solid rgba(219, 39, 119, 0.2);
}

    .btn-ebook-outline:hover {
        background: rgba(219, 39, 119, 0.04);
        border-color: #db2777;
    }

.btn-ebook-locked {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--slate-50);
    color: var(--slate-600) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ebook-premium-card:hover .btn-ebook-locked {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: var(--white) !important;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(219, 39, 119, 0.2);
}

/* Premium Glass Registration Modal */
.modal-premium-content {
    background: var(--white) !important;
    border-radius: 24px !important;
    border: none !important;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden;
}

.modal-premium-header {
    background: var(--white) !important;
    padding: 40px 30px 10px 30px !important;
    border-bottom: none !important;
    position: relative !important;
}

.modal-lock-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover)) !important;
    color: var(--white) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.4rem !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25) !important;
}

.modal-premium-title {
    font-family: var(--font-outfit) !important;
    font-size: 1.4rem !important;
    font-weight: 850 !important;
    color: var(--slate-900) !important;
}

.modal-premium-subtitle {
    font-size: 0.88rem !important;
    color: var(--slate-500) !important;
    line-height: 1.4 !important;
}

.modal-premium-close {
    position: absolute !important;
    right: 25px !important;
    top: 25px !important;
    color: var(--slate-400) !important;
    opacity: 0.5 !important;
    transition: opacity 0.2s ease !important;
    font-size: 1.5rem !important;
    border: none !important;
    background: transparent !important;
}

    .modal-premium-close:hover {
        opacity: 0.9 !important;
        color: var(--slate-700) !important;
    }

.form-premium-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.input-premium-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

    .input-premium-wrapper .input-icon {
        position: absolute;
        left: 18px;
        color: var(--slate-400);
        font-size: 0.95rem;
    }

.input-premium-control {
    padding: 14px 20px 14px 48px !important;
    height: auto !important;
    border-radius: 12px !important;
    border: 1px solid var(--slate-200) !important;
    font-size: 0.92rem !important;
    color: var(--slate-900) !important;
    transition: all 0.3s ease !important;
    background: var(--slate-50) !important;
}

    .input-premium-control:focus {
        border-color: #db2777 !important;
        background: var(--white) !important;
        box-shadow: 0 0 0 4px rgba(219, 39, 119, 0.08) !important;
    }

.btn-premium-submit {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 750;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .btn-premium-submit:hover {
        box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
        transform: translateY(-1px);
    }

@media (max-width: 991px) {
    .ebooks-highlight-card {
        padding: 30px;
    }
}

/* ==========================================================================
   PÃƒÆ’Ã‚ÂGINA DE EQUIPE (Index.cshtml) - Novo Estilo Premium
   ========================================================================== */

.text-slate-header {
    color: var(--slate-600) !important;
}

.equipe-page-wrapper {
    background-color: #fafbfc;
    position: relative;
    overflow: hidden;
}

/* Overall Team Summary Dashboard Card */
.equipe-summary-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(71, 85, 105, 0.08);
    box-shadow: 0 20px 45px rgba(71, 85, 105, 0.02);
    padding: 40px;
    position: relative;
    z-index: 10;
}

.bg-slate-glow-badge {
    background: rgba(71, 85, 105, 0.08);
    color: var(--slate-600);
    border: 1px solid rgba(71, 85, 105, 0.15);
}

.text-slate-color {
    color: var(--slate-600);
}

/* Interactive Avatars Showcase Hub Scene */
.equipe-interactive-scene {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    width: 100%;
}

.equipe-interactive-hubs {
    position: relative;
    width: 150px;
    height: 120px;
}

.hub-avatar {
    position: absolute;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 8px 20px rgba(71, 85, 105, 0.15);
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
}

    .hub-avatar:hover {
        transform: scale(1.1) translateY(-2px);
        z-index: 10 !important;
        box-shadow: 0 12px 25px rgba(99, 102, 241, 0.25);
    }

.ha-1 {
    width: 54px;
    height: 54px;
    left: 0;
    top: 35px;
    z-index: 2;
    /*background-image: url('/Assets/v1/img/thumbcursos.jpg');*/
    background-color: var(--violet-600);
}

.ha-2 {
    width: 68px;
    height: 68px;
    left: 41px;
    top: 10px;
    z-index: 3;
    /*background-image: url('/Assets/v1/img/thumbcursos.jpg');*/
    background-color: var(--primary-color);
}

.ha-3 {
    width: 54px;
    height: 54px;
    right: 0;
    top: 35px;
    z-index: 1;
    /*background-image: url('/Assets/v1/img/thumbcursos.jpg');*/
    background-color: var(--blue-500);
}

/* Delicate Curriculum Modal Styles */
.modal-content-delicate {
    background: var(--white);
    border-radius: 24px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12) !important;
    overflow: hidden;
}

.modal-header-delicate {
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200) !important;
    padding: 25px 30px !important;
}

    .modal-header-delicate .modal-title {
        font-size: 1.25rem;
        font-weight: 850;
        color: var(--slate-600);
    }

    .modal-header-delicate .close {
        padding: 25px 30px !important;
        margin: -25px -30px -25px auto !important;
        outline: none !important;
    }

/* Custom styles for curriculum content details */
#conteudoCurriculo {
    font-size: 0.98rem;
    color: var(--slate-600);
    line-height: 1.7;
}

    #conteudoCurriculo h1,
    #conteudoCurriculo h2,
    #conteudoCurriculo h3 {
        font-weight: 850;
        color: var(--slate-900);
        margin-top: 20px;
        margin-bottom: 15px;
    }

    #conteudoCurriculo ul,
    #conteudoCurriculo ol {
        padding-left: 20px;
        margin-bottom: 15px;
    }

    #conteudoCurriculo li {
        margin-bottom: 8px;
    }

    #conteudoCurriculo p {
        margin-bottom: 15px;
    }

@media (max-width: 991px) {
    .equipe-summary-card {
        padding: 30px;
    }

    .equipe-interactive-scene {
        margin-top: 20px;
    }
}

/* ==========================================================================
   TIME / EQUIPE - VISUALIZAÃƒÆ’Ã¢â‚¬Â¡ÃƒÆ’Ã†â€™O COMPACTA ALTERNATIVA
   ========================================================================== */

.compact-separator-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--slate-500) 0%, var(--slate-300) 100%);
    border-radius: 10px;
    margin: 0 auto;
}

.card-delicate-compact {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .card-delicate-compact:hover {
        transform: translateY(-3px);
        border-color: rgba(99, 102, 241, 0.15);
        box-shadow: 0 15px 35px rgba(99, 102, 241, 0.04);
        background: var(--white);
    }

.compact-avatar-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--white);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.compact-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compact-header-info {
    text-align: left;
    overflow: hidden;
}

.compact-member-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-delicate-compact:hover .compact-member-name {
    color: var(--primary-color);
}

.compact-member-city {
    font-size: 0.72rem;
    color: var(--primary-color);
    font-weight: 750;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.compact-member-resumo {
    font-size: 0.8rem;
    color: var(--slate-500);
    line-height: 1.5;
    margin: 0;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3em;
}

.compact-card-footer {
    border-top: 1px solid var(--slate-100);
}

.compact-social {
    display: flex;
    gap: 6px;
}

    .compact-social a {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        background: rgba(99, 102, 241, 0.03);
        color: var(--slate-500);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.82rem;
        transition: all 0.2s ease;
        text-decoration: none !important;
    }

        .compact-social a:hover {
            color: var(--white);
            transform: translateY(-2px);
        }

        .compact-social a[title="Instagram"]:hover {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
        }

        .compact-social a[title="LinkedIn"]:hover {
            background: #0077b5;
        }

        .compact-social a[title="Facebook"]:hover {
            background: #1877f2;
        }

/* Compact button styles */
.btn-compact-curriculo {
    background: rgba(99, 102, 241, 0.07);
    color: var(--primary-color);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

    .btn-compact-curriculo:hover {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--violet-500) 100%);
        color: var(--white) !important;
        border-color: transparent;
        box-shadow: 0 4px 10px rgba(99, 102, 241, 0.15);
    }

.btn-compact-curriculo-disabled {
    background: var(--slate-50);
    color: var(--slate-400);
    border: 1px dashed var(--slate-200);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   CHAMADA DE NOTÃƒÆ’Ã‚ÂCIAS (Default/Chamadas.cshtml - Block 10)
   ========================================================================== */

.calls-badge-amber {
    background: rgba(245, 158, 11, 0.08);
    color: var(--warning-hover);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.btn-calls-large-amber {
    background: linear-gradient(135deg, var(--warning-color) 0%, var(--warning-hover) 100%);
    color: var(--white) !important;
}

    .btn-calls-large-amber:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
    }

/* Visual Card Specific Elements (Newspaper Feed Mockup) */
.visual-card-amber .visual-card-glow {
    background: var(--warning-color);
}

.visual-card-amber .visual-header-accent {
    background: rgba(245, 158, 11, 0.08);
    color: var(--warning-hover);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.05);
}

.visual-card-amber .visual-card-tag {
    color: var(--warning-hover);
}

.visual-card-news-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 15px 10px;
    margin: 15px 0;
}

.news-line {
    height: 8px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.visual-card-amber:hover .news-line {
    background: rgba(0, 0, 0, 0.06);
}

.news-line.line-3 {
    width: 75%;
}

/* ==========================================================================
   PORTAL DE NOTÍCIAS & ARTIGOS (Noticia/Index.cshtml & Noticia/Noticia.cshtml)
   ========================================================================== */

/*.text-amber-header {
    color: var(--warning-hover) !important;
}*/

.noticias-page-wrapper {
    background-color: #fafbfc;
    position: relative;
    overflow: hidden;
}

.noticias-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.noticias-glow-1 {
    top: 5%;
    left: 2%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

.noticias-glow-2 {
    bottom: 10%;
    right: 2%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-hover) 0%, transparent 70%);
}

/* Card listing grid styles */
.card-premium-noticia {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.02), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

    .card-premium-noticia:hover {
        transform: translateY(-5px);
        border-color: rgba(99, 102, 241, 0.2);
        box-shadow: 0 20px 40px rgba(99, 102, 241, 0.08), 0 2px 10px rgba(99, 102, 241, 0.03);
        background: var(--white);
    }

.noticia-card-link {
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.noticia-img-container {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.noticia-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-premium-noticia:hover .noticia-img {
    transform: scale(1.04);
}

/*.noticia-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(245, 158, 11, 0.95);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 5;
}*/

.noticia-body {
    padding: 24px;
}

.noticia-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
    /*display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;*/
}

.card-premium-noticia:hover .noticia-title {
    color: var(--primary-hover);
}

.noticia-text {
    font-size: 0.88rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.8em;
}

/*.btn-read-more-amber {
    color: var(--warning-hover);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.card-premium-noticia:hover .btn-read-more-amber {
    color: var(--warning-color);
    transform: translateX(3px);
}*/

.btn-read-more-primary {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.card-premium-noticia:hover .btn-read-more-primary {
    color: var(--primary-hover);
    transform: translateX(3px);
}

/* ==========================================================================
   LEITURA DE NOTÍCIA INTERNA (Noticia.cshtml)
   ========================================================================== */

.card-premium-leitura {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.02);
    position: relative;
    z-index: 5;
}

.leitura-img-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.lectura-featured-img {
    object-fit: cover;
    max-height: 460px;
}

.leitura-date-badge {
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-hover);
    font-size: 0.8rem;
    font-weight: 750;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.leitura-content-body {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
}

    .leitura-content-body p {
        margin-bottom: 20px;
    }

.blog-autor-premium {
    background: var(--slate-50);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.autor-avatar-img {
    border: 3px solid var(--white);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    object-fit: cover;
}

.autor-badge {
    background: rgba(99, 102, 241, 0.15);
    color: var(--slate-500);
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}

.autor-name {
    font-size: 1.25rem;
    font-weight: 850;
    color: var(--slate-900);
}

.autor-bio {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

.autor-socials {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.social-btn {
    font-size: 0.75rem;
    font-weight: 750;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.instagram-btn {
    background: rgba(214, 36, 159, 0.05);
    color: #d6249f;
    border: 1px solid rgba(214, 36, 159, 0.1);
}

    .instagram-btn:hover {
        background: #d6249f;
        color: var(--white) !important;
    }

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.05);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

    .whatsapp-btn:hover {
        background: #25d366;
        color: var(--white) !important;
    }

.floating-share-premium {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.share-trigger-title {
    font-size: 0.95rem;
    color: var(--warning-hover);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.08);
}

.share-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.share-link-item {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #4b5563;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

    .share-link-item:hover {
        color: var(--white);
        transform: scale(1.1);
    }

    .share-link-item.mail:hover {
        background: var(--slate-500);
        border-color: transparent;
    }

    .share-link-item.facebook:hover {
        background: #1877f2;
        border-color: transparent;
    }

    .share-link-item.whatsapp:hover {
        background: #25d366;
        border-color: transparent;
    }

.slider-ultimas {
    background-color: var(--slate-50);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.slick-premium-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
    height: 100%;
}

    .slick-premium-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(99, 102, 241, 0.04);
        border-color: rgba(99, 102, 241, 0.12);
    }

.slick-card-link {
    text-decoration: none !important;
    color: inherit;
}

.slick-img-container {
    height: 155px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.slick-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.slick-premium-card:hover .slick-img {
    transform: scale(1.03);
}

.slick-body {
    padding: 20px;
}

.slick-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
    transition: color 0.3s ease;
}

.slick-premium-card:hover .slick-title {
    color: var(--primary-hover);
}

.slick-text {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3em;
}

.slick-read-more {
    font-size: 0.78rem;
    font-weight: 750;
    color: var(--primary-hover);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-premium-all-news {
    background: var(--white);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: var(--primary-hover) !important;
    font-size: 0.88rem;
    font-weight: 750;
    padding: 12px 28px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

    .btn-premium-all-news:hover {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
        color: var(--white) !important;
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
    }

@media (max-width: 991px) {
    .floating-share-premium {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        margin: 30px 0;
        padding: 10px;
        border-radius: 16px;
    }

        .floating-share-premium:hover {
            transform: translateY(-2px);
        }

        .floating-share-premium ul.share-links-list {
            flex-direction: row;
            gap: 15px;
        }

    .share-trigger-title {
        display: none;
    }
}

/* ==========================================================================
   DESTAQUE INICIAL / BANNER PRINCIPAL (BannerPrincipal.cshtml)
   ========================================================================== */

.hero-premium-wrapper {
    background: linear-gradient(135deg, var(--slate-900) 0%, #1e293b 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-radial-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.14;
    pointer-events: none;
    z-index: 1;
}

.glow-blue {
    width: 380px;
    height: 380px;
    background: var(--blue-500);
    left: -80px;
    top: -80px;
}

.glow-violet {
    width: 420px;
    height: 420px;
    background: var(--violet-500);
    right: -100px;
    bottom: -100px;
}

.glow-amber {
    width: 320px;
    height: 320px;
    background: var(--warning-color);
    left: 45%;
    top: 15%;
}

.hero-floating-node {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: floating-dust-key 6s ease-in-out infinite alternate;
    z-index: 2;
}

.node-small {
    width: 6px;
    height: 6px;
}

.node-medium {
    width: 10px;
    height: 10px;
    opacity: 0.12;
}

.node-large {
    width: 14px;
    height: 14px;
    opacity: 0.07;
}

.node-1 {
    left: 8%;
    top: 18%;
    animation-delay: 0s;
}

.node-2 {
    right: 12%;
    top: 28%;
    animation-delay: 2s;
}

.node-3 {
    left: 38%;
    bottom: 12%;
    animation-delay: 4s;
}

@keyframes floating-dust-key {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-20px) scale(1.08);
    }
}

.hero-glow-badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--slate-300);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pulsing-dot {
    color: var(--warning-color);
    animation: dot-glow-pulse-key 2s infinite;
}

@keyframes dot-glow-pulse-key {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 750;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--slate-400);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 630px;
}

.hero-benefits-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.benefit-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--slate-300);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--warning-color) 0%, var(--warning-hover) 100%);
    color: var(--white) !important;
    font-size: 0.95rem;
    font-weight: 750;
    padding: 15px 30px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
    text-decoration: none !important;
}

    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
    }

.btn-pulse-amber {
    animation: amber-pulse-key 2s infinite;
}

@keyframes amber-pulse-key {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--slate-300) !important;
    font-size: 0.95rem;
    font-weight: 750;
    padding: 15px 30px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--white) !important;
        border-color: rgba(255, 255, 255, 0.18);
        transform: translateY(-2px);
    }

/* ==========================================================================
   INTERACTIVE SATELLITE DIGITAL HUB MOCKUP (Right Column)
   ========================================================================== */

.hero-hub-scene {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hub-center-core {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e1b4b 0%, #311042 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.core-text {
    font-size: 1rem;
    font-weight: 850;
    color: var(--white);
    letter-spacing: 2px;
}

.core-subtext {
    font-size: 0.72rem;
    font-weight: 750;
    color: #ec4899;
    letter-spacing: 1px;
    margin-top: 2px;
}

.core-pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(168, 85, 247, 0.25);
    animation: core-wave-key 3s linear infinite;
}

    .core-pulse-ring.delay-1 {
        animation-delay: 1.5s;
    }

@keyframes core-wave-key {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.hub-satellite-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .hub-satellite-bubble:hover {
        background: rgba(255, 255, 255, 0.14);
        transform: scale(1.08) translateY(-4px) !important;
        border-color: rgba(255, 255, 255, 0.25);
    }

.bubble-lbl {
    font-size: 0.8rem;
    font-weight: 750;
    color: var(--white);
}

.bubble-icon-holder {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--white);
}

.bubble-cap {
    left: -15px;
    top: 35px;
    animation: satellite-bob-key-1 4s ease-in-out infinite alternate;
}

    .bubble-cap .bubble-icon-holder {
        background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    }

.bubble-inc {
    right: -15px;
    top: 65px;
    animation: satellite-bob-key-2 4.5s ease-in-out infinite alternate;
}

    .bubble-inc .bubble-icon-holder {
        background: linear-gradient(135deg, var(--violet-500) 0%, #6d28d9 100%);
    }

.bubble-lib {
    left: 65px;
    bottom: 15px;
    animation: satellite-bob-key-3 5s ease-in-out infinite alternate;
}

    .bubble-lib .bubble-icon-holder {
        background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    }

@keyframes satellite-bob-key-1 {
    0% {
        transform: translateY(0) rotate(-1deg);
    }

    100% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes satellite-bob-key-2 {
    0% {
        transform: translateY(0) rotate(1deg);
    }

    100% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

@keyframes satellite-bob-key-3 {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-10px) scale(0.98);
    }
}

@media (max-width: 991px) {
    .hero-premium-wrapper {
        padding: 70px 0;
    }

    .hero-main-title {
        font-size: 2.6rem;
        letter-spacing: -0.5px;
    }

    .hero-hub-scene {
        margin-top: 50px;
        transform: scale(0.85);
    }
}

/* ==========================================================================
   BARRA DE NAVEGAÇÃO PREMIUM (Shared/_Navbar.cshtml - Desktop & Mobile)
   ========================================================================== */

/* Navbar Desktop Premium Layout */
/*.navbar-desktop-premium {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 40px) !important;
    max-width: 1200px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex;
    align-items: center !important;
    padding: 8px 24px !important;
    z-index: 1050 !important;
}*/

.navbar-desktop-premium {
    width: 100% !important;
    background: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 0px !important;
    /*box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05) !important;*/
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex;
    align-items: center !important;
    padding: 8px 24px !important;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}



.navbar-desktop-premium {
    /*    top: 0px !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0px !important;*/
    /*--globalnav-backdrop-filter: saturate(180%) blur(20px);
    --globalnav-background: rgba(250, 250, 252, .8);*/
}

    /*.navbar-desktop-premium:hover {
        background: rgba(255, 255, 255, 0.82) !important;
        box-shadow: 0 15px 45px rgba(99, 102, 241, 0.08) !important;
        border-color: rgba(255, 255, 255, 0.6) !important;
    }*/

    /* Scrolled/Fixed compact state */
    /*.navbar-desktop-premium.navbar-desktop-premium-fixed {
        top: 12px !important;
        max-width: 980px !important;
        padding: 6px 20px !important;
        background: rgba(255, 255, 255, 0.85) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
        border-color: rgba(99, 102, 241, 0.15) !important;
    }*/

    .navbar-desktop-premium.navbar-desktop-premium-fixed {
        top: 0px !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0px !important;
        padding: 6px 24px !important;
        background: rgba(255, 255, 255, 0.85) !important;
        /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;*/
        border-bottom: solid 1px rgba(99, 102, 241, 0.15) !important;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }

        .navbar-desktop-premium.navbar-desktop-premium-fixed:hover {
            background: #fff !important;
        }

        /* Make logo slightly smaller in compact state */
        .navbar-desktop-premium.navbar-desktop-premium-fixed .navbar-logo-img {
            height: 48px !important;
        }

.navbar-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Middle Navigation Menu list */
.navbar-nav-premium-container {
    display: flex;
    align-items: center;
}

.navbar-nav-premium {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link-premium {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-600) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    position: relative;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

    .nav-link-premium i {
        font-size: 1rem;
        color: var(--slate-400);
        transition: color 0.25s ease;
    }

    .nav-link-premium::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.25s ease;
    }

    .nav-link-premium:hover {
        color: var(--primary-hover) !important;
    }

        .nav-link-premium:hover i {
            color: var(--primary-color);
        }

        .nav-link-premium:hover::after {
            width: 100%;
        }

.dropdown-toggle::after {
    display: none !important;
}

/* User Area & Button Customizations */
.navbar-auth-premium {
    display: flex;
    align-items: center;
}

.btn-login-premium {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-600) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

    .btn-login-premium:hover {
        color: var(--primary-hover) !important;
    }

.btn-success-premium {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%) !important;
    color: var(--white) !important;
    font-size: 0.88rem;
    font-weight: 750;
    border: none !important;
    border-radius: 10px;
    padding: 10px 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.18);
    text-decoration: none !important;
}

    .btn-success-premium:hover {
        transform: translateY(-1.5px);
        box-shadow: 0 6px 15px rgba(16, 185, 129, 0.25);
        color: var(--white) !important;
    }

.user-avatar-icon {
    color: var(--slate-400);
    transition: color 0.25s ease;
}

    .user-avatar-icon:hover {
        color: var(--warning-hover);
    }

/* ==========================================================================
   MOBILE HEADER & DRAWER STYLING
   ========================================================================== */

.navbar-mobile {
    height: 75px;
    background-color: var(--white) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1030;
}

.mobile-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* Elegant burger menu button with active transitions */
.burger-menu-premium {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 24px;
    height: auto;
    padding: 8px 0;
}

.burger-line-premium {
    height: 2px;
    background-color: var(--slate-600);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.burger-menu-premium .burger-line-premium:nth-child(1) {
    width: 100%;
}

.burger-menu-premium .burger-line-premium:nth-child(2) {
    width: 75%;
    align-self: flex-end;
}

.burger-menu-premium .burger-line-premium:nth-child(3) {
    width: 50%;
    align-self: flex-end;
}

/* Burger Animation states */
.burger-menu-premium.active .burger-line-premium:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 100%;
}

.burger-menu-premium.active .burger-line-premium:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger-menu-premium.active .burger-line-premium:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 100%;
}

/* Mobile Drawer Close Button */
.drawer-close-btn-premium {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--slate-100);
    color: var(--slate-600);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

    .drawer-close-btn-premium:hover {
        background-color: #fee2e2;
        color: var(--danger-color);
    }

/* ==========================================================================
   MOBILE DRAWER PREMIUM (Shared/_Navbar.cshtml - Drawer Details)
   ========================================================================== */

/* User Initial Avatar Bubble instead of Icons */
.drawer-user-initial {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.08);
    color: var(--warning-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.05);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    z-index: 1040;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .mobile-drawer.active {
        right: 0;
    }

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 15px 0;
}

.drawer-menu {
    list-style: none;
    padding: 10px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-item {
    width: 100%;
}

.drawer-link {
    font-size: 1.02rem;
    font-weight: 750;
    color: #1e293b;
    text-decoration: none !important;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    transition: all 0.25s ease;
}

    .drawer-link:hover,
    .drawer-link.active {
        background-color: var(--slate-50);
        color: var(--warning-hover);
    }

.drawer-chevron-icon {
    font-size: 0.8rem;
    color: var(--slate-400);
    transition: transform 0.3s ease;
}

.submenu-trigger.active .drawer-chevron-icon {
    transform: rotate(180deg);
    color: var(--warning-hover);
}

/* Accordion Submenu Layout */
.drawer-submenu {
    list-style: none;
    padding: 4px 0 8px 12px;
    margin: 4px 0 0 16px;
    border-left: 2px solid var(--slate-100);
    display: none;
}

    .drawer-submenu.open {
        display: block;
    }

.drawer-link-sub {
    font-size: 0.92rem;
    font-weight: 650;
    color: var(--slate-500);
    text-decoration: none !important;
    padding: 8px 16px;
    display: block;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .drawer-link-sub:hover {
        background-color: var(--slate-50);
        color: var(--warning-hover);
    }

/* Drawer Action Footers */
.drawer-footer {
    padding: 24px;
    background-color: #fafbfc;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-drawer-login {
    background: var(--slate-100);
    color: var(--slate-600) !important;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    display: block;
}

    .btn-drawer-login:hover {
        background: var(--slate-200);
        color: #1e293b !important;
    }

.btn-drawer-signup {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: var(--white) !important;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.15);
    display: block;
}

    .btn-drawer-signup:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 15px rgba(16, 185, 129, 0.22);
    }

body.drawer-open {
    overflow: hidden;
}

/* ==========================================================================
   PORTAL DE CURSOS EAD (Curso/Index.cshtml - ModernizaÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â£o Premium)
   ========================================================================== */

/* Showcase Header for Cursos */
.breadcrumb-premium-showcase {
    background: linear-gradient(135deg, var(--slate-900) 0%, #1e293b 100%);
    padding: 70px 0 65px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb-radial-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

    .breadcrumb-radial-glow.glow-blue {
        width: 320px;
        height: 320px;
        background: var(--blue-500);
        left: -50px;
        top: -50px;
    }

    .breadcrumb-radial-glow.glow-violet {
        width: 380px;
        height: 380px;
        background: var(--violet-500);
        right: -80px;
        bottom: -80px;
    }

.breadcrumb-premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    z-index: 2;
    position: relative;
}

    .breadcrumb-premium-list li a {
        color: var(--slate-400);
        text-decoration: none !important;
        transition: color 0.2s ease;
    }

        .breadcrumb-premium-list li a:hover {
            color: var(--white);
        }

    .breadcrumb-premium-list li::after {
        content: '/';
        color: var(--slate-600);
        margin-left: 8px;
    }

    .breadcrumb-premium-list li.active {
        color: var(--warning-color);
        font-weight: 750;
    }

        .breadcrumb-premium-list li.active::after {
            display: none;
        }

.breadcrumb-premium-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 10px 0 6px 0;
    letter-spacing: -1px;
    z-index: 2;
    position: relative;
}

.breadcrumb-premium-subtitle {
    font-size: 1.05rem;
    color: var(--slate-400);
    margin: 0;
    max-width: 650px;
    z-index: 2;
    position: relative;
    line-height: 1.5;
}

/* Course badges and titles */
.course-premium-badge-section {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--warning-hover);
    background: rgba(245, 158, 11, 0.08);
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-block;
}

.course-section-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.8px;
}

/* Enrolled Showcase Rows */
.course-showcase-row {
    background: var(--slate-50);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid var(--slate-200);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.course-showcase-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

    .course-showcase-img-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

.course-showcase-img {
    height: 360px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-showcase-img-box:hover .course-showcase-img {
    transform: scale(1.03);
}

.course-showcase-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
}

.course-showcase-progress-floating {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
}

    .course-showcase-progress-floating .progress-lbl {
        color: var(--white);
        font-size: 0.82rem;
        font-weight: 700;
    }

/* Detail Section Content */
.course-showcase-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.course-showcase-teacher {
    font-size: 0.92rem;
    color: var(--slate-500);
}

    .course-showcase-teacher .lbl-teacher {
        font-weight: 750;
        color: var(--slate-600);
    }

    .course-showcase-teacher .val-teacher {
        color: var(--slate-900);
    }

.course-showcase-desc {
    font-size: 0.98rem;
    color: var(--slate-600);
    line-height: 1.65;
}

.course-showcase-progress-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
}

    .course-showcase-progress-card .progress-title {
        font-size: 0.85rem;
        font-weight: 800;
        color: var(--slate-600);
    }

    .course-showcase-progress-card .progress-ratio {
        font-size: 0.85rem;
        color: var(--slate-400);
        font-weight: 750;
    }

    .course-showcase-progress-card .highlight-count {
        color: var(--warning-hover);
    }

.progress-premium-tracker {
    background-color: var(--slate-300) !important;
    border-radius: 10px;
    overflow: hidden;
}

.bg-purple-gradient {
    background: linear-gradient(135deg, #a855f7 0%, var(--violet-600) 100%) !important;
}

.bg-blue-gradient {
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%) !important;
}

.lbl-date-header {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.val-date {
    display: block;
    font-size: 0.98rem;
    font-weight: 800;
    color: #1e293b;
    margin-top: 2px;
}

.text-success-val {
    color: var(--success-color) !important;
}

.text-danger-val {
    color: var(--danger-color) !important;
}

.btn-premium-showcase-action {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: var(--white) !important;
    font-size: 0.88rem;
    font-weight: 800;
    padding: 15px 28px;
    border-radius: 12px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.18);
    text-decoration: none !important;
    cursor: pointer;
}

    .btn-premium-showcase-action:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    }

    .btn-premium-showcase-action.disabled {
        background: var(--slate-300) !important;
        box-shadow: none !important;
        cursor: not-allowed;
    }

.btn-premium-certificate-action {
    background: var(--white);
    color: var(--warning-hover) !important;
    border: 1px solid rgba(245, 158, 11, 0.3);
    font-size: 0.85rem;
    font-weight: 750;
    padding: 12px 24px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

    .btn-premium-certificate-action:hover {
        background: rgba(245, 158, 11, 0.04);
        border-color: var(--warning-hover);
    }

/* ==========================================================================
   CARDS DE CURSOS DISPONÃƒÆ’Ã‚ÂVEIS (Grid Catalog)
   ========================================================================== */

.card-premium-curso {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-premium-curso-anchor {
    text-decoration: none !important;
    display: block;
    height: 100%;
}

    .card-premium-curso-anchor:hover .card-premium-curso {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
        border-color: rgba(245, 158, 11, 0.15);
    }

.card-premium-curso-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-premium-curso-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-premium-curso-anchor:hover .card-premium-curso-img {
    transform: scale(1.04);
}

.card-premium-curso-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.4) 100%);
}

.card-premium-curso-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 750;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-premium-curso-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.4;
    transition: color 0.25s ease;
    /*display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;*/
}

.card-premium-curso-anchor:hover .card-premium-curso-title {
    color: var(--warning-hover);
}

.card-premium-curso-desc {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.2em;
}

.card-premium-curso-teacher {
    font-size: 0.82rem;
    color: var(--slate-500);
}

    .card-premium-curso-teacher .lbl-teacher {
        font-weight: 750;
        color: var(--slate-600);
    }

    .card-premium-curso-teacher .val-teacher {
        color: var(--slate-900);
    }

.card-premium-curso-footer {
    margin-top: auto;
}

    .card-premium-curso-footer .action-trigger {
        font-size: 0.82rem;
        font-weight: 800;
        color: var(--warning-hover);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

/* Empty State Styling */
.alert-premium-empty {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

    .alert-premium-empty .empty-icon {
        font-size: 3rem;
        color: var(--slate-300);
    }

.max-w-600 {
    max-width: 600px;
}

@media (max-width: 991px) {
    .breadcrumb-premium-showcase {
        padding: 50px 0;
    }

    .breadcrumb-premium-title {
        font-size: 2rem;
    }

    .course-showcase-row {
        padding: 20px;
    }

    .course-showcase-title {
        font-size: 1.45rem;
        margin-top: 15px;
    }

    .course-showcase-img {
        height: 250px;
    }
}

/* ==========================================================================
   ALUNO PANEL USER HEADER (Shared/_MeuUsuario.cshtml)
   ========================================================================== */

.user-header {
    background: linear-gradient(135deg, var(--slate-900) 0%, #1e293b 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.user-avatar-wrapper {
    position: relative;
    border-radius: 50%;
    width: 85px;
    height: 85px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .user-avatar-wrapper:hover {
        border-color: var(--warning-color);
        transform: scale(1.04);
    }

.user-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-badge {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--warning-color);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-block;
}

.user-header-title {
    font-size: 2.2rem;
    font-weight: 750;
    color: var(--white);
    margin: 5px 0 0 0;
    letter-spacing: -0.8px;
}

.user-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .user-nav-links li a {
        font-size: 0.88rem;
        font-weight: 750;
        color: var(--slate-300) !important;
        text-decoration: none !important;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.2s ease;
    }

        .user-nav-links li a i {
            color: var(--slate-400);
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .user-nav-links li a:hover {
            color: var(--warning-color) !important;
        }

            .user-nav-links li a:hover i {
                color: var(--warning-color);
            }

.bg-amber-gradient {
    background: linear-gradient(90deg, var(--warning-color) 0%, var(--warning-hover) 100%) !important;
}

.calls-badge-amber {
    color: var(--warning-hover) !important;
    background: rgba(245, 158, 11, 0.08) !important;
    border: 1px solid rgba(245, 158, 11, 0.15) !important;
}

/* ==========================================================================
   CURSO INTERNA DETALHADO (Curso/Curso.cshtml - ModernizaÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â£o Premium)
   ========================================================================== */

/* Preview Alert Box */
.alert-premium-preview {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border-radius: 14px;
    font-size: 0.92rem;
    padding: 18px 24px;
    z-index: 2;
    position: relative;
    font-weight: 650;
    line-height: 1.5;
}

.text-warning-link {
    color: var(--warning-color);
    font-weight: 750;
    text-decoration: underline !important;
    transition: color 0.2s ease;
}

    .text-warning-link:hover {
        color: var(--warning-hover);
    }

/* Premium Accordion Modulo */
.accordion-premium-modulo {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.accordion-premium-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .accordion-premium-card:hover {
        border-color: rgba(245, 158, 11, 0.15);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    }

.accordion-premium-header {
    background: transparent;
    padding: 0;
    margin: 0;
}

.accordion-premium-trigger {
    width: 100%;
    border: none;
    background: transparent;
    padding: 24px 30px;
    outline: none !important;
    display: flex;
    align-items: center;
    text-align: left;
    transition: background-color 0.25s ease;
    cursor: pointer;
}

    .accordion-premium-trigger:hover {
        background-color: #fafbfc;
    }

/* Giant Number Styling */
.accordion-modulo-number {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(245, 158, 11, 0.15);
    letter-spacing: -3px;
    transition: color 0.3s ease;
    display: block;
}

.accordion-premium-trigger:not(.collapsed) .accordion-modulo-number {
    color: var(--warning-hover);
}

/* Header Text elements */
.accordion-modulo-badge {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--warning-hover);
    background: rgba(245, 158, 11, 0.08);
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
}

.accordion-modulo-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.5px;
}

.accordion-modulo-summary {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--slate-500);
}

/* Arrow Chevron rotation */
.accordion-chevron-icon {
    font-size: 1.15rem;
    color: var(--slate-400);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-premium-trigger:not(.collapsed) .accordion-chevron-icon {
    transform: rotate(180deg);
    color: var(--warning-hover);
}

/* Inside module lessons area */
.accordion-premium-body {
    background: #fafbfc;
}

.timeline-premium-aulas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.timeline-premium-aula-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    transition: all 0.25s ease;
}

    .timeline-premium-aula-item:hover {
        border-color: rgba(245, 158, 11, 0.25);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    }

.aula-premium-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate-400);
    display: block;
}

.aula-premium-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 0;
}

.aula-premium-link {
    color: var(--slate-900);
    text-decoration: none !important;
    transition: color 0.2s ease;
}

    .aula-premium-link:hover {
        color: var(--warning-hover);
    }

.disabled-lesson {
    color: var(--slate-400);
}

.aula-premium-summary {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--slate-500);
}

.favorite-premium-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 12px;
    /* Margin space between heart button and watch lesson button */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

    .favorite-premium-container:hover {
        background: var(--slate-100);
        border-color: var(--slate-300);
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    }

    .favorite-premium-container.favorited-active {
        background: #fee2e2;
        border-color: #fecaca;
    }

        .favorite-premium-container.favorited-active:hover {
            background: #fecaca;
            border-color: #fca5a5;
        }

.favorito-icon {
    font-size: 1.12rem !important;
    color: var(--slate-400);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: inline-block;
    cursor: pointer;
    line-height: 1;
}

    .favorito-icon:hover {
        transform: scale(1.15);
    }

    .favorito-icon.favorited {
        color: var(--danger-color) !important;
        animation: heart-pop 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

@keyframes heart-pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.35);
    }

    100% {
        transform: scale(1);
    }
}

/* Actions trigger elements inside lessons list */
.btn-aula-premium {
    background: var(--slate-100);
    color: var(--slate-600) !important;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: none;
}

    .btn-aula-premium:hover {
        background: var(--slate-200);
        color: var(--slate-900) !important;
    }

.btn-aula-concluido {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success-color) !important;
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

    .btn-aula-concluido:hover {
        background: rgba(16, 185, 129, 0.12);
    }

/* Mobile optimizations */
@media (max-width: 767px) {
    .accordion-premium-trigger {
        padding: 20px;
    }

    .accordion-modulo-number {
        font-size: 3.5rem;
    }

    .accordion-modulo-title {
        font-size: 1.15rem;
    }

    .timeline-premium-aula-item {
        padding: 15px !important;
    }

    .btn-aula-premium,
    .btn-aula-concluido {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

/* ==========================================================================
   CLASSROOM THEATRE DARK MODE (Aula/Index.cshtml - ModernizaÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â£o Premium)
   ========================================================================== */

.classroom-theatre-layout {
    background: linear-gradient(135deg, #070b14 0%, var(--slate-900) 100%);
    padding: 45px 0 50px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.theatre-radial-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.15;
    filter: blur(120px);
    z-index: 1;
}

    .theatre-radial-glow.glow-blue {
        background: radial-gradient(circle, var(--blue-500) 0%, transparent 70%);
        top: -15%;
        left: -8%;
    }

    .theatre-radial-glow.glow-violet {
        background: radial-gradient(circle, var(--violet-500) 0%, transparent 70%);
        bottom: -20%;
        right: 2%;
    }

.classroom-theatre-layout .relative-content {
    z-index: 2;
    position: relative;
}

/* Theatre Breadcrumbs Override */
.classroom-theatre-layout .breadcrumb-premium-list li a {
    color: rgba(255, 255, 255, 0.5) !important;
}

    .classroom-theatre-layout .breadcrumb-premium-list li a:hover {
        color: var(--warning-color) !important;
    }

.classroom-theatre-layout .breadcrumb-premium-list li::after {
    color: rgba(255, 255, 255, 0.25);
}

.classroom-theatre-layout .breadcrumb-premium-list li.active {
    color: rgba(255, 255, 255, 0.8);
}

/* Lesson Header & Badges */
.theatre-lesson-index-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--warning-color);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
}

.theatre-lesson-title {
    font-size: 1.95rem;
    font-weight: 850;
    color: var(--white);
    letter-spacing: -0.8px;
    line-height: 1.25;
}

/* Circular glass favorite button for dark background */
.classroom-theatre-layout .toggle-favorito {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

    .classroom-theatre-layout .toggle-favorito:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-1px);
    }

    .classroom-theatre-layout .toggle-favorito .favorito-icon {
        color: rgba(255, 255, 255, 0.5) !important;
        font-size: 1.1rem !important;
    }

        .classroom-theatre-layout .toggle-favorito .favorito-icon:hover {
            color: var(--danger-color) !important;
        }

    .classroom-theatre-layout .toggle-favorito.favorited-active {
        background: rgba(239, 68, 68, 0.15);
        border-color: rgba(239, 68, 68, 0.35);
    }

        .classroom-theatre-layout .toggle-favorito.favorited-active .favorito-icon {
            color: var(--danger-color) !important;
        }

/* Theatre Action Complete & Pending */
.btn-theatre-action-complete {
    background: linear-gradient(90deg, var(--success-color) 0%, #059669 100%);
    color: var(--white) !important;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

    .btn-theatre-action-complete:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
    }

.btn-theatre-action-pending {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    cursor: pointer;
}

    .btn-theatre-action-pending:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-1px);
    }

/* Player Frame Screen (Flat, No Border/Radius) */
.theatre-video-screen {
    background: #020617;
    border-radius: 0px !important;
    border: none !important;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

    .theatre-video-screen iframe,
    .theatre-video-screen video {
        border: none !important;
        display: block;
        width: 100%;
    }

.no-video-screen {
    min-height: 380px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Immersive modular Sidebar playlist */
.class-sidebar-premium {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    height: 100%;
}

.sidebar-premium-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 20px;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.scrollable-playlist-area {
    max-height: 410px;
    overflow-y: auto;
}

    .scrollable-playlist-area::-webkit-scrollbar {
        width: 4px;
    }

    .scrollable-playlist-area::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.01);
    }

    .scrollable-playlist-area::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.12);
        border-radius: 4px;
    }

.playlist-modulo-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.playlist-modulo-trigger {
    background: transparent;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .playlist-modulo-trigger:hover {
        background-color: rgba(255, 255, 255, 0.02);
    }

.playlist-modulo-index {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--warning-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.playlist-modulo-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--slate-100);
}

.playlist-chevron {
    color: var(--slate-500);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.playlist-modulo-trigger:not(.collapsed) .playlist-chevron {
    transform: rotate(180deg);
    color: var(--warning-color);
}

.playlist-lessons-list {
    background: rgba(0, 0, 0, 0.15);
    margin: 0;
    padding: 6px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.playlist-lesson-li {
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.playlist-lesson-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    text-decoration: none !important;
    color: var(--slate-400);
    transition: all 0.2s ease;
}

.playlist-lesson-li:hover .playlist-lesson-link {
    color: var(--white);
    background: rgba(255, 255, 255, 0.02);
}

.playlist-lesson-li.active {
    background: rgba(245, 158, 11, 0.06);
    border-left-color: var(--warning-color);
}

    .playlist-lesson-li.active .playlist-lesson-link {
        color: var(--warning-color) !important;
    }

.playlist-lesson-num {
    font-size: 0.65rem;
    font-weight: 800;
    display: block;
    letter-spacing: 0.5px;
    color: var(--slate-500);
}

.playlist-lesson-name {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}

.playlist-fav-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.favorito-icon-sidebar {
    color: var(--slate-600);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .favorito-icon-sidebar:hover {
        color: var(--danger-color);
        transform: scale(1.18);
    }

    .favorito-icon-sidebar.favorited {
        color: var(--danger-color) !important;
    }

.playlist-check-holder {
    margin-left: auto;
    color: var(--success-color);
    font-size: 0.8rem;
}

@media (max-width: 991px) {
    .classroom-theatre-layout {
        padding: 30px 0;
    }

    .theatre-lesson-title {
        font-size: 1.6rem;
    }

    .class-sidebar-premium {
        margin-top: 15px;
        min-height: 380px;
    }
}

/* ==========================================================================
   INTEGRATED DARK DISCUSSION FORUM (FÃƒÆ’Ã¢â‚¬Å“RUM DE DÃƒÆ’Ã…Â¡VIDAS)
   ========================================================================== */

#comentarios-section {
    background: transparent !important;
    padding: 40px 0 0 0 !important;
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-top: 50px;
    box-shadow: none !important;
    color: var(--white);
}

    #comentarios-section h3 {
        color: var(--white) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 15px;
    }

    #comentarios-section label {
        color: var(--slate-300) !important;
    }

#form-novo-comentario {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px !important;
    padding: 24px !important;
}

    #form-novo-comentario textarea {
        background: rgba(0, 0, 0, 0.35) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

        #form-novo-comentario textarea:focus {
            border-color: var(--warning-color) !important;
            box-shadow: 0 0 10px rgba(245, 158, 11, 0.15) !important;
            outline: none !important;
        }

        #form-novo-comentario textarea::placeholder {
            color: rgba(255, 255, 255, 0.3) !important;
        }

    #form-novo-comentario button {
        background: linear-gradient(90deg, var(--warning-color) 0%, var(--warning-hover) 100%) !important;
        border: none !important;
        color: var(--white) !important;
        transition: all 0.25s ease !important;
    }

        #form-novo-comentario button:hover {
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3) !important;
        }

.comentario {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    transition: all 0.2s ease;
}

    .comentario:hover {
        border-color: rgba(255, 255, 255, 0.1) !important;
        background: rgba(255, 255, 255, 0.03) !important;
    }

    .comentario h6 {
        color: var(--white) !important;
    }

    .comentario p.text-secondary {
        color: var(--slate-300) !important;
    }

    .comentario .text-muted {
        color: var(--slate-500) !important;
    }

/* Reply form styles inside comments feed */
.form-resposta {
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
}

    .form-resposta textarea {
        background: rgba(0, 0, 0, 0.3) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

        .form-resposta textarea:focus {
            border-color: var(--warning-color) !important;
        }

    .form-resposta button.btn-primary {
        background: var(--warning-color) !important;
        border: none !important;
    }

    .form-resposta button.btn-light {
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
        border: none !important;
    }

/* Nested responses answers feed */
.replies-wrapper {
    border-left-color: rgba(255, 255, 255, 0.08) !important;
}

.resposta {
    background: rgba(255, 255, 255, 0.01) !important;
    border-left: 3px solid var(--warning-color) !important;
    border-radius: 4px !important;
    padding: 12px !important;
}

    .resposta h6 {
        color: var(--slate-100) !important;
    }

    .resposta p.text-secondary {
        color: var(--slate-300) !important;
    }

    .resposta .text-muted {
        color: var(--slate-500) !important;
    }

/* Dark Support Materials Cards Integration */
.dark-integrated-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: var(--white) !important;
    transition: all 0.25s ease !important;
}

    .dark-integrated-card:hover {
        background: rgba(255, 255, 255, 0.06) !important;
        border-color: rgba(245, 158, 11, 0.3) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }

    .dark-integrated-card .file-info .file-name,
    .dark-integrated-card .link-content .link-title {
        color: var(--white) !important;
    }

    .dark-integrated-card .file-action-label,
    .dark-integrated-card .link-content .link-url {
        color: var(--slate-400) !important;
    }

    .dark-integrated-card .file-icon-wrapper,
    .dark-integrated-card .link-icon-wrapper {
        background: rgba(255, 255, 255, 0.03) !important;
        color: var(--warning-color) !important;
    }

/* Dark Question Form & Professor feedback Integration */
.dark-question-form {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

    .dark-question-form textarea {
        background: rgba(0, 0, 0, 0.35) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

        .dark-question-form textarea:focus {
            border-color: var(--warning-color) !important;
            box-shadow: 0 0 10px rgba(245, 158, 11, 0.2) !important;
        }

.dark-professor-answer {
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Glassmorphic Forum Empty Placeholder Card */
.empty-forum-placeholder {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px dashed rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    padding: 45px 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.empty-forum-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.08) !important;
    color: var(--warning-color) !important;
    font-size: 1.6rem !important;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.1) !important;
}

.max-width-empty {
    max-width: 480px;
}

/* Integrated Forum Section (Dark Charcoal Tone matching footer-newsletter-card) */
.theatre-forum-section-wrapper {
    background-color: #0b0d17 !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)) !important;
    padding: 60px 0 70px 0 !important;
    color: var(--white) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: relative;
    z-index: 5;
}

/* ==========================================================================
   DYNAMIC CONTENT PAGES (Content/Index.cshtml - Institutional & Dynamic Pages)
   ========================================================================== */

/* Dynamic Content Header Wrapper (Premium Glassmorphic Header) */
.content-header-wrapper {
    background-color: #0b0d17 !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 70px 0 50px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

    .content-header-wrapper .content-glow {
        position: absolute !important;
        border-radius: 50% !important;
        filter: blur(100px) !important;
        opacity: 0.12 !important;
        pointer-events: none !important;
        z-index: 1 !important;
    }

    .content-header-wrapper .content-glow-1 {
        top: -50px !important;
        left: -50px !important;
        width: 250px !important;
        height: 250px !important;
        background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%) !important;
    }

    .content-header-wrapper .content-glow-2 {
        bottom: -50px !important;
        right: 10% !important;
        width: 300px !important;
        height: 300px !important;
        background: radial-gradient(circle, var(--violet-500) 0%, transparent 70%) !important;
    }

    .content-header-wrapper .relative-content {
        position: relative !important;
        z-index: 2 !important;
    }

/* Premium Breadcrumb */
.premium-breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
}

    .premium-breadcrumb .breadcrumb-item {
        font-size: 0.88rem !important;
        color: var(--slate-400) !important;
    }

        .premium-breadcrumb .breadcrumb-item a {
            color: var(--slate-400) !important;
            text-decoration: none !important;
            transition: color 0.25s ease !important;
        }

            .premium-breadcrumb .breadcrumb-item a i {
                margin-right: 4px !important;
            }

            .premium-breadcrumb .breadcrumb-item a:hover {
                color: var(--warning-color) !important;
            }

        .premium-breadcrumb .breadcrumb-item.active {
            color: var(--slate-300) !important;
            font-weight: 500 !important;
        }

        .premium-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            color: var(--slate-600) !important;
        }

/* Title Block */
.content-badge {
    background: rgba(245, 158, 11, 0.12) !important;
    color: var(--warning-color) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 4px 12px !important;
    border-radius: 50px !important;
    display: inline-block !important;
}

.content-main-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--white) !important;
    letter-spacing: -0.5px !important;
    margin: 0 !important;
    line-height: 1.25 !important;
}

/* Content Body Wrapper */
.content-body-wrapper {
    background-color: var(--slate-50) !important;
    min-height: 450px !important;
    position: relative !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

    .content-body-wrapper .relative-content {
        position: relative !important;
        z-index: 2 !important;
    }

/* Reading Card Glassmorphic */
.content-glass-card {
    background: var(--white) !important;
    border: 1px solid var(--slate-200) !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    color: var(--slate-700) !important;
}

.content-sub-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--slate-900) !important;
    padding-left: 14px !important;
    border-left: 4px solid var(--warning-color) !important;
    margin: 0 !important;
}

/* Rich text paragraph typography styling */
.content-rich-text {
    font-size: 1.05rem !important;
    line-height: 1.85 !important;
}

    .content-rich-text p {
        margin-bottom: 20px !important;
        color: var(--slate-700) !important;
    }

    .content-rich-text strong,
    .content-rich-text b {
        color: var(--slate-900) !important;
        font-weight: 700 !important;
    }

    .content-rich-text a {
        color: var(--warning-color) !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        transition: all 0.25s ease !important;
        border-bottom: 1px dashed rgba(245, 158, 11, 0.4) !important;
    }

        .content-rich-text a:hover {
            color: var(--warning-hover) !important;
            text-decoration: none !important;
            border-bottom-style: solid !important;
        }

    .content-rich-text ul,
    .content-rich-text ol {
        margin-bottom: 25px !important;
        padding-left: 20px !important;
    }

    .content-rich-text li {
        margin-bottom: 8px !important;
        color: var(--slate-700) !important;
    }

/* Aside navigation card */
.content-aside-card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    padding: 25px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.sticky-top-aside {
    position: sticky !important;
    top: 110px !important;
    z-index: 10 !important;
}

.aside-badge-icon {
    width: 44px !important;
    height: 44px !important;
    background: rgba(99, 102, 241, 0.15) !important;
    color: var(--violet-500) !important;
    font-size: 1.25rem !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.aside-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 15px 0 5px 0;
}

.aside-subtitle {
    font-size: 0.86rem !important;
    color: var(--slate-400) !important;
    line-height: 1.4 !important;
}

.aside-navigation-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.aside-nav-item {
    display: flex !important;
    align-items: center !important;
    padding: 12px 16px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 12px !important;
    color: var(--slate-300) !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

    .aside-nav-item:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: rgba(245, 158, 11, 0.2) !important;
        color: var(--warning-color) !important;
        transform: translateX(4px) !important;
        text-decoration: none !important;
    }

    .aside-nav-item .item-icon {
        font-size: 1.1rem !important;
        color: var(--slate-400) !important;
        margin-right: 12px !important;
        transition: color 0.25s ease !important;
    }

    .aside-nav-item:hover .item-icon {
        color: var(--warning-color) !important;
    }

    .aside-nav-item .item-label {
        font-size: 0.88rem !important;
        font-weight: 600 !important;
        flex: 1 !important;
    }

    .aside-nav-item .item-arrow {
        font-size: 0.95rem !important;
        opacity: 0.7 !important;
        transition: transform 0.25s ease !important;
    }

    .aside-nav-item:hover .item-arrow {
        transform: translateX(2px) !important;
    }

/* Aside WhatsApp support card widget */
.content-support-card {
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 20px !important;
    padding: 25px !important;
    margin-top: 25px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    text-align: center !important;
}

.support-avatar-group {
    position: relative !important;
    display: inline-block !important;
}

.support-avatar {
    font-size: 2.8rem !important;
    color: var(--slate-400) !important;
}

.support-status-dot {
    position: absolute !important;
    bottom: 4px !important;
    right: 2px !important;
    width: 10px !important;
    height: 10px !important;
    background-color: #25d366 !important;
    border: 2px solid #0b0d17 !important;
    border-radius: 50% !important;
}

.support-title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin: 10px 0 5px 0 !important;
}

.support-text {
    font-size: 0.84rem !important;
    color: var(--slate-400) !important;
    line-height: 1.5 !important;
}

.btn-whatsapp-support-premium {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #25d366 !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: none !important;
}

    .btn-whatsapp-support-premium:hover {
        background: #20ba5a !important;
        color: var(--white) !important;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25) !important;
        transform: translateY(-2px) !important;
        text-decoration: none !important;
    }

@media (max-width: 991px) {
    .content-header-wrapper {
        padding: 50px 0 40px 0 !important;
    }

    .content-main-title {
        font-size: 2.1rem !important;
    }

    .content-body-wrapper {
        padding: 30px 0 !important;
    }

    .content-glass-card {
        padding: 30px 20px !important;
    }

    .content-sub-title {
        font-size: 1.3rem !important;
    }

    .content-rich-text {
        font-size: 1rem !important;
    }

    .sticky-top-aside {
        position: relative !important;
        top: 0 !important;
    }
}

/* ==========================================================================
   QUEM SOMOS - WIDGETS HIGHLIGHTS SECTION (Below Pillars)
   ========================================================================== */

.about-widgets-highlight-section {
    background-color: #0b0d17 !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 24px !important;
    padding: 40px 20px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.about-nav-aside-card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
}

.about-aside-badge-icon {
    width: 42px !important;
    height: 42px !important;
    background: rgba(139, 92, 246, 0.15) !important;
    color: #a78bfa !important;
    font-size: 1.15rem !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.about-aside-title {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin: 15px 0 5px 0 !important;
}

.about-aside-subtitle {
    font-size: 0.85rem !important;
    color: var(--slate-400) !important;
    line-height: 1.4 !important;
}

.about-aside-navigation-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.about-aside-nav-item {
    display: flex !important;
    align-items: center !important;
    padding: 10px 14px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 10px !important;
    color: var(--slate-300) !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

    .about-aside-nav-item:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: rgba(245, 158, 11, 0.2) !important;
        color: var(--warning-color) !important;
        transform: translateX(4px) !important;
        text-decoration: none !important;
    }

    .about-aside-nav-item .item-icon {
        font-size: 1.05rem !important;
        color: var(--slate-400) !important;
        margin-right: 10px !important;
        transition: color 0.25s ease !important;
    }

    .about-aside-nav-item:hover .item-icon {
        color: var(--warning-color) !important;
    }

    .about-aside-nav-item .item-label {
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        flex: 1 !important;
    }

    .about-aside-nav-item .item-arrow {
        font-size: 0.9rem !important;
        opacity: 0.7 !important;
        transition: transform 0.25s ease !important;
    }

    .about-aside-nav-item:hover .item-arrow {
        transform: translateX(2px) !important;
    }

.about-support-aside-card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
}

.about-support-avatar-group {
    position: relative !important;
    display: inline-block !important;
}

.about-support-avatar {
    font-size: 2.8rem !important;
    color: var(--slate-400) !important;
}

.about-support-status-dot {
    position: absolute !important;
    bottom: 4px !important;
    right: 2px !important;
    width: 10px !important;
    height: 10px !important;
    background-color: #25d366 !important;
    border: 2px solid #0b0d17 !important;
    border-radius: 50% !important;
}

.about-support-title {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin: 10px 0 5px 0 !important;
}

.about-support-text {
    font-size: 0.86rem !important;
    color: var(--slate-400) !important;
    line-height: 1.5 !important;
}

.btn-about-whatsapp-support-premium {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #25d366 !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    padding: 12px 20px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: none !important;
}

    .btn-about-whatsapp-support-premium:hover {
        background: #20ba5a !important;
        color: var(--white) !important;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25) !important;
        transform: translateY(-2px) !important;
        text-decoration: none !important;
    }

@media (max-width: 767px) {
    .about-widgets-highlight-section {
        padding: 30px 10px !important;
    }
}

/* Styling for the missing faq-accent-badge on Quem Somos page */
.faq-accent-badge {
    background: rgba(139, 92, 246, 0.08) !important;
    color: var(--violet-500) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 5px 12px !important;
    border-radius: 50px !important;
    display: inline-block !important;
    margin-bottom: 12px !important;
}

/* ==========================================================================
   MINHA CONTA - STUDENT & TEACHER PREMIUM DASHBOARD
   ========================================================================== */

.dashboard-body-wrapper {
    background-color: var(--slate-50) !important;
    position: relative !important;
    padding: 60px 0 !important;
    min-height: 500px !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

    .dashboard-body-wrapper .relative-content {
        position: relative !important;
        z-index: 2 !important;
    }

/* Premium Light Welcome Banner */
.dashboard-welcome-banner {
    background: var(--white) !important;
    border: 1px solid var(--slate-200) !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    position: relative !important;
    overflow: hidden !important;
}

.dashboard-accent-badge {
    background: rgba(99, 102, 241, 0.08) !important;
    color: var(--primary-color) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 4px 12px !important;
    border-radius: 50px !important;
    display: inline-block !important;
}

.dashboard-welcome-title {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: var(--slate-900) !important;
    letter-spacing: -0.5px !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.3 !important;
}

.dashboard-welcome-text {
    font-size: 0.95rem !important;
    color: var(--slate-600) !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

.dashboard-quick-stats {
    display: inline-flex !important;
    align-items: center !important;
    background: var(--slate-100) !important;
    border: 1px solid var(--slate-200) !important;
    padding: 12px 22px !important;
    border-radius: 16px !important;
}

    .dashboard-quick-stats .stat-icon {
        font-size: 1.2rem !important;
        color: var(--warning-color) !important;
        margin-right: 10px !important;
    }

    .dashboard-quick-stats .stat-label {
        font-size: 0.84rem !important;
        font-weight: 700 !important;
        color: var(--slate-900) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

/* Premium Light Dashboard Action Card */
.dashboard-premium-card {
    background: var(--white) !important;
    border: 1px solid var(--slate-200) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

    .dashboard-premium-card:hover {
        transform: translateY(-5px) !important;
        border-color: rgba(99, 102, 241, 0.35) !important;
        box-shadow: 0 15px 35px rgba(99, 102, 241, 0.08) !important;
        text-decoration: none !important;
    }

    .dashboard-premium-card .card-icon-wrapper {
        width: 54px !important;
        height: 54px !important;
        background: rgba(139, 92, 246, 0.08) !important;
        color: var(--violet-500) !important;
        font-size: 1.5rem !important;
        border-radius: 14px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 22px !important;
        transition: all 0.3s ease !important;
        border: 1px solid rgba(139, 92, 246, 0.04) !important;
    }

    .dashboard-premium-card:hover .card-icon-wrapper {
        background: rgba(139, 92, 246, 0.15) !important;
        color: #6d28d9 !important;
        transform: scale(1.05) !important;
    }

    .dashboard-premium-card .card-title {
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        color: var(--slate-900) !important;
        margin: 0 0 10px 0 !important;
    }

    .dashboard-premium-card .card-desc {
        font-size: 0.88rem !important;
        color: var(--slate-500) !important;
        line-height: 1.55 !important;
        margin: 0 0 25px 0 !important;
        flex: 1 !important;
    }

    .dashboard-premium-card .card-footer-action {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        color: var(--slate-600) !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        transition: all 0.25s ease !important;
    }

    .dashboard-premium-card:hover .card-footer-action {
        color: var(--primary-color) !important;
    }

    .dashboard-premium-card .card-footer-action i {
        transition: transform 0.25s ease !important;
    }

    .dashboard-premium-card:hover .card-footer-action i {
        transform: translateX(4px) !important;
    }

@media (max-width: 991px) {
    .dashboard-body-wrapper {
        padding: 40px 0 !important;
    }

    .dashboard-welcome-banner {
        padding: 30px 20px !important;
        text-align: center !important;
    }

    .dashboard-welcome-title {
        font-size: 1.5rem !important;
    }

    .dashboard-welcome-text {
        font-size: 0.9rem !important;
    }

    .dashboard-quick-stats {
        margin-top: 15px !important;
    }

    .dashboard-premium-card {
        padding: 25px 20px !important;
    }
}

/* ==========================================================================
   MEUS DADOS - STUDENT & TEACHER PREMIUM PROFILE
   ========================================================================== */

.profile-body-wrapper {
    background-color: var(--slate-50) !important;
    position: relative !important;
    padding: 60px 0 !important;
    min-height: 500px !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Sidebar navigation */
.sidebar-modern {
    background: var(--white) !important;
    border: 1px solid var(--slate-200) !important;
    border-radius: 20px !important;
    padding: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.sidebar-title {
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    color: var(--slate-400) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 12px !important;
}

.sidebar-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.sidebar-link {
    display: flex !important;
    align-items: center !important;
    padding: 10px 14px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: var(--slate-600) !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

    .sidebar-link i {
        font-size: 1rem !important;
        margin-right: 10px !important;
        width: 18px !important;
        text-align: center !important;
        color: var(--slate-500) !important;
    }

    .sidebar-link:hover {
        background: var(--slate-100) !important;
        color: var(--primary-color) !important;
        text-decoration: none !important;
    }

        .sidebar-link:hover i {
            color: var(--primary-color) !important;
        }

    .sidebar-link.text-danger:hover {
        background: #fef2f2 !important;
        color: var(--danger-color) !important;
    }

        .sidebar-link.text-danger:hover i {
            color: var(--danger-color) !important;
        }

/* Premium Profile Card */
.profile-premium-card {
    background: var(--white) !important;
    border: 1px solid var(--slate-200) !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.profile-card-header {
    border-bottom: 1px solid var(--slate-100) !important;
}

.profile-icon-badge {
    width: 50px !important;
    height: 50px !important;
    background: rgba(99, 102, 241, 0.08) !important;
    color: var(--primary-color) !important;
    font-size: 1.5rem !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.profile-card-title {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: var(--slate-900) !important;
    letter-spacing: -0.3px !important;
}

.profile-card-subtitle {
    font-size: 0.88rem !important;
    color: var(--slate-500) !important;
}

/* Profile fields */
.profile-field-item {
    background: var(--slate-50) !important;
    border: 1px solid var(--slate-200) !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
}

    .profile-field-item .field-icon {
        font-size: 1.25rem !important;
        color: var(--slate-400) !important;
        margin-right: 15px !important;
    }

    .profile-field-item .field-content {
        display: flex !important;
        flex-direction: column !important;
    }

    .profile-field-item .field-label {
        font-size: 0.72rem !important;
        font-weight: 700 !important;
        color: var(--slate-400) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        margin: 0 0 2px 0 !important;
    }

    .profile-field-item .field-value {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        color: var(--slate-900) !important;
    }

/* Actions */
.btn-profile-edit {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--primary-color) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    padding: 14px 24px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15) !important;
}

    .btn-profile-edit:hover {
        background: var(--primary-hover) !important;
        color: var(--white) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25) !important;
        text-decoration: none !important;
    }

.btn-profile-delete {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--white) !important;
    color: var(--danger-color) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    padding: 14px 24px !important;
    border-radius: 12px !important;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: 1px solid #fee2e2 !important;
    width: 100% !important;
    cursor: pointer !important;
    outline: none !important;
}

    .btn-profile-delete:hover {
        background: #fef2f2 !important;
        color: #dc2626 !important;
        border-color: #fca5a5 !important;
        transform: translateY(-2px) !important;
    }

.btn-back-dashboard {
    display: inline-flex !important;
    align-items: center !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: var(--slate-500) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    transition: color 0.25s ease !important;
}

    .btn-back-dashboard:hover {
        color: var(--primary-color) !important;
        text-decoration: none !important;
    }

@media (max-width: 991px) {
    .profile-body-wrapper {
        padding: 40px 0 !important;
    }

    .profile-premium-card {
        padding: 25px 20px !important;
    }
}

/* Profile blocked readonly field */
.profile-blocked-field {
    background: var(--slate-50) !important;
    border: 1px solid var(--slate-200) !important;
    border-radius: 14px !important;
}

.btn-profile-change-email {
    display: inline-block !important;
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--slate-200) !important;
    padding: 8px 16px !important;
    border-radius: 10px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

    .btn-profile-change-email:hover {
        background: var(--slate-100) !important;
        border-color: rgba(99, 102, 241, 0.3) !important;
        text-decoration: none !important;
        color: var(--primary-hover) !important;
    }

/* Premium Form controls */
.form-group-premium {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 20px !important;
}

.form-label-premium {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: var(--slate-700) !important;
    margin-bottom: 8px !important;
    text-align: left !important;
}

.form-input-premium {
    background: var(--slate-50) !important;
    border: 1px solid var(--slate-200) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 0.92rem !important;
    color: var(--slate-900) !important;
    outline: none !important;
    transition: all 0.25s ease !important;
}

    .form-input-premium:focus {
        background: var(--white) !important;
        border-color: var(--primary-color) !important;
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.08) !important;
    }

/* Save profile button */
.btn-profile-save {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--success-color) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    padding: 14px 24px !important;
    border-radius: 12px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15) !important;
    width: 100% !important;
    outline: none !important;
}

    .btn-profile-save:hover {
        background: #059669 !important;
        color: var(--white) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25) !important;
    }

    .btn-profile-save:disabled {
        background: var(--slate-400) !important;
        cursor: not-allowed !important;
        box-shadow: none !important;
        transform: none !important;
    }

/* Security Access Tabs */
.security-tabs-header {
    background: var(--slate-50) !important;
    border-bottom: 1px solid var(--slate-200) !important;
}

    .security-tabs-header .nav-pills {
        background: var(--slate-100) !important;
        border-radius: 14px !important;
        padding: 4px !important;
    }

        .security-tabs-header .nav-pills .nav-link {
            color: var(--slate-500) !important;
            border-radius: 10px !important;
            font-size: 0.85rem !important;
            font-weight: 700 !important;
            padding: 12px 20px !important;
            transition: all 0.25s ease !important;
            border: none !important;
            background: transparent !important;
        }

            .security-tabs-header .nav-pills .nav-link.active {
                background: var(--white) !important;
                color: var(--primary-color) !important;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04) !important;
            }

/* ==========================================================================
   PROFESSOR - COURSES & LESSONS MANAGEMENT FLOW
   ========================================================================== */

.course-card-clean {
    background: var(--white) !important;
    border: 1px solid var(--slate-200) !important;
    border-radius: 20px !important;
    padding: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s ease !important;
}

    .course-card-clean:hover {
        transform: translateY(-4px) !important;
        border-color: rgba(99, 102, 241, 0.3) !important;
        box-shadow: 0 15px 35px rgba(99, 102, 241, 0.06) !important;
    }

.course-title {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: var(--slate-900) !important;
}

.badge-course {
    background: rgba(99, 102, 241, 0.08) !important;
    color: var(--primary-color) !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 4px 10px !important;
    border-radius: 50px !important;
    display: inline-block !important;
}

/* Subtle Action Buttons */
.btn-icon-subtle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--slate-100) !important;
    color: var(--slate-600) !important;
    border: 1px solid var(--slate-200) !important;
    padding: 8px 16px !important;
    border-radius: 10px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

    .btn-icon-subtle i {
        margin-right: 6px !important;
    }

    .btn-icon-subtle:hover {
        background: var(--slate-200) !important;
        color: var(--slate-900) !important;
        text-decoration: none !important;
    }

    .btn-icon-subtle.primary {
        color: var(--primary-color) !important;
        background: rgba(99, 102, 241, 0.05) !important;
        border-color: rgba(99, 102, 241, 0.1) !important;
    }

        .btn-icon-subtle.primary:hover {
            background: rgba(99, 102, 241, 0.1) !important;
            color: var(--primary-hover) !important;
        }

    .btn-icon-subtle.success {
        color: var(--success-color) !important;
        background: rgba(16, 185, 129, 0.05) !important;
        border-color: rgba(16, 185, 129, 0.1) !important;
    }

        .btn-icon-subtle.success.active {
            color: var(--white) !important;
            background: var(--success-color) !important;
            border-color: var(--success-color) !important;
        }

            .btn-icon-subtle.success.active:hover {
                background: #059669 !important;
                color: var(--white) !important;
            }

    .btn-icon-subtle.danger {
        color: var(--danger-color) !important;
        background: rgba(239, 68, 68, 0.05) !important;
        border-color: rgba(239, 68, 68, 0.1) !important;
    }

        .btn-icon-subtle.danger:hover {
            background: rgba(239, 68, 68, 0.1) !important;
            color: #dc2626 !important;
        }

        .btn-icon-subtle.danger.active {
            color: var(--white) !important;
            background: var(--danger-color) !important;
            border-color: var(--danger-color) !important;
        }

    .btn-icon-subtle.only-icon {
        padding: 8px 12px !important;
    }

        .btn-icon-subtle.only-icon i {
            margin-right: 0 !important;
        }

/* Dashed creation card */
.dashed-creation-card {
    background: var(--white) !important;
    border: 2px dashed var(--slate-300) !important;
    border-radius: 20px !important;
    color: var(--slate-500) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

    .dashed-creation-card:hover {
        background: rgba(99, 102, 241, 0.02) !important;
        border-color: var(--primary-color) !important;
        color: var(--primary-color) !important;
        transform: scale(1.01) !important;
    }

/* Module Accordions */
.accordionModulos .card {
    border: 1px solid var(--slate-200) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.accordionModulos .card-header button {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

    .accordionModulos .card-header button i {
        transition: transform 0.3s ease !important;
    }

    .accordionModulos .card-header button[aria-expanded="true"] i {
        transform: rotate(180deg) !important;
    }

.module-actions {
    border-top: 1px solid var(--slate-200) !important;
    border-bottom: 1px solid var(--slate-200) !important;
}

/* Lesson Add content Widget bar */
.add-content-bar {
    background: var(--slate-50) !important;
    border: 1px solid var(--slate-200) !important;
}

.add-content-item {
    display: inline-flex !important;
    align-items: center !important;
    background: var(--white) !important;
    color: var(--slate-600) !important;
    border: 1px solid var(--slate-200) !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

    .add-content-item:hover {
        background: rgba(99, 102, 241, 0.08) !important;
        color: var(--primary-color) !important;
        border-color: rgba(99, 102, 241, 0.3) !important;
        text-decoration: none !important;
    }

@media (min-width: 768px) {
    .border-md-left {
        border-left: 1px solid var(--slate-200) !important;
    }
}

/* Upload Gallery Card adjustments */
.gallery-card {
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

    .gallery-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    }

/* Uploaded support files */
.file-item {
    transition: all 0.25s ease !important;
}

    .file-item:hover {
        border-color: rgba(99, 102, 241, 0.25) !important;
        box-shadow: 0 6px 15px rgba(99, 102, 241, 0.04) !important;
    }

/* Student Profile Cards */
.student-card {
    background: var(--white) !important;
    border: 1px solid var(--slate-200) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

    .student-card:hover {
        transform: translateY(-3px) !important;
        border-color: rgba(99, 102, 241, 0.25) !important;
        box-shadow: 0 10px 25px rgba(99, 102, 241, 0.05) !important;
    }

/* Toggle Status Pills */
.btn-toggle-status.active-status {
    background-color: rgba(16, 185, 129, 0.05) !important;
    color: var(--success-color) !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
}

    .btn-toggle-status.active-status:hover {
        background-color: var(--success-color) !important;
        color: var(--white) !important;
        border-color: var(--success-color) !important;
    }

.btn-toggle-status.inactive-status {
    background-color: rgba(239, 68, 68, 0.05) !important;
    color: var(--danger-color) !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

    .btn-toggle-status.inactive-status:hover {
        background-color: var(--danger-color) !important;
        color: var(--white) !important;
        border-color: var(--danger-color) !important;
    }

/* Unified Premium Navbar User Dropdown menu */
.navbar-user-avatar-initial {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover)) !important;
    color: var(--white) !important;
    font-weight: 800 !important;
    font-size: 0.88rem !important;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2) !important;
}

.navbar-user-trigger {
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

    .navbar-user-trigger:hover {
        opacity: 0.85 !important;
    }

.navbar-dropdown-premium {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid var(--slate-100) !important;
    position: absolute !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

    /* Beautiful custom caret (biquinho) pointing up */
    .navbar-dropdown-premium::before {
        content: '' !important;
        position: absolute !important;
        top: -8px !important;
        right: 24px !important;
        width: 14px !important;
        height: 14px !important;
        background-color: var(--slate-50) !important;
        border-left: 1px solid var(--slate-100) !important;
        border-top: 1px solid var(--slate-100) !important;
        transform: rotate(45deg) !important;
        z-index: 100 !important;
    }

    /* Reveal behavior on hovering container or fallback class */
    .navbar-dropdown-premium.show,
    .navbar-user-dropdown-container:hover .navbar-dropdown-premium {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .navbar-dropdown-premium .dropdown-item {
        transition: all 0.15s ease !important;
    }

        .navbar-dropdown-premium .dropdown-item:hover {
            background-color: var(--slate-50) !important;
            color: var(--primary-color) !important;
        }

        .navbar-dropdown-premium .dropdown-item.text-danger:hover {
            background-color: rgba(239, 68, 68, 0.05) !important;
            color: var(--danger-color) !important;
        }

/* User Type Option selector toggles */
.user-type-option input[type="radio"]:checked + .user-type-label {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25) !important;
}

.user-type-label {
    color: var(--slate-500) !important;
    background: transparent !important;
}

/* Modal Content and Close buttons */
.modal-content .close {
    transition: all 0.2s ease !important;
    outline: none !important;
}

    .modal-content .close:hover {
        opacity: 0.9 !important;
        color: var(--danger-color) !important;
    }




/* Cookies */
.box-cookies {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 900px;
    width: calc(100% - 20px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 9999;
    border-left: 5px solid var(--primary-soft);
    transition: all 0.3s ease;
}

.msg-cookies {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.5;
}

    .msg-cookies a {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
    }

        .msg-cookies a:hover {
            text-decoration: underline;
        }

.btn-cookies {
    background: var(--primary-soft);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

    .btn-cookies:hover {
        background: var(--primary);
    }

.hide {
    display: none;
}

@media (max-width: 576px) {
    .box-cookies {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .btn-cookies {
        width: 100%;
        text-align: center;
    }
}
/* --- Fim Cookies --- */

/* ==========================================================================
   UNIFIED EBOOK BANNER CARD - Premium Redesigned Component (Faithful to Original)
   ========================================================================== */

.ebook-unified-banner-section {
    position: relative;
    overflow: hidden;
    padding: 0px 0;
}

.ebook-unified-card {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--violet-500) 50%, var(--pink-500) 100%) !important;
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2) !important;
    position: relative;
    overflow: hidden;
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

    .ebook-unified-card:hover {
        transform: scale(1.01) !important;
        box-shadow: 0 25px 55px rgba(139, 92, 246, 0.35) !important;
    }

/* Atmospheric Glows inside Card */
.ebook-unified-card-glow-1 {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%) !important;
    z-index: 1;
    pointer-events: none;
}

.ebook-unified-card-glow-2 {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%) !important;
    z-index: 1;
    pointer-events: none;
}

.ebook-unified-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    padding: 6px 14px !important;
    border-radius: 99px !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ebook-unified-title {
    font-family: var(--font-outfit) !important;
    font-weight: 700 !important;
    font-size: 2.3rem !important;
    color: var(--white) !important;
    line-height: 1.25 !important;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.ebook-unified-text {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 25px;
}

/* Bullet Ebook List styling */
.ebook-unified-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.ebook-unified-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 15px !important;
    border-radius: 16px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

    .ebook-unified-item:hover {
        background: rgba(255, 255, 255, 0.14) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
        transform: translateX(4px) !important;
    }

.ebook-unified-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 1.1rem !important;
    flex-shrink: 0;
}

.ebook-unified-item-title {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin-bottom: 4px;
    display: block;
}

.ebook-unified-item-downloads {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Action Button (White background, violet text) */
.btn-ebook-unified {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;
    background: var(--white) !important;
    color: var(--violet-500) !important;
    font-family: var(--font-outfit) !important;
    /*font-weight: 800 !important;
    font-size: 1rem !important;*/
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

    .btn-ebook-unified:hover {
        transform: translateY(-3px) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    }

    .btn-ebook-unified i {
        transition: transform 0.2s ease !important;
    }

    .btn-ebook-unified:hover i {
        transform: translateX(4px) !important;
    }

/* Right Side: Visual Scene & Book Mockup */
.ebook-unified-visual-scene {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.ebook-unified-visual-card {
    position: relative;
    width: 280px;
    height: 320px;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    backdrop-filter: blur(8px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.ebook-unified-card-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%) !important;
    filter: blur(20px) !important;
    z-index: 1;
}

.ebook-unified-header-accent {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2) !important;
    z-index: 2;
}

.ebook-unified-book-mockup {
    position: relative;
    width: 100px;
    height: 140px;
    z-index: 3;
    perspective: 1000px;
    transform: rotateY(-15deg) rotateX(10deg) !important;
    transition: all 0.3s ease !important;
}

.ebook-unified-book-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px 8px 8px 4px !important;
}

.ebook-unified-book-layer-1 {
    background: var(--white) !important;
    z-index: 3;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2) !important;
    border-left: 3px solid rgba(139, 92, 246, 0.3) !important;
}

.ebook-unified-book-layer-2 {
    background: rgba(255, 255, 255, 0.8) !important;
    z-index: 2;
    transform: translate(-3px, 3px) !important;
    width: calc(100% - 2px) !important;
}

.ebook-unified-book-layer-3 {
    background: rgba(255, 255, 255, 0.5) !important;
    z-index: 1;
    transform: translate(-6px, 6px) !important;
}

.ebook-unified-visual-card:hover .ebook-unified-book-mockup {
    transform: rotateY(-5deg) rotateX(5deg) scale(1.05) !important;
}

.ebook-unified-visual-card:hover .ebook-unified-book-layer-1 {
    box-shadow: -10px 10px 25px rgba(0, 0, 0, 0.3) !important;
}

.ebook-unified-tag {
    position: absolute;
    bottom: 25px;
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    letter-spacing: 1.5px;
    z-index: 3;
}

/* ==========================================================================
   COURSES SHOWCASE COMPONENT - Premium Light Design
   ========================================================================== */

.courses-showcase-section {
    position: relative;
    background: transparent;
}

.courses-showcase-badge {
    display: inline-flex;
    align-items: center;
    color: var(--blue-600) !important;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    padding: 6px 14px !important;
    border-radius: 99px !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase;
}

.courses-showcase-title {
    font-family: var(--font-outfit) !important;
    font-weight: 850;
    font-size: 2.1rem;
    color: var(--slate-900) !important;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Slide item adjustments */
.slider-home .slick-track {
    display: flex !important;
    /*gap: 10px;*/
}

.slider-home .slick-slide {
    height: inherit !important;
    outline: none !important;
}

/* Premium Card Wrapper */
.curso-card-showcase {
    background: var(--white) !important;
    border-radius: 20px !important;
    border: 1px solid var(--slate-100) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02) !important;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

    .curso-card-showcase:hover {
        transform: translateY(-6px) !important;
        border-color: rgba(99, 102, 241, 0.15) !important;
        box-shadow: 0 20px 45px rgba(99, 102, 241, 0.08) !important;
    }

/* Image Cover Zoom */
.curso-showcase-cover {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--slate-50);
}

.curso-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.curso-card-showcase:hover .curso-showcase-img {
    transform: scale(1.06) !important;
}

/* Card Body Content */
.curso-showcase-body {
    padding: 24px !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.curso-showcase-title {
    font-family: var(--font-outfit) !important;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--slate-900) !important;
    margin-bottom: 12px !important;
    transition: color 0.2s ease !important;
}

.curso-card-showcase:hover .curso-showcase-title {
    color: var(--primary-color) !important;
}

/* Professor Pill Badge */
.curso-showcase-professor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--slate-50) !important;
    border: 1px solid var(--slate-100) !important;
    padding: 6px 14px !important;
    border-radius: 99px !important;
    transition: all 0.25s ease !important;
}

    .curso-showcase-professor i {
        color: var(--primary-color) !important;
        font-size: 1.05rem;
    }

    .curso-showcase-professor span {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        color: var(--slate-600) !important;
    }

.curso-card-showcase:hover .curso-showcase-professor {
    background: rgba(99, 102, 241, 0.05) !important;
    border-color: rgba(99, 102, 241, 0.1) !important;
}

/* Interactive Action Link */
.curso-showcase-action {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    background: var(--slate-50) !important;
    color: var(--slate-700) !important;
    border: 1px solid var(--slate-200) !important;
    width: 100% !important;
    padding: 12px !important;
    border-radius: 12px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    letter-spacing: 1.5px;
}

    .curso-showcase-action i {
        font-size: 0.95rem;
        transition: transform 0.2s ease !important;
    }

.curso-card-showcase:hover .curso-showcase-action {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2) !important;
}

    .curso-card-showcase:hover .curso-showcase-action i {
        transform: translateX(4px) !important;
    }

/* Footer More Link */
.btn-courses-showcase-more {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px;
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    padding: 12px 36px !important;
    border-radius: 50px !important;
    /*font-weight: 800 !important;
    font-size: 0.95rem !important;*/
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

    .btn-courses-showcase-more:hover {
        background: var(--primary-color) !important;
        color: var(--white) !important;
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2) !important;
        transform: translateY(-2px) !important;
    }

    .btn-courses-showcase-more i {
        transition: transform 0.25s ease !important;
    }

    .btn-courses-showcase-more:hover i {
        transform: translateX(5px);
    }

/* ==========================================================================
   NAVBAR USER MATCHING ACTION BUTTON - Premium Design
   ========================================================================== */

.btn-navbar-primary-premium {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%) !important;
    color: var(--white) !important;
    font-family: var(--font-outfit) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 8px 20px !important;
    letter-spacing: 0.5px !important;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
}

    .btn-navbar-primary-premium:hover {
        transform: translateY(-1.5px) !important;
        box-shadow: 0 6px 15px rgba(99, 102, 241, 0.3) !important;
        opacity: 0.95 !important;
        color: var(--white) !important;
    }
