
        a:link {
            text-decoration: none;
        }

        .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;
        }

        /* 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;
        }

        .login-btn:hover {
            background: #ff79b0;
            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(255, 64, 129, 0.4);
        }

        .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: underline;
        }

        /* 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: #ff79b0;
        }

        /* 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);
        }

        .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: linear-gradient(135deg, var(--primary), var(--secondary));
            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: #ff79b0;
        }

        /* 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;
        }


        /* Hero Carousel */
        .hero-carousel {
            position: relative;
            height: 70vh;
            overflow: hidden;
        }

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

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

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

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

        .carousel-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 100%;
            max-width: 1200px;
            padding: 0 2rem;
            z-index: 1;
        }

        .carousel-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            animation: fadeIn 0.8s ease forwards;
        }

        .carousel-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            animation: fadeIn 0.8s ease forwards 0.2s;
        }

        .carousel-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            animation: fadeIn 0.8s ease forwards 0.4s;
        }

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

        .carousel-nav button {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .carousel-nav button:hover {
            background: var(--accent);
        }

        .carousel-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 2;
        }

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

        .carousel-dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }
        
            .titulo-principal {
        font-size: 2.8rem;
        font-weight: 900;
        text-align: center;
        margin: 30px 0;
        letter-spacing: -0.5px;
        }
        .texto-azul { 
            color: #2563eb; 
            font-weight: 700; 
        }
        .texto-preto {
            color: #000;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0;
            margin-left: -1px;
        }
        
        .calculator-form .form-group {
            margin-bottom: 20px;
        }
        
        .calculator-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text);
        }
        
        .calculator-form input, 
        .calculator-form select {
            width: 100%;
            padding: 12px;
            border: 2px solid #e5e7eb;
            border-radius: 0;
            font-size: 16px;
            margin-top: 5px;
            background: var(--card-bg);
            color: var(--text);
        }
        
        .calculator-form input[type="number"] { 
            min: 0; 
        }
        
        .form-buttons {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            margin-top: 20px;
        }
        
        .result-details {
            margin: 15px 0;
        }
        
        .result-details p {
            margin: 5px 0;
            color: var(--text);
        }
        
        .final-result {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            margin-top: 20px;
            text-align: center;
        }
        
        .calculator-login-prompt {
            background: var(--light);
            padding: 1rem;
            border-radius: var(--radius);
            margin-top: 1rem;
            text-align: center;
        }
        
        .calculator-login-prompt a {
            color: var(--accent);
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .carousel-content h1 {
                font-size: 2.2rem;
            }
            
            .carousel-content p {
                font-size: 1rem;
            }
            
            .carousel-nav button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 576px) {
            .carousel-content h1 {
                font-size: 1.8rem;
            }
            
            .carousel-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-outline {
                margin-left: 0;
                margin-top: 1rem;
            }
        }

        /* 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 específicos para a calculadora */
        .tool-container {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2rem;
            margin-bottom: 3rem;
        }

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

        .calculator-card {
            background: var(--light);
            border-radius: var(--radius);
            padding: 1.5rem;
            transition: var(--transition);
        }

        .calculator-card h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

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

        .form-group input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
        }

        .calculator-result {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px dashed #ddd;
        }

        .calculator-result h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .calculator-result p {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--success);
        }

        .tool-description {
            background: var(--light);
            padding: 1.5rem;
            border-radius: var(--radius);
        }

        .tool-description h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .tool-description ul {
            margin: 1rem 0 1rem 1.5rem;
        }

        @media (max-width: 768px) {
            .calculator-grid {
                grid-template-columns: 1fr;
            }
        }
