        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .post-content a,
        .post-excerpt a {
            color: #007bff;
            text-decoration: none;
            border-bottom: 1px solid #007bff;
            transition: all 0.3s ease;
        }

        .post-content a:hover,
        .post-excerpt a:hover {
            color: #0056b3;
            border-bottom-color: #0056b3;
            text-decoration: none;
        }

        /* Theme Toggle e Login Button */
        .theme-toggle {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin-left: 1rem;
            color: white;
            transition: var(--transition);
        }

        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .login-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0.5rem 1.2rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-left: 1rem;
            text-decoration: none;
        }

        .login-btn:hover {
            background: #990202;
            transform: translateY(-2px);
        }

        .nav-right {
            display: flex;
            align-items: center;
        }

        /* Hero Section */
        .hero {
            background: url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
            color: white;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(239, 68, 68, 0.56);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
            margin-left: 1rem;
        }

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

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
            display: flex;
            gap: 2rem;
        }

        .main-content {
            flex: 2;
        }

        .sidebar {
            flex: 1;
        }

        .section-title {
            margin-bottom: 2rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--primary);
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }

        /* Blog Posts - Lista Vertical */
        .blog-list {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .blog-post {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            overflow: hidden;
        }

        .blog-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .post-content {
            padding: 2rem;
        }

        .post-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .post-category {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .post-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .post-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .post-excerpt {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.7;
        }

        .post-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            margin-bottom: 1.5rem;
        }

        .read-more {
            display: inline-block;
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .read-more:hover {
            color: var(--primary);
            text-decoration: none;
        }

        /* Sidebar */
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            position: relative;
          
        }

        .widget-title::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--secondary);
            bottom: -8px;
            left: 0;
        }

        .suggested-post {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .suggested-post:last-child {
            border-bottom: none;
        }

        .suggested-post a {
            text-decoration: none;
            color: var(--text);
            transition: var(--transition);
        }

        .suggested-post a:hover {
            color: var(--primary);
        }

        .suggested-title {
            font-size: 1rem;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .suggested-meta {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* Newsletter */
        .newsletter {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 4rem 2rem;
            text-align: center;
            color: white;
            margin: 4rem 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

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

        .newsletter p {
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }

        .newsletter-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background: #ea7575;
        }

        /* Seção de Cotações de Moedas */
        .crypto-section {
            max-width: 1200px;
            margin: 0 auto 4rem;
            padding: 0 2rem;
        }

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

        .crypto-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 1.5rem;
            transition: var(--transition);
        }

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

        .crypto-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .crypto-icon {
            width: 40px;
            height: 40px;
            margin-right: 1rem;
        }

        .crypto-name {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .crypto-symbol {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .crypto-price {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .crypto-change {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .positive {
            background-color: rgba(0, 200, 83, 0.1);
            color: var(--success);
        }

        .negative {
            background-color: rgba(213, 0, 0, 0.1);
            color: var(--danger);
        }

        .crypto-chart {
            height: 200px;
            margin-top: 1.5rem;
        }

        .crypto-more {
            display: inline-block;
            margin-top: 1rem;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .crypto-more:hover {
            color: var(--secondary);
            text-decoration: underline;
        }

        /* Popular Tags */
        .tags-container {
            margin: 4rem 0;
            padding: 0 2rem;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            justify-content: center;
        }

        .tag {
            background: var(--card-bg);
            color: var(--text);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: var(--transition);
            cursor: pointer;
            box-shadow: var(--shadow);
            text-decoration: none;
            font-weight: bold;
        }

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

        /* Footer */
        footer {
            background: var(--footer-bg);
            color: white;
            padding: 4rem 0 2rem;
            transition: var(--transition);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--secondary);
            bottom: -8px;
            left: 0;
        }

        .footer-col p {
            margin-bottom: 1rem;
            color: #bbb;
            font-size: 1rem;
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1rem;
        }

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

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--success);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
            box-shadow: var(--shadow);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--secondary);
        }

        /* Sidebar Newsletter */
        .sidebar-newsletter {
            background: #1e293b;
            color: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }

        .sidebar-newsletter h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: white;
            position: relative;
        }

        .sidebar-newsletter h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--accent);
            bottom: -8px;
            left: 0;
        }

        .sidebar-newsletter p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .sidebar-newsletter-form {
            display: flex;
            flex-direction: column;
        }

        .sidebar-newsletter-form input {
            padding: 0.8rem;
            border: none;
            border-radius: var(--radius);
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
        }

        .sidebar-newsletter-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .sidebar-newsletter-form button:hover {
            background: #ea7575;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .post-title {
                font-size: 1.4rem;
            }
            
            .container {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transition: var(--transition);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .mobile-menu {
                display: block;
            }

            .login-btn {
                display: none;
            }

            .hero {
                height: 60vh;
            }

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

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

            .btn {
                padding: 0.6rem 1.2rem;
            }

            .post-image {
                height: 250px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                border-radius: var(--radius);
                margin-bottom: 0.5rem;
            }

            .newsletter-form button {
                border-radius: var(--radius);
                padding: 0.8rem;
            }

            .crypto-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 50vh;
            }

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

            .section-title h2 {
                font-size: 1.8rem;
            }

            .post-title {
                font-size: 1.3rem;
            }

            .post-image {
                height: 200px;
            }

            .nav-right {
                margin-left: auto;
            }

            .logo img {
                height: 30px;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }



        /* Sidebar Categories */
        .sidebar-categories {
            list-style: none;
        }

        .sidebar-categories li {
            margin-bottom: 0.6rem;
            padding-bottom: 0.6rem;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        }

        .sidebar-categories li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .sidebar-categories a {
            display: flex;
            justify-content: space-between;
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .sidebar-categories a:hover {
            color: var(--primary);
        }

        .sidebar-categories span {
            color: var(--text-light);
            font-size: 0.8rem;
        }

        /* Dark mode adjustments */
        [data-theme="dark"] .sidebar-categories li {
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        }

        [data-theme="dark"] .social-link {
            background: rgba(255, 255, 255, 0.05);
        }

        /* Área de Anúncios do Google */
        .ad-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        /* Estilo para os anúncios do Google */
        ins.adsbygoogle {
            background: transparent;
            border-radius: var(--radius);
            overflow: hidden;
            margin: 0 auto;
        }

        /* Ajustes para modo escuro */
        [data-theme="dark"] .ad-container {
            background-color: rgba(255, 255, 255, 0.05);
        }

        /* Responsividade para anúncios */
        @media (max-width: 768px) {
            .ad-container {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            ins.adsbygoogle[style*="width:300px"] {
                margin: 0 10px;
            }
        }

        /* Paginação */
        .pagination {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 3rem 0;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .page-numbers {
            display: flex;
            gap: 0.5rem;
        }

        .page-nav, .page-number {
            padding: 0.8rem 1.2rem;
            border-radius: var(--radius);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }

        .page-nav {
            background: var(--card-bg);
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: var(--shadow);
        }

        .page-nav:hover:not(.disabled) {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

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

        .page-number {
            color: var(--text);
            background: var(--card-bg);
            box-shadow: var(--shadow);
        }

        .page-number:hover, .page-number.active {
            background: var(--primary);
            color: white;
        }

        .page-dots {
            padding: 0.8rem 0.5rem;
            color: var(--text-light);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .pagination {
                justify-content: center;
            }
            
            .page-numbers {
                order: 1;
                width: 100%;
                justify-content: center;
                margin: 1rem 0;
            }
            
            .page-nav {
                order: 2;
            }
        }

        @media (max-width: 480px) {
            .page-number {
                padding: 0.6rem 0.9rem;
            }
            
            .page-nav {
                padding: 0.6rem 1rem;
            }
        }

        /* Adicione ao seu CSS existente */
        .inspiration-quote {
            background: var(--light);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
            position: relative;
            border-left: 4px solid var(--accent);
        }

        .inspiration-quote p {
            font-style: italic;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .quote-author {
            text-align: right;
            font-weight: 600;
            color: var(--primary);
        }

        .pillars-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

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

        .pillar-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

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

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

        .pillar-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .pillar-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Adicione ao seu CSS existente */
        .tools-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .tool-item {
            display: flex;
            align-items: center;
            padding: 0.8rem;
            background: var(--light);
            border-radius: var(--radius);
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
        }

        .tool-item:hover {
            background: var(--primary);
            color: white;
            transform: translateX(5px);
        }

        .tool-item i {
            margin-right: 0.8rem;
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
        }

        .tool-item span {
            font-size: 0.95rem;
            font-weight: 500;
        }

        [data-theme="dark"] .tool-item {
            background: rgba(255, 255, 255, 0.05);
        }

        /* Estilos para a mensagem de boas-vindas */
        .user-welcome {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .welcome-message {
            color: #333;
            font-weight: 500;
        }

        .logout-btn {
            background: #f0f0f0;
            color: #333;
            padding: 8px 15px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .logout-btn:hover {
            background: #e0e0e0;
        }

        /* Ajuste para o tema escuro */
        [data-theme="dark"] .welcome-message {
            color: #f0f0f0;
        }

        [data-theme="dark"] .logout-btn {
            background: #444;
            color: #f0f0f0;
        }

        [data-theme="dark"] .logout-btn:hover {
            background: #555;
        }

/* Newsletter Popup Styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.popup-message {
    padding: 20px;
    margin: 10px 0;
    border-radius: 4px;
}

.popup-message.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.popup-message.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.popup-message.info {
    background-color: #d9edf7;
    color: #31708f;
    border: 1px solid #bce8f1;
}

/* Adicione ao seu arquivo CSS */
.ver-mais-categorias {
    margin-top: 10px;
}

.ver-mais-categorias a {
    color: var(--primary-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ver-mais-categorias a:hover {
    text-decoration: underline;
}

.categorias-adicionais {
    margin-top: 10px;
}

/* Adicione ao seu CSS existente */
.hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 70vh; /* Altura ajustável conforme necessidade */
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    z-index: 2;
}

.carousel-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.carousel-buttons {
    display: flex;
    gap: 1rem;
}

/* Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 1rem;
}

.carousel-prev, .carousel-next {
    background: #0f172a;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background: #0f172a;
    transform: scale(1.1);
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 992px) {
    .carousel-content {
        padding: 2rem;
    }
    
    .carousel-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 60vh;
    }
    
    .carousel-content {
        padding: 1.5rem;
    }
    
    .carousel-content h1 {
        font-size: 1.8rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .carousel-prev, .carousel-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        height: 50vh;
    }
    
    .carousel-content {
        text-align: center;
        padding: 1rem;
    }
    
    .carousel-content h1 {
        font-size: 1.5rem;
    }
    
    .carousel-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .carousel-dots {
        bottom: 1rem;
    }
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.dashboard-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    display: inline-block;
}

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

.dashboard-card {
    background: #1e293b;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card p {
    color: #fff
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.dashboard-card p {
    margin: 0.8rem 0;
    line-height: 1.6;
}

.dashboard-card p strong {
    color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-container h1 {
        font-size: 2rem;
    }
}

.category-description {
    font-size: 25px;
}

.category-divider {
    border: none;
    height: 2px;
    background-color: #ddd;
    margin: 1rem auto 1.5rem auto;
    width: 60%;
}

