/* ===========================================================
   RESET E VARIÁVEIS
   =========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary-color: #06b6d4;
    --accent-color: #0ea5e9;
    --text-dark: #f3f4f6;
    --text-light: #9ca3af;
    --bg-light: #0f172a;
    --white: #1e293b;
    --error: #f87171;
    --success: #34d399;
    --border-color: #334155;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.3), 0 2px 4px -1px rgba(0,0,0,0.2);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.4), 0 8px 10px -6px rgba(0,0,0,0.3);
}

/* Tema Dark */
[data-theme="dark"] {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary-color: #06b6d4;
    --accent-color: #0ea5e9;
    --text-dark: #f3f4f6;
    --text-light: #9ca3af;
    --bg-light: #0f172a;
    --white: #1e293b;
    --error: #f87171;
    --success: #34d399;
    --border-color: #334155;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.3), 0 2px 4px -1px rgba(0,0,0,0.2);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.4), 0 8px 10px -6px rgba(0,0,0,0.3);
}

/* Ajustes específicos para elementos da home no tema dark */
[data-theme="dark"] .home-hero-copy p {
    color: var(--text-light);
}

[data-theme="dark"] .home-stat {
    background: var(--white);
    border-color: var(--border-color);
}

[data-theme="dark"] .home-stat-number {
    color: var(--text-dark);
}

[data-theme="dark"] .home-about {
    background: var(--white);
    border-color: var(--border-color);
}

[data-theme="dark"] .home-card p,
[data-theme="dark"] .home-product p,
[data-theme="dark"] .home-contact-card p,
[data-theme="dark"] .home-quote p {
    color: var(--text-light);
}

[data-theme="dark"] .home-partner-body span {
    color: var(--text-light);
}

[data-theme="dark"] .home-cta-inner p {
    color: var(--text-light);
}

[data-theme="dark"] .home-hero-dots {
    background: var(--white);
    border-top-color: var(--border-color);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #020617;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.94)),
      url('imagens/futurista.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    z-index: -1;
    pointer-events: none;
}

/* ===========================================================
   LOGIN PAGE
   =========================================================== */

.login-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.login-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-content {
    width: 100%;
    max-width: 460px;
    background-color: var(--white);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo-container {
    text-align: center;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* Título */

.login-form-wrapper h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Formulário */

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background-color: #f9fafb;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox-container input {
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
}

.forgot-password {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Botão */

.btn-login {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: var(--shadow);
}

.btn-login:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.create-account {
    text-align: center;
    margin-top: 0.6rem;
}

.create-account a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Mensagem de erro */

.error-message {
    display: none;
    padding: 0.875rem;
    background-color: #fee2e2;
    border-left: 4px solid var(--error);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--error);
}

.error-message.show {
    display: block;
}

/* Mensagem de sucesso */

.success-message {
    display: none;
    padding: 0.875rem;
    background-color: #d1fae5;
    border-left: 4px solid #10b981;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #065f46;
}

.success-message.show {
    display: block;
}

/* Footer */

.login-footer {
    text-align: center;
    margin-top: 1rem;
}

.login-footer p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Right side (imagem / ilustração) */

.login-right {
    flex: 1;
    background: linear-gradient(135deg, #1e40af, #0ea5e9, #06b6d4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.background-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.12), transparent 55%);
}

.right-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    color: white;
}

.right-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.right-content p {
    font-size: 1.125rem;
    margin: 1.5rem 0 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    padding: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

/* ===========================================================
   RESPONSIVIDADE LOGIN
   =========================================================== */

@media (max-width: 1024px) {
    .login-right { display: none; }
}

@media (max-width: 640px) {
    .login-content { padding: 2rem 1.25rem; }
    .login-form-wrapper h1 { font-size: 1.75rem; }
}

/* ===========================================================
   DASHBOARD (TELA PÓS-LOGIN)
   =========================================================== */

.dashboard-page {
    background-color: #020617;
    color: #e5e7eb;
    min-height: 100vh;
}

/* HEADER DO DASHBOARD */

.dashboard-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 3rem;
    background: rgba(3,7,18,0.95);
    border-bottom: 1px solid #111827;
    backdrop-filter: blur(14px);
}

.dashboard-logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-logo {
    height: 64px;
    width: auto;
}

.dashboard-brand {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #e5e7eb;
}

/* Navbar */

.dashboard-nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    padding-bottom: 0.2rem;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: "";
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: 0.2s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* USER AREA */

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-logout {
    padding: 0.4rem 0.9rem;
    border: 1px solid #1f2937;
    border-radius: 999px;
    background: transparent;
    color: #e5e7eb;
    cursor: pointer;
    transition: 0.2s;
}

.btn-logout:hover {
    background: #111827;
}

/* HERO / BANNER */

.hero-dashboard {
    position: relative;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        radial-gradient(circle at 10% 20%, rgba(59,130,246,0.3), transparent 55%),
        radial-gradient(circle at 90% 80%, rgba(14,165,233,0.3), transparent 55%),
        #020617;
    border-bottom: 1px solid #111827;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,23,42,0.4), rgba(15,23,42,1));
}

.hero-content-box {
    position: relative;
    text-align: center;
    z-index: 1;
    max-width: 780px;
}

.hero-kicker {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--primary-light);
}

.hero-content-box h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 1rem 0;
}

