
        :root {
            --primary-color: #0f172a;
            --secondary-color: #3b82f6;
            --bg-color: #f8fafc;
            --text-main: #334155;
            --text-light: #64748b;
            --card-bg: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: var(--secondary-color);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
            color: #ffffff;
            text-align: center;
            padding: 5rem 2rem;
            border-bottom: 5px solid var(--secondary-color);
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .hero h2 {
            font-size: 1.25rem;
            font-weight: 400;
            color: #cbd5e1;
            margin-bottom: 1.5rem;
        }

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .contact-links a {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .contact-links a:hover {
            background: var(--secondary-color);
        }

        /* Container */
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Sections */
        section {
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 1.75rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 0.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            height: 2px;
            width: 60px;
            background-color: var(--secondary-color);
        }

        /* Summary */
        .summary {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            font-size: 1.05rem;
        }

        /* Skills */
        .skills-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .skill-badge {
            background: #e0f2fe;
            color: #0369a1;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* Experience Timeline */
        .timeline-item {
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--secondary-color);
        }

        .timeline-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .job-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .company-name {
            font-weight: 600;
            color: var(--text-light);
        }

        .job-date {
            background: #f1f5f9;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .timeline-item ul {
            padding-left: 1.2rem;
            color: var(--text-main);
        }

        .timeline-item li {
            margin-bottom: 0.5rem;
        }

        /* Education & Certs */
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .grid-2 {
                grid-template-columns: 1fr 1fr;
            }
        }

        .list-card {
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .list-card ul {
            list-style: none;
            padding: 0;
        }

        .list-card li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #f1f5f9;
        }

        .list-card li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .list-card strong {
            display: block;
            color: var(--primary-color);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 2rem;
            background: var(--primary-color);
            color: #94a3b8;
            font-size: 0.9rem;
        }
    /* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #ffffff;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 9999;
    transition: opacity 0.4s ease, transform 0.4s ease;
    max-width: 90%;
    width: max-content;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.cookie-popup.hidden {
    opacity: 0;
    transform: translate(-50%, 20px);
    pointer-events: none;
}

.cookie-popup p {
    margin: 0;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.cookie-btn {
    background: var(--secondary-color);
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.cookie-btn:hover {
    background: #2563eb;
}


.language-switcher {
  display: flex;
  justify-content: center;
  margin-top: 20px; /* Ajuste conforme o espaçamento do seu layout */
}

/* Estiliza o seletor para combinar com os ícones de redes sociais */
.language-switcher select {
  /* Remove a aparência padrão feia do navegador */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Cores e Fundo harmônicos com o tema escuro */
  background-color: rgba(255, 255, 255, 0.08); /* Fundo translúcido igual aos ícones */
  color: #e2e8f0; /* Branco suave para leitura confortável */
  font-family: inherit; /* Mantém a mesma fonte do site */
  font-size: 0.875rem;
  font-weight: 500;

  /* Dimensões e formato de pílula */
  padding: 8px 36px 8px 16px; /* Espaço extra à direita para a seta */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px; /* Borda bem arredondada combinando com os ícones circulares */
  
  /* Seta customizada em SVG (substitui a seta preta padrão) */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23E2E8F0%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px auto;

  cursor: pointer;
  outline: none;
  transition: all 0.2s ease-in-out;
}

/* Efeito ao passar o mouse (Hover) */
.language-switcher select:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* Efeito ao clicar/focar */
.language-switcher select:focus {
  border-color: #60a5fa; /* Leve destaque azul ao focar */
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

/* Estilo da lista suspensa (Evita que as opções fiquem brancas ao abrir no Windows) */
.language-switcher select option {
  background-color: #0f172a; /* Tom de azul escuro próximo ao fundo do seu site */
  color: #ffffff;
  padding: 10px;
}