/* ============================================
   VARIÁVEIS E CORES
   ============================================ */
:root {
    --primary: #281aec;
    --primary-dark: #1a0fb8;
    --secondary: #45477c;
    --success: #10b981;
    --warning: #efe929;
    --danger: #e91a22;
    --info: #281aec;
    --light: #f3f4f6;
    --dark: #040404;
    --white: #ffffff;
    --border: #868a88;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ============================================
   RESET E ESTILOS GLOBAIS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

.botoes-container {
    display: inline-block;
    /*width: 25px;
    height: 25px;*/
    gap: 15px;
    margin-bottom: 30px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-name {
    font-weight: 500;
    color: var(--dark);
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--light);
    color: var(--dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--border);
}

.btn-danger {
    background-color: var(--danger);
    color: var(--white);
}

.btn-danger:hover {
    background-color: #dc2626;
}

.btn-success {
    background-color: var(--success);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--dark);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background-color: var(--light);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, rgba(40, 26, 236, 0.1) 0%, rgba(40, 26, 236, 0.05) 100%);
    padding: 5rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 4rem 0;
    background-color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--secondary);
    font-size: 0.95rem;
}

/* ============================================
   COURSES SECTION
   ============================================ */
.courses-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.course-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.course-badges {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-level {
    background-color: var(--primary);
}

.badge-format {
    background-color: var(--info);
}

.badge-status {
    background-color: var(--warning);
}

.course-card h3 {
    padding: 0 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.course-description {
    padding: 0 1rem;
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.course-info {
    padding: 0 1rem;
    display: flex;
    gap: 1rem;
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.course-price {
    padding: 0 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.course-card .btn {
    margin: 0 1rem 1rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 4rem 0;
    background-color: var(--light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--secondary);
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: #efe929;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.testimonial-author {
    color: var(--secondary);
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, rgba(40, 26, 236, 0.1) 0%, rgba(40, 26, 236, 0.05) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* ============================================
   COURSE DETAIL PAGE
   ============================================ */
.course-detail {
    padding: 3rem 0;
}

.course-header {
    margin-bottom: 3rem;
}

.course-description-large {
    font-size: 1.1rem;
    color: var(--secondary);
    margin: 1rem 0;
}

.course-meta {
    display: flex;
    gap: 2rem;
    color: var(--secondary);
    margin-top: 1rem;
}

.course-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.course-section {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.course-section h2 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.syllabus-list {
    list-style: none;
}

.syllabus-list li {
    padding: 0.75rem 0;
    color: var(--secondary);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.syllabus-list i {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.course-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.course-card-detail {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.price-section {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.course-price-large {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.enrollment-form {
    margin-bottom: 1.5rem;
}

.course-benefits {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.course-benefits h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.course-benefits ul {
    list-style: none;
}

.course-benefits li {
    padding: 0.5rem 0;
    color: var(--secondary);
    display: flex;
    gap: 0.75rem;
}

.course-benefits i {
    color: var(--primary);
}

/* ============================================
   AUTHENTICATION PAGES
   ============================================ */
.auth-page {
    padding: 4rem 0;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.auth-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.auth-card h1 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.auth-card > p {
    color: var(--secondary);
    margin-bottom: 2rem;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(40, 26, 236, 0.1);
}

.auth-link {
    text-align: center;
    color: var(--secondary);
}

.auth-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.demo-credentials {
    background-color: var(--light);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--secondary);
}

.demo-credentials p {
    margin: 0.25rem 0;
}

/* ============================================
   MY COURSES PAGE
   ============================================ */
.my-courses {
    padding: 3rem 0;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--light);
    border-radius: 0.75rem;
}

.empty-state i {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.empty-state h2 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.empty-state p {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.enrollments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.enrollment-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.enrollment-header {
    margin-bottom: 1rem;
}

.enrollment-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.enrollment-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.enrollment-date {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.status-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
}

.status-message.warning {
    background-color: #fef3c7;
    color: #92400e;
}

.status-message.success {
    background-color: #d1fae5;
    color: #065f46;
}

.status-message i {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */
.admin-dashboard {
    padding: 3rem 0;
}

.admin-dashboard h1 {
    margin-bottom: 2rem;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
}

.stat-content {
    flex: 1;
}

.admin-tabs {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.tab-btn {
    padding: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary);
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.tab-content h2 {
    margin-bottom: 1.5rem;
}

.table-responsive {
    overflow-x: auto;
}

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

.admin-table thead {
    background-color: var(--light);
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    font-weight: 600;
    color: var(--dark);
}

.admin-table tbody tr:hover {
    background-color: var(--light);
}

.form-select {
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.inline-form {
    display: inline;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
}

.alert-warning {
    background-color: #fef3c7;
    color: #92400e;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav-menu {
        display: none;
    }

    .course-content {
        grid-template-columns: 1fr;
    }

    .course-sidebar {
        position: static;
    }

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

    .stats-grid,
    .features-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .course-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .admin-table {
        font-size: 0.9rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

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

/* ============================================
   PÁGINA DE CONTATO
   ============================================ */
.contact-page {
    padding: 60px 0;
    background-color: var(--light);
}

.contact-page h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
    color: var(--dark);
}

.page-subtitle {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-section,
.contact-info-section {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form-section h2,
.contact-info-section h2 {
    margin-bottom: 30px;
    color: var(--dark);
    font-size: 1.8rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(40, 26, 236, 0.1);
}

.contact-info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.contact-info-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.info-content h3 {
    margin-bottom: 8px;
    color: var(--dark);
}

.info-content p {
    color: var(--secondary);
    margin-bottom: 5px;
}

.info-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-dark);
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-page h1 {
        font-size: 2rem;
    }
}

/* ============================================
   PÁGINA ADMINISTRATIVA
   ============================================ */
.admin-page {
    padding: 40px 0;
    background-color: var(--light);
    min-height: 100vh;
}

.admin-page h1 {
    margin-bottom: 30px;
    color: var(--dark);
    font-size: 2.2rem;
}

.admin-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.courses-table-section,
.form-section {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.courses-table-section h2,
.form-section h2 {
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 1.5rem;
}

.table-responsive {
    overflow-x: auto;
}

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

.admin-table thead {
    background-color: var(--light);
    border-bottom: 2px solid var(--border);
}

.admin-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
}

.admin-table tbody tr:hover {
    background-color: #f9fafb;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-success {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-danger {
    background-color: #fee2e2;
    color: #991b1b;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.admin-form .form-group {
    display: flex;
    flex-direction: column;
}

.admin-form label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(40, 26, 236, 0.1);
}

.admin-form small {
    margin-top: 5px;
    color: var(--secondary);
    font-size: 0.85rem;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
}

.form-group.checkbox label {
    margin-bottom: 0;
    margin-left: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-group.checkbox input {
    margin: 0;
    width: auto;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.btn-info {
    background-color: var(--info);
    color: var(--white);
}

.btn-info:hover {
    background-color: #2563eb;
}

.empty-message {
    text-align: center;
    color: var(--secondary);
    padding: 40px 20px;
    font-size: 1.1rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .admin-table {
        font-size: 0.9rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 10px;
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
}