.hero-content-box p {
    color: #cbd5f5;
    font-size: 1rem;
}

.hero-divider {
    width: 220px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1.8rem auto 1.2rem;
}

/* SEÇÃO CURSOS */

.courses-section {
    padding: 2rem 3rem 3rem;
}

.courses-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.7rem;
}

.courses-header h2 {
    font-size: 1.4rem;
    font-weight: 600;
}

.link-ver-todos {
    color: var(--primary-light);
    font-size: 0.9rem;
    text-decoration: none;
}

.courses-caption {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

/* Carrossel */

.courses-strip {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.course-card {
    min-width: 200px;
    max-width: 220px;
    background: #020617;
    border-radius: 0.9rem;
    border: 1px solid #111827;
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #1d4ed8;
}

.course-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.course-info {
    padding: 0.75rem 0.9rem;
}

.course-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f9fafb;
}

.course-info p {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0.4rem 0;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

.course-status {
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}

.course-status.em-andamento {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.course-status.nao-iniciado {
    color: #9ca3af;
    border: 1px solid #4b5563;
}

.course-status.concluido {
    color: var(--success);
    border: 1px solid var(--success);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: #1f2937;
    border-radius: 999px;
    margin-top: 0.75rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 999px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.btn-enroll {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-enroll:active {
    transform: translateY(0);
}

/* RESPONSIVO DASHBOARD */

@media (max-width: 900px) {
    .dashboard-nav { display: none; }
    .dashboard-header { padding: 0.75rem 1.25rem; }
    .courses-section { padding: 2rem 1.25rem; }
}

@media (max-width: 600px) {
    .course-card { min-width: 170px; max-width: 180px; }
}

/* ===========================================================
   COURSE PAGE (AULA INTERNA)
   =========================================================== */

.course-page .dashboard-main {
    padding: 2rem 3rem 3rem;
}

.course-header-path {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.4rem;
}

.course-header-path a {
    color: #9ca3af;
    text-decoration: none;
}

.course-header-path a:hover {
    text-decoration: underline;
}

.course-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f9fafb;
}

/* Layout principal da aula */

.course-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(260px, 0.9fr);
    gap: 2rem;
    align-items: flex-start;
}

/* Player */

.video-wrapper {
    position: relative;
    background: #020617;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #111827;
}

.video-wrapper video,
.video-wrapper iframe {
    width: 100%;
    display: block;
}

/* Ações abaixo do vídeo */

.course-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.25rem 0 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-feedback {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #9ca3af;
}

.feedback-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #1f2937;
    background: #020617;
    color: #e5e7eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: 0.15s ease;
}

.feedback-btn:hover {
    background: #111827;
}

.mark-complete {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    background: #065f46;
    color: #d1fae5;
}

.next-lesson-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    background: #1e40af;
    color: #e5e7eb;
}

/* Sidebar aulas */

.course-sidebar {
    border-left: 1px solid #111827;
    padding-left: 1.5rem;
}

.sidebar-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.lesson-list {
    list-style: none;
    padding-left: 0;
}

.lesson-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: #9ca3af;
    cursor: pointer;
}

.lesson-item::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4b5563;
}

.lesson-item.active {
    color: #f9fafb;
    font-weight: 500;
}

.lesson-item.active::before {
    background: var(--secondary-color);
}

.lesson-item.completed {
    color: #a3e635;
}

.lesson-item.completed::before {
    background: #a3e635;
}

/* Tabs (Comentários / Dúvidas) */

.course-tabs {
    margin-top: 2rem;
    border-top: 1px solid #111827;
    padding-top: 1.5rem;
}

.tabs-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #111827;
}

