/* --- CONFIGURAÇÕES GERAIS E CORES --- */
:root {
    /* --- PALETA DARK (FIFA PRIME) --- */
    --bg-body: #090a0c;       /* Preto Profundo */
    --bg-card: rgba(30, 35, 45, 0.7); /* Vidro Escuro */
    --primary: #3b82f6;       /* Azul Grêmio Elétrico */
    --accent: #00eaff;        /* Ciano Neon (Brilho) */
    --gold: #ffcc00;          /* Dourado Títulos */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --glow: 0 0 20px rgba(59, 130, 246, 0.3); /* Brilho azul */
    --gradient-text: linear-gradient(to right, #ffffff, #94a3b8);
    --btn-social-bg: rgba(255, 255, 255, 0.05);
}

/* --- PALETA LIGHT (MODO DIA) --- */
.light-mode {
    --bg-body: #eef2f6;
    --bg-card: #ffffff;
    --primary: #0d80bf;       /* Azul Grêmio Sólido */
    --accent: #0056b3;
    --text-main: #1e293b;     /* Cinza Chumbo Escuro */
    --text-muted: #64748b;
    --border: 1px solid rgba(0, 0, 0, 0.05);
    --glow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --gradient-text: linear-gradient(to right, #0d80bf, #1e293b);
    --btn-social-bg: rgba(0, 0, 0, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; transition: background 0.4s ease, color 0.3s ease, border-color 0.3s; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden; /* Evita rolagem lateral indesejada */
    background-image: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 70%);
}

.container {
    max-width: 1200px; /* Aumentei a largura máxima para dar respiro no PC */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* --- ANIMAÇÕES --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero, .quick-links, .stats-dynamic, .messi-stats-section, .career-table-section, .trophies-dynamic-section, .timeline-section {
    animation: fadeInUp 0.8s ease forwards;
}

/* --- BOTÃO TEMA FLUTUANTE --- */
.theme-switch {
    position: fixed; top: 25px; right: 25px; width: 50px; height: 50px;
    border-radius: 50%; background: var(--bg-card); border: var(--border);
    backdrop-filter: blur(10px); color: var(--text-main); font-size: 1.5rem;
    cursor: pointer; z-index: 999; box-shadow: var(--glow);
    display: flex; align-items: center; justify-content: center;
}

/* --- HERO SECTION --- */
.hero { text-align: center; padding: 60px 0 20px; }

.profile-frame {
    position: relative; width: 170px; height: 170px; margin: 0 auto 25px;
}

.profile-pic {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
    border: 4px solid var(--bg-body);
    box-shadow: 0 0 0 4px var(--primary), var(--glow);
}

.verified-badge {
    position: absolute; bottom: 5px; right: 5px;
    background: var(--primary); color: white; width: 32px; height: 32px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: bold; border: 3px solid var(--bg-body);
}

h1 {
    font-weight: 900; font-size: 3rem; text-transform: uppercase;
    letter-spacing: -2px; margin: 0;
    background: var(--gradient-text);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 0.9rem; color: var(--primary); font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px;
}

.bio-text { color: var(--text-muted); font-size: 0.95rem; max-width: 600px; margin: 0 auto; }

/* --- BARRA SOCIAL TOPO --- */
.social-top-bar { padding: 20px 0; position: relative; z-index: 10; }
.social-flex { display: flex; justify-content: center; gap: 25px; }

.social-icon {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--btn-social-bg); backdrop-filter: blur(5px);
    border: var(--border); display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--text-main); text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-icon:hover { transform: translateY(-5px) scale(1.1); color: #fff !important; border-color: transparent; }
.youtube:hover { background: #ff0000; box-shadow: 0 0 20px rgba(255, 0, 0, 0.6); }
.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 0 20px rgba(220, 39, 67, 0.6); }
.tiktok:hover { background: #000; border: 1px solid #00f2ea; box-shadow: 0 0 20px rgba(0, 242, 234, 0.4); color: #ff0050; }
.whatsapp:hover { background: #25d366; box-shadow: 0 0 20px rgba(37, 211, 102, 0.6); }

/* --- LINKS --- */
.table-link { color: inherit; text-decoration: none; border-bottom: 1px dotted var(--primary); transition: 0.3s; }
.table-link:hover { color: var(--primary); }

.trophy-link { font-size: 0.7rem; color: var(--primary); text-decoration: none; display: block; margin: 2px 0; opacity: 0.8; }
.trophy-link:hover { opacity: 1; text-decoration: underline; }

/* --- TIMELINE --- */
.timeline { list-style: none; padding-left: 10px; text-align: left; max-width: 800px; margin: 0 auto; }
.timeline li { border-left: 2px solid var(--border); padding-left: 25px; padding-bottom: 40px; position: relative; }
.timeline li:last-child { border-color: transparent; }
.timeline li::before {
    content: ''; position: absolute; left: -6px; top: 0; width: 10px; height: 10px;
    background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent);
}
.timeline .year { color: var(--accent); font-weight: 800; }
.timeline h3 { color: var(--text-main); margin: 5px 0; }
.timeline p { color: var(--text-muted); font-size: 0.9rem; }

/* --- GALERIA REELS --- */
.reels-section { padding: 60px 0; overflow: hidden; }
.reels-container {
    display: flex; gap: 20px; overflow-x: auto; padding: 20px 10px 50px 10px;
    scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
}
.reels-container::-webkit-scrollbar { display: none; }

.reel-item {
    min-width: 280px; height: 500px; border-radius: 20px; position: relative;
    overflow: hidden; scroll-snap-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1); transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer; background-color: #1a1a1a;
}
.reel-item:hover { transform: translateY(-10px); border-color: #00eaff; box-shadow: 0 20px 40px rgba(0, 234, 255, 0.2); }
.reel-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reel-item:hover .reel-img { transform: scale(1.1); }

.reel-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); color: white;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.reel-icon { font-size: 1.4rem; margin-bottom: 10px; color: #00eaff; text-shadow: 0 0 10px rgba(0, 234, 255, 0.5); }
.reel-overlay h3 { font-size: 1.5rem; margin: 0; font-weight: 800; text-transform: uppercase; line-height: 1; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); }
.reel-overlay p { font-size: 0.9rem; margin: 8px 0 0 0; opacity: 0.9; color: #ddd; }

/* --- FOOTER PADRÃO FUTTALENTO --- */
footer {
    text-align: center;
    padding: 50px 20px;
    /* Usa a borda sutil do tema */
    border-top: 1px solid var(--border);
    /* Usa a cor de texto suave do tema */
    color: var(--text-muted);
    font-size: 0.95rem;
    /* Fundo ligeiramente mais escuro para fechar a página */
    background: linear-gradient(to bottom, var(--bg-body), rgba(0,0,0,0.3));
}

.footer-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Caixa de destaque da Agência */
.managed-by {
    display: inline-block;
    /* Fundo sutil baseado na cor do time */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 15px 30px;
    border-radius: 50px; /* Borda bem redonda e moderna */
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

/* Efeito ao passar o mouse na caixa da agência */
.managed-by:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary); /* Brilha com a cor do time */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.managed-by p {
    margin: 0 0 5px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    opacity: 0.7;
}

/* O Link da FutTalento */
.agency-link {
    /* Usa a cor principal do atleta (Verde, Azul, etc.) */
    color: var(--primary);
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    transition: 0.3s;
}

/* Efeito ao passar o mouse no link */
.agency-link:hover {
    /* Fica branco e ganha um brilho da cor do time */
    color: #ffffff;
    text-shadow: 0 0 15px var(--primary);
}

/* Ajuste para telas pequenas */
@media (max-width: 480px) {
    .managed-by {
        width: 100%;
        padding: 15px;
    }
    .agency-link {
        font-size: 1.2rem;
    }
}
/* --- ESTATÍSTICAS ESTILO MESSI (COM ABAS) --- */
.messi-stats-section {
    position: relative; padding: 80px 0; overflow: hidden; color: white; min-height: 600px;
}
.stats-bg-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    filter: blur(8px) brightness(0.3); transform: scale(1.1); z-index: 0;
}
.messi-header { text-align: left; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.messi-header h2 { font-size: 2.5rem; text-transform: uppercase; font-weight: 900; letter-spacing: -1px; margin-bottom: 20px; }

.stats-tabs { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 5px; }
.tab-btn {
    background: transparent; border: none; color: rgba(255,255,255,0.5);
    font-size: 1rem; font-weight: 700; text-transform: uppercase; padding: 10px 0;
    cursor: pointer; position: relative; transition: 0.3s; font-family: 'Montserrat', sans-serif; white-space: nowrap;
}
.tab-btn:hover { color: white; }
.tab-btn.active { color: var(--accent); }
.tab-btn.active::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
    background: var(--accent); box-shadow: 0 0 10px var(--accent);
}

.tab-content { display: none; animation: fadeEffect 0.5s; }
.tab-content.active-content { display: block; }
@keyframes fadeEffect { from {opacity: 0; transform: translateY(10px);} to {opacity: 1; transform: translateY(0);} }

.club-header { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; background: rgba(255,255,255,0.05); padding: 15px; border-radius: 10px; }
.club-logo-mini { height: 40px; width: auto; }

.stat-row { margin-bottom: 25px; }
.stat-info h3 { font-size: 0.9rem; color: #ccc; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; letter-spacing: 1px; text-align: right; }
.progress-bar-container { height: 40px; background: rgba(255,255,255,0.05); border-radius: 4px; position: relative; display: flex; align-items: center; }
.progress-bar { height: 100%; border-radius: 4px 0 0 4px; position: relative; }

.red-bar { background: #ef4444; box-shadow: 0 0 15px rgba(239, 68, 68, 0.4); }
.blue-bar { background: #3b82f6; box-shadow: 0 0 15px rgba(59, 130, 246, 0.4); }
.purple-bar { background: #8b5cf6; box-shadow: 0 0 15px rgba(139, 92, 246, 0.4); }
.green-bar { background: #10b981; box-shadow: 0 0 15px rgba(16, 185, 129, 0.4); }
.yellow-bar { background: #eab308; box-shadow: 0 0 15px rgba(234, 179, 8, 0.4); }

.bar-value { position: absolute; right: 15px; font-size: 1.5rem; font-weight: 900; color: white; z-index: 2; }
.sub-stat { font-size: 0.75rem; color: #888; text-align: right; margin-top: 5px; font-style: italic; }

/* --- FICHA TÉCNICA DINÂMICA (ESTILO MESSI) --- */
.stats-dynamic { padding: 60px 0; position: relative; overflow: hidden; }
.ficha-container { display: flex; align-items: center; gap: 40px; position: relative; flex-wrap: wrap; }

.athlete-image-feature { flex: 1; max-width: 400px; position: relative; z-index: 2; margin: 0 auto; }
.action-shot {
    width: 100%; height: auto; border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: perspective(1000px) rotateY(10deg) translateX(20px); transition: 0.5s;
}
.ficha-container:hover .action-shot { transform: perspective(1000px) rotateY(0deg) translateX(0); }

.athlete-data-structure { flex: 1.5; display: flex; flex-direction: column; gap: 25px; z-index: 1; width: 100%; }

.data-block {
    background: var(--bg-card); backdrop-filter: blur(15px); border: var(--border);
    border-radius: 16px; padding: 25px 30px; display: flex; align-items: center;
    justify-content: space-between; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.data-block::before { content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%; }
.blue-accent::before { background: var(--primary); box-shadow: 0 0 15px var(--primary); }
.cyan-accent::before { background: var(--accent); box-shadow: 0 0 15px var(--accent); }

.data-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }
.data-group { display: flex; align-items: center; gap: 15px; flex: 1; }
.data-icon { font-size: 1.8rem; color: var(--text-muted); opacity: 0.7; }
.data-label { display: block; font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; margin-bottom: 5px; }
.data-value { font-size: 1.4rem; font-weight: 900; color: var(--text-main); display: block; line-height: 1.1; }
.highlight-neon { color: var(--accent); text-shadow: 0 0 10px rgba(0, 234, 255, 0.4); }

/* --- TROFÉUS ESTILO MESSI (CORRIGIDO) --- */
.trophies-dynamic-section {
    padding: 80px 0; overflow: hidden;
    background: linear-gradient(to bottom, var(--bg-body), #050505);
}
.trophies-container {
    display: flex; align-items: center; gap: 40px; flex-wrap: wrap; /* Correção para telas pequenas */
}

.trophy-hero-image {
    flex: 1; min-width: 300px; position: relative; display: flex; justify-content: center; padding: 20px;
}
.hero-img-effect {
    width: 100%; max-width: 350px; height: auto; border-radius: 20px;
    filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.5)); transform: rotate(-3deg);
    transition: 0.5s; z-index: 2; border: 3px solid rgba(255,255,255,0.1);
}
.trophy-hero-image::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(3deg); width: 100%; max-width: 350px; height: 100%;
    border: 2px solid var(--primary); border-radius: 20px; z-index: 1; opacity: 0.3;
}

.trophy-carousel-wrapper { flex: 1.5; width: 100%; overflow: hidden; }

/* CORREÇÃO DO TÍTULO CORTADO */
.section-title-wrapper { margin-bottom: 30px; text-align: left; }
.section-title-wrapper h2 {
    font-size: 2.2rem; /* Levemente menor para caber melhor */
    line-height: 1.2; /* Mais espaço entre linhas */
    margin-bottom: 10px; text-transform: uppercase;
    display: block; width: 100%;
}
.section-title-wrapper h2 span { color: var(--primary); display: inline-block; }
.section-title-wrapper p { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.8; }

.cards-scroller {
    display: flex; gap: 25px; overflow-x: auto; padding: 20px 5px 40px 5px;
    scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
    mask-image: linear-gradient(to right, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
}
.cards-scroller::-webkit-scrollbar { display: none; }

.messi-card {
    flex: 0 0 240px; background: #151515; border-radius: 16px; overflow: hidden;
    scroll-snap-align: start; display: flex; flex-direction: column;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6); transition: transform 0.3s, border-color 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
}
.messi-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2); }

.card-header-date { background: var(--primary); color: white; padding: 15px; text-align: center; display: flex; flex-direction: column; font-weight: 800; line-height: 1; }
.highlight-card .card-header-date { background: var(--accent); color: black; }
.month { font-size: 1.2rem; display: block; margin-bottom: 5px; }
.year { font-size: 0.8rem; opacity: 0.8; }

.card-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; align-items: center; text-align: center; background: linear-gradient(to bottom, #222, #111); }
.status-badge { font-size: 0.7rem; font-weight: 800; padding: 4px 10px; border-radius: 4px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.gold { background: rgba(255, 215, 0, 0.2); color: #ffcc00; border: 1px solid #ffcc00; }
.blue { background: rgba(0, 234, 255, 0.2); color: #00eaff; border: 1px solid #00eaff; }

.messi-card h3 { font-size: 1rem; color: white; margin-bottom: 15px; line-height: 1.3; height: 40px; display: flex; align-items: center; justify-content: center; }
.match-details { margin-bottom: 20px; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 10px 0; width: 100%; }
.score { font-size: 1.5rem; font-weight: 900; color: white; }
.score.big { font-size: 2.5rem; color: var(--accent); }
.team-name { font-size: 0.8rem; color: #aaa; text-transform: uppercase; }
.card-footer { font-size: 0.8rem; color: #666; margin-top: auto; display: flex; align-items: center; gap: 8px; }

/* --- RESPONSIVIDADE (CELULAR) --- */
@media (max-width: 900px) {
    .ficha-container, .trophies-container { flex-direction: column; gap: 30px; }
    
    .athlete-image-feature, .trophy-hero-image { max-width: 250px; margin: 0 auto; }
    .action-shot, .hero-img-effect { transform: none; }
    
    .data-block { flex-direction: column; text-align: center; gap: 20px; }
    .data-divider { width: 100%; height: 1px; }
    .data-group { flex-direction: column; gap: 5px; }
    
    .section-title-wrapper { text-align: center; margin-top: 20px; }
    .trophy-hero-image::before { display: none; }
    
    .messi-header h2 { font-size: 1.8rem; }
    .cards-scroller { padding-left: 20px; } /* Ajuste de padding no mobile */
}
/* --- TRAJETÓRIA ROCKET (JORNADA) --- */
.rocket-journey-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(to top, #000, var(--bg-body));
}

/* Fundo com Imagem e Opacidade */
.journey-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: top center;
    opacity: 0.15; /* Bem suave para não atrapalhar o texto */
    filter: grayscale(100%) contrast(1.2); /* Estilo dramático */
    z-index: 0;
}

.rocket-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px; /* Espaço para a linha no mobile */
}

/* A LINHA TRACEJADA (O Rastro do Foguete) */
.rocket-timeline::before {
    content: '';
    position: absolute;
    top: 20px; 
    left: 29px; /* Alinhado com os ícones */
    height: 95%;
    width: 2px;
    background-image: linear-gradient(to bottom, var(--accent) 50%, rgba(255,255,255,0.1) 50%);
    background-size: 1px 20px; /* Tamanho do traço */
    z-index: 1;
    box-shadow: 0 0 15px var(--accent);
}

/* ITEM DA JORNADA */
.journey-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px; /* Afasta o texto da linha */
}

/* ÍCONES/MARCADORES (BOLINHAS NA LINHA) */
.journey-marker {
    position: absolute;
    left: -21px; /* Centraliza na linha */
    top: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-body);
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.journey-item:hover .journey-marker {
    border-color: var(--primary);
    color: var(--primary);
    background: white;
    transform: scale(1.1);
}

/* O FOGUETE (DESTACADO) */
.rocket-icon {
    background: var(--accent) !important;
    color: #000 !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px var(--accent);
    animation: floatRocket 2s infinite ease-in-out;
}

@keyframes floatRocket {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* CONTEÚDO (TEXTO) */
.journey-content {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.journey-item:hover .journey-content {
    transform: translateX(10px);
    border-color: var(--primary);
    background: rgba(30, 35, 45, 0.8);
}

.journey-year {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: white;
}

.journey-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin: 0;
}

/* DESTAQUE PARA O CARD ATUAL */
.highlight-content {
    border: 1px solid var(--accent);
    background: linear-gradient(to right, rgba(0, 234, 255, 0.05), transparent);
}

/* BASE DE LANÇAMENTO (FIM DA LINHA) */
.launch-pad {
    text-align: left;
    margin-left: -5px;
    padding-top: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}
.launch-pad i { margin-right: 5px; color: var(--primary); }

/* RESPONSIVO */
@media (min-width: 768px) {
    .rocket-timeline { padding-left: 0; }
    .rocket-timeline::before { left: 50%; transform: translateX(-50%); }
    
    .journey-item { width: 50%; margin-left: auto; padding-left: 40px; }
    .journey-marker { left: -61px; } /* Ajuste fino para desktop */
    
    /* Alternar lados (Zig Zag) */
    .journey-item:nth-child(even) {
        margin-left: 0;
        margin-right: auto;
        padding-left: 0;
        padding-right: 40px;
        text-align: right;
    }
    .journey-item:nth-child(even) .journey-marker {
        left: auto;
        right: -61px;
    }
    .journey-item:nth-child(even) .journey-content:hover {
        transform: translateX(-10px);
    }
    
    .launch-pad { text-align: center; margin-left: 0; }
}
