        :root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --bg-dark: #212529;
            --text-light: #f8f9fa;
            --accent-color: #ffc107; /* Amarelo para destaque sutil */
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f4f6f9;
            color: #333;
        }

        /* Navbar */
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #2c3e50 100%);
            color: white;
            padding: 100px 0;
            margin-bottom: 40px;
            text-align: center; /* Centralizado sem a foto */
        }

        /* Section Titles */
        .section-title {
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin-bottom: 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--bg-dark);
        }

        /* Cards */
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            transition: transform 0.3s;
        }

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

        /* Timeline for Experience */
        .timeline {
            border-left: 2px solid var(--primary-color);
            padding-left: 20px;
            margin-left: 10px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 5px;
            width: 14px;
            height: 14px;
            background-color: var(--primary-color);
            border-radius: 50%;
            border: 2px solid white;
        }

        .job-date {
            color: var(--secondary-color);
            font-size: 0.9rem;
            font-weight: bold;
        }

        /* Skills Badges */
        .badge-skill {
            font-size: 0.9rem;
            margin: 3px;
            padding: 8px 12px;
            font-weight: 500;
        }
        
        .skill-category {
            font-size: 0.85rem;
            text-transform: uppercase;
            color: var(--secondary-color);
            margin-top: 15px;
            margin-bottom: 8px;
            font-weight: bold;
            display: block;
        }

        /* Contact Info */
        .contact-list li {
            margin-bottom: 10px;
        }
        .contact-list i {
            width: 25px;
            color: var(--primary-color);
        }

        /* Footer */
        footer {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 30px 0;
            text-align: center;
            margin-top: 50px;
        }

        /* Destaque para palavras-chave no texto */
        .highlight-text {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* Print Styles */
        @media print {
            .btn-download, .navbar {
                display: none !important;
            }
            body {
                background-color: white;
            }
            .hero-section {
                color: black !important;
                background: none !important;
                padding: 20px 0;
                border-bottom: 2px solid #333;
            }
            .card {
                box-shadow: none;
                border: 1px solid #ddd;
            }
            a {
                text-decoration: none;
                color: black;
            }
        }