.tab-button {
    padding-bottom: 0.5rem;
    font-size: 0.9rem;
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    position: relative;
}

.tab-button.active {
    color: #f9fafb;
}

.tab-button.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.tab-panel {
    display: none;
    padding-top: 1rem;
}

.tab-panel.active {
    display: block;
}

/* Comentários */

.comment-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.comment-input {
    flex: 1;
    border-radius: 999px;
    border: 1px solid #1f2937;
    background: #020617;
    padding: 0.75rem 1rem;
    color: #e5e7eb;
    font-size: 0.9rem;
}

.comment-input::placeholder {
    color: #6b7280;
}

.btn-comment {
    border-radius: 999px;
    border: none;
    padding: 0.75rem 1.1rem;
    background: #f59e0b;
    color: #111827;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #111827;
}

.comment-body {
    flex: 1;
}

.comment-author {
    font-weight: 600;
    color: #e5e7eb;
}

.comment-meta {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.15rem;
}

.no-content-message {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* RESPONSIVO COURSE PAGE */

@media (max-width: 1024px) {
    .course-page .dashboard-main {
        padding: 1.5rem 1.25rem 3rem;
    }

    .course-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .course-sidebar {
        border-left: none;
        border-top: 1px solid #111827;
        padding-left: 0;
        padding-top: 1.5rem;
        margin-top: 1rem;
    }
}
/* ===========================================================
   ADMIN DASHBOARD
   =========================================================== */

.admin-main {
    padding: 2rem 3rem 3rem;
}

.admin-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-header-bar h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f9fafb;
}

.admin-header-bar p {
    font-size: 0.9rem;
    color: #9ca3af;
}

.admin-header-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-admin {
    border-radius: 999px;
    border: none;
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: 500;
    transition: 0.15s ease;
}

.btn-admin.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #f9fafb;
}

.btn-admin.ghost {
    background: #020617;
    border: 1px solid #1f2937;
    color: #e5e7eb;
}

.btn-admin.small {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
}

.btn-admin:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

/* Layout geral */

.admin-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(260px, 0.9fr);
    gap: 2rem;
    align-items: flex-start;
}

.admin-main-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.admin-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Cards de métrica */

.admin-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.admin-metric-card {
    background: #020617;
    border-radius: 0.9rem;
    border: 1px solid #111827;
    padding: 1rem 1.1rem;
}

.admin-metric-card h2 {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f9fafb;
}

.metric-sub {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Analytics */

.admin-analytics-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 1.2rem;
}

.admin-analytic-card {
    background: #020617;
    border-radius: 0.9rem;
    border: 1px solid #111827;
    padding: 1.25rem 1.3rem;
}

.admin-analytic-card h2 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f9fafb;
}

.analytic-caption {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

/* “Gráfico” de barras fake */

.fake-chart-bars {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.bar-row {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr) auto;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.bar-label {
    color: #e5e7eb;
}

.bar-track {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: #020617;
    border: 1px solid #111827;
    overflow: hidden;
}

.bar-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary-color));
}

.bar-fill.w-80 { width: 80%; }
.bar-fill.w-65 { width: 65%; }
.bar-fill.w-50 { width: 50%; }
.bar-fill.w-40 { width: 40%; }

.bar-value {
    color: #9ca3af;
}

/* Timeline de atividades */

.activity-timeline {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.8rem;
}

.activity-timeline li {
    display: flex;
    gap: 0.5rem;
}

.activity-timeline .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondary-color);
    margin-top: 5px;
}

.activity-timeline p {
    color: #e5e7eb;
}

.activity-timeline .time {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Tabela */

.admin-table-card {
    background: #020617;
    border-radius: 0.9rem;
    border: 1px solid #111827;
    padding: 1.25rem 1.3rem 1.1rem;
}

.admin-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.9rem;
}

.admin-table-header h2 {
    font-size: 0.95rem;
    color: #f9fafb;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.admin-table th,
.admin-table td {
    padding: 0.55rem 0.5rem;
    text-align: left;
}

.admin-table thead {
    border-bottom: 1px solid #111827;
    color: #9ca3af;
}

.admin-table tbody tr:nth-child(even) {
    background-color: rgba(15, 23, 42, 0.5);
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 500;
}

.status-active {
    background: rgba(16,185,129,0.1);
    color: #6ee7b7;
}

.status-pending {
    background: rgba(245,158,11,0.1);
    color: #fbbf24;
}

.status-cancelled {
    background: rgba(239,68,68,0.1);
    color: #fca5a5;
}

/* Sidebar admin */

.admin-side-card {
    background: #020617;
    border-radius: 0.9rem;
    border: 1px solid #111827;
    padding: 1.25rem 1.3rem;
}

.admin-side-card h2 {
    font-size: 0.9rem;
    color: #f9fafb;
    margin-bottom: 0.9rem;
}

.status-list,
.todo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 0.8rem;
}

.status-list li {
    display: flex;
    gap: 0.55rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-top: 5px;
}

.status-dot.ok {
    background: #22c55e;
}

.status-dot.warn {
    background: #fbbf24;
}

.status-sub {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
}

.todo-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}

.todo-list input {
    margin-top: 2px;
}

.todo-list label {
    color: #e5e7eb;
    cursor: pointer;
}

/* Atalhos rápidos */

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Responsivo admin */

@media (max-width: 1100px) {
    .admin-layout {
        grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1fr);
    }

    .admin-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .admin-main {
        padding: 1.5rem 1.25rem 3rem;
    }

    .admin-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 600px) {
    .admin-header-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-analytics-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .admin-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* Barra de título e filtros nas páginas Cursos/Alunos */

.page-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-title-bar h1 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #f9fafb;
}

.page-title-bar p {
  font-size: 0.9rem;
  color: #9ca3af;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.filter-row input,
.filter-row select {
  background: #020617;
  border-radius: 999px;
  border: 1px solid #1f2937;
  padding: 0.55rem 0.9rem;
  color: #e5e7eb;
  font-size: 0.8rem;
}

.filter-row input::placeholder {
  color: #6b7280;
}

@media (max-width: 700px) {
  .page-title-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.home-shell {
  min-height: 100vh;
  background: transparent;
  color: var(--text-dark);
}

.home-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2rem;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.home-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.home-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.home-logo {
  width: 102px;
  height: 102px;
  border-radius: 12px;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
}

.home-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.home-brand-text strong {
  font-size: 0.95rem;
}

.home-brand-text span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 0.65rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.home-nav a:hover {
  background: rgba(30, 64, 175, 0.08);
  color: var(--primary-dark);
}

.home-header-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: end;
  gap: 0.55rem;
  max-width: 620px;
}

.home-header-actions .home-btn {
  padding: 0.6rem 0.8rem;
  border-radius: 14px;
  font-size: 0.85rem;
}

.home-btn-igp {
  color: #ffffff;
  border-color: rgba(30, 64, 175, 0.18);
  box-shadow: 0 14px 30px rgba(30, 64, 175, 0.14);
}

.home-btn-igp-academy {
  background: linear-gradient(135deg, #1e40af, #2563eb);
}

.home-btn-igp-learning {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
}

.home-btn-igp-builder {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.home-btn-igp-bridge {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.home-btn-igp-consulting {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.home-btn-full {
  width: 100%;
}

.home-btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(30, 64, 175, 0.18);
}

.home-btn-ghost {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--border-color);
  box-shadow: var(--shadow);
}

.home-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.home-btn-product {
  position: relative;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.10), rgba(14, 165, 233, 0.12));
  border-color: rgba(30, 64, 175, 0.18);
  color: #0f172a;
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.08);
  overflow: hidden;
}

.home-btn-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.90), rgba(34, 197, 94, 0.90));
  opacity: 0;
  transition: opacity 0.18s ease;
}

.home-btn-product .home-btn-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.home-btn-product .home-btn-label-hover {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(8px);
  color: #ffffff;
}

.home-btn-product .home-btn-label-default {
  opacity: 1;
  transform: translateY(0);
}

.home-btn-product:hover {
  transform: translateY(-2px);
  filter: none;
  box-shadow: 0 26px 60px rgba(16, 185, 129, 0.22);
}

.home-btn-product:hover::before {
  opacity: 1;
}

.home-btn-product:hover .home-btn-label-default {
  opacity: 0;
  transform: translateY(-8px);
}

.home-btn-product:hover .home-btn-label-hover {
  opacity: 1;
  transform: translateY(0);
}

.home-hero {
  position: relative;
  padding: 4.25rem 0 3.25rem;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: -100px;
  background:
    radial-gradient(circle at 18% 25%, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(14, 165, 233, 0.18), transparent 60%),
    radial-gradient(circle at 45% 85%, rgba(6, 182, 212, 0.18), transparent 65%);
  filter: blur(0px);
  transform: translateZ(0);
  animation: home-float 12s ease-in-out infinite;
  pointer-events: none;
}

.home-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.55;
  transform: translate3d(0, 0, 0);
  mix-blend-mode: multiply;
}

.home-orb-1 {
  top: -120px;
  left: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.65), rgba(59, 130, 246, 0) 60%);
  animation: home-orb-1 18s ease-in-out infinite;
}

.home-orb-2 {
  top: -140px;
  right: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.60), rgba(14, 165, 233, 0) 62%);
  animation: home-orb-2 22s ease-in-out infinite;
}

.home-orb-3 {
  bottom: -220px;
  left: 18%;
  background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.55), rgba(6, 182, 212, 0) 62%);
  animation: home-orb-3 26s ease-in-out infinite;
}

@keyframes home-orb-1 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(70px, 30px, 0) scale(1.06); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes home-orb-2 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-80px, 50px, 0) scale(1.08); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes home-orb-3 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(40px, -60px, 0) scale(1.1); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes home-float {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -14px, 0) scale(1.02); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

.home-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.home-hero-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-hero-showcase {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.home-hero-slides {
  position: relative;
  height: 520px;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(0.995);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.home-hero-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.home-hero-slide-media {
  position: absolute;
  inset: 0;
  background: #e2e8f0;
}

.home-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.home-hero-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.00) 35%, rgba(2, 6, 23, 0.72) 100%);
}

.home-hero-slide-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.15rem 1.15rem 1.25rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.home-hero-slide-body strong {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.home-hero-slide-body p {
  margin: 0;
  color: rgba(226, 232, 240, 0.95);
  font-weight: 600;
}

.home-hero-slide-body .home-btn {
  margin-top: 0.65rem;
  align-self: flex-start;
}

.home-hero-slide-body .home-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 30px rgba(2, 6, 23, 0.18);
}

.home-hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 0.85rem;
  background: rgba(248, 250, 252, 0.92);
  border-top: 1px solid rgba(229, 231, 235, 0.9);
}

.home-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(100, 116, 139, 0.35);
  background: rgba(148, 163, 184, 0.35);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.home-dot.is-active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: rgba(30, 64, 175, 0.35);
  transform: scale(1.2);
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.08);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.home-hero-copy h1 {
  margin: 0.85rem 0 0.9rem;
  font-size: 2.55rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.home-hero-copy p {
  margin: 0;
  color: #334155;
  font-size: 1.05rem;
}

.home-hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.home-stat {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  box-shadow: 0 18px 30px rgba(2, 6, 23, 0.06);
}

.home-stat-number {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

.home-stat-label {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.home-hero-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0.95rem 1rem;
  box-shadow: var(--shadow-lg);
}

.home-hero-card-title {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.home-hero-card-title strong {
  font-size: 1rem;
}

.home-hero-card-title span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.home-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.home-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.home-checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 0.35rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.home-section {
  padding: 3.25rem 0;
}

.home-section-head {
  max-width: 720px;
  margin-bottom: 1.35rem;
}

.home-section-head h2 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
}

.home-section-head p {
  margin: 0.6rem 0 0;
  color: var(--text-dark);
}

.home-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-card,
.home-product,
.home-quote,
.home-contact-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.15rem 1.15rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-card:hover,
.home-product:hover,
.home-quote:hover,
.home-contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(2, 6, 23, 0.10);
}

.home-about {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 20px;
  padding: 1.35rem 1.35rem;
  box-shadow: 0 24px 55px rgba(2, 6, 23, 0.08);
  max-width: 940px;
}

.home-about p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
}

.home-about-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-bullets {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.home-bullets li {
  display: flex;
  gap: 0.6rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.home-bullets li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 0.4rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.home-partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.home-partner {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.home-partner-wide {
  grid-column: 1 / -1;
}

.home-partner-media {
  position: relative;
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
  background: #f1f5f9;
}

.home-partner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.home-img-leda {
  object-position: 50% 18%;
}

.home-img-fabiano {
  object-position: 50% 22%;
}

.home-img-dois {
  object-position: 50% 48%;
}

.home-partner:hover .home-partner-media img {
  transform: scale(1.07);
}

.home-partner-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.home-partner-body strong {
  font-size: 1.05rem;
}

.home-partner-body span {
  font-size: 0.9rem;
  color: #475569;
  font-weight: 600;
}

.home-tilt {
  --mx: 50%;
  --my: 50%;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}

.home-tilt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 42%);
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.home-tilt:hover::after {
  opacity: 0.75;
}

.home-card strong,
.home-product strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.home-card p,
.home-product p {
  margin: 0;
  color: #475569;
}

.home-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.home-product-actions {
  margin-top: 1rem;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(148, 163, 184, 0.16);
  color: #475569;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.home-pill-live {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border-color: rgba(16, 185, 129, 0.25);
}

.home-quote p {
  margin: 0;
  color: #0f172a;
  line-height: 1.55;
}

.home-quote span {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

.home-cta {
  padding: 2.75rem 0;
}

.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.10), rgba(14, 165, 233, 0.10));
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 22px;
  padding: 1.5rem 1.5rem;
}

.home-cta-inner h2 {
  margin: 0;
  font-size: 1.45rem;
}

.home-cta-inner p {
  margin: 0.5rem 0 0;
  color: #475569;
}

.home-cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.home-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.home-contact-card strong {
  display: block;
  margin-bottom: 0.5rem;
}

.home-contact-card p {
  margin: 0;
  color: #475569;
}

.home-contact-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.home-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.home-footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.10), transparent 60%),
    linear-gradient(135deg, #1e40af 0%, #0ea5e9 55%, #06b6d4 110%);
  color: #ffffff;
  overflow: hidden;
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 2rem;
  padding: 2.75rem 0 1.75rem;
}

.home-footer-brand {
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.home-footer-text {
  margin: 1rem 0 1.35rem;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.92);
}

.home-footer-social-title {
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.home-footer-social-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.home-social {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.home-social:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.22);
}

.home-social svg {
  width: 18px;
  height: 18px;
}

.home-footer-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.home-footer-block strong {
  font-weight: 900;
}

.home-footer-block span {
  color: rgba(255, 255, 255, 0.92);
}

.home-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.home-footer-links strong {
  font-weight: 900;
  margin-bottom: 0.2rem;
}

.home-footer-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 650;
}

.home-footer-links a:hover {
  text-decoration: underline;
}

.home-footer-links span {
  color: rgba(255, 255, 255, 0.90);
  font-weight: 650;
}

.home-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.95rem 0 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.75, 0.25, 1), transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-bg { animation: none; }
  .home-orb { animation: none; }
  .home-tilt { transition: none; transform: none !important; }
  .home-tilt::after { display: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1024px) {
  .home-header-inner { grid-template-columns: 1fr auto; }
  .home-nav { display: none; }
}

@media (max-width: 900px) {
  .home-hero-inner { grid-template-columns: 1fr; }
  .home-stats { grid-template-columns: 1fr; }
  .home-grid-3 { grid-template-columns: 1fr; }
  .home-products-grid { grid-template-columns: 1fr; }
  .home-about-grid { grid-template-columns: 1fr; }
  .home-partners { grid-template-columns: 1fr; }
  .home-hero-slides { height: 420px; }
  .home-partner-media { aspect-ratio: 16 / 10; }
  .home-contact { grid-template-columns: 1fr; }
  .home-cta-inner { flex-direction: column; align-items: flex-start; }
  .home-footer-grid { grid-template-columns: 1fr; padding: 2.25rem 0 1.25rem; gap: 1.5rem; }
}

@media (max-width: 520px) {
  .home-hero-copy h1 { font-size: 2.05rem; }
  .home-header-actions { width: 100%; grid-template-columns: 1fr; max-width: none; }
  .home-logo { width: 84px; height: 84px; }
  .home-btn { width: 100%; }
}

/* ===========================================================
   THEME TOGGLE BUTTON
   =========================================================== */

.theme-toggle {
  display: none !important;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.theme-toggle:hover {
  transform: scale(1.1);
  border-color: var(--primary-color);
}

.theme-toggle svg {
  width: 24px;
  height: 24px;
  fill: var(--text-dark);
  transition: all 0.3s ease;
}

.theme-toggle:hover svg {
  fill: var(--primary-color);
}

/* Ícone de lua (dark mode) */
.theme-toggle .moon-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

@media (max-width: 768px) {
  .theme-toggle {
    width: 45px;
    height: 45px;
    top: 15px;
    right: 15px;
  }
  
  .theme-toggle svg {
    width: 20px;
    height: 20px;
  }
}

/* ===========================================================
   PÁGINA DE SUPORTE
   =========================================================== */

.support-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.support-header {
    text-align: center;
    margin-bottom: 3rem;
}

.support-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.support-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.support-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: var(--bg-light);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #ffffff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

@media (max-width: 768px) {
    .support-header h1 {
        font-size: 2rem;
    }
    
    .support-form {
        padding: 1.5rem;
    }
    
    .support-container {
        margin: 2rem auto;
    }
}
