
/* ARQUIVO: fulanetti/style.css */
/* VERSÃO: 6.0 (Botões Unificados + Setup Img) */

:root {
    --fp-bg: #f8f9fa;
    --fp-text: #333;
    --fp-accent: #2c3e50;
    --fp-highlight: #c0392b; /* Vermelho padrão */
    --fp-success: #27ae60;
    --fp-card-bg: #ffffff;
    --fp-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

body {
    background-color: var(--fp-bg);
    color: var(--fp-text);
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    line-height: 1.6;
}

.fp-container {
    max-width: 1000px;
    margin: 0 auto;
    /* ANTES: padding: 60px 20px; */
    padding: 30px 20px; /* Reduzido pela metade */
}

/* HERO */
.fp-hero { 
    text-align: center; 
    /* ANTES: margin-bottom: 70px; */
    margin-bottom: 20px; /* Reduzido drasticamente */
}
.fp-profile-img-wrapper {
    width: 160px; height: 160px; margin: 0 auto 25px;
    border-radius: 50%; overflow: hidden;
    border: 5px solid var(--fp-accent);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); background-color: #fff;
}
.fp-profile-img { width: 100%; height: 100%; object-fit: cover; }
.fp-hero h1 { margin: 0; font-weight: 700; color: var(--fp-accent); }
.fp-subtitle { font-size: 1.1em; color: #666; margin-top: 10px; }

/* --- BOTÕES UNIFICADOS (CORREÇÃO 1) --- */
.fp-btn {
    display: inline-block;
    background-color: var(--fp-accent);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.fp-btn:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

/* Variação para Download (Vermelho/Destaque) */
.fp-btn.download {
    background-color: var(--fp-highlight);
    border-radius: 5px; /* Quadrado levemente arredondado para documentos */
}
.fp-btn.download:hover { background-color: #a93226; }

/* --- CARDS & BACKGROUNDS --- */
.fp-card {
    background: var(--fp-card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--fp-shadow);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.fp-quem-sou-bg {
    background-image: linear-gradient(rgba(255, 255, 255, 0.50), rgba(255, 255, 255, 0.50)), var(--bg-image);
    background-size: cover;
    background-position: center;
}
.fp-quem-sou-bg h3, .fp-quem-sou-bg p { position: relative; z-index: 2; }

/* --- GRID SYSTEM --- */
.fp-grid-2col {
    display: flex; flex-wrap: wrap; gap: 30px; margin-bottom: 40px;
}
.fp-col-half {
    flex: 1; min-width: 300px;
}
.fp-flex-center {
    display: flex; flex-direction: column; justify-content: center;
}

/* --- SETUP / EQUIPAMENTO (CORREÇÃO 4) --- */
.fp-setup-grid {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}
.fp-setup-txt { flex: 2; min-width: 300px; }
.fp-setup-img-container {
    flex: 1; 
    min-width: 250px;
    text-align: center;
}
.fp-setup-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--fp-shadow);
    border: 1px solid #eee;
}

/* --- SKILLS --- */
.fp-skills-list { margin-top: 20px; }
.fp-skill-item { margin-bottom: 15px; position: relative; cursor: help; }
.fp-skill-item::after {
    content: attr(data-tooltip);
    position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
    background: #333; color: #fff; padding: 8px; border-radius: 4px;
    font-size: 0.8em; width: 220px; text-align: center; opacity: 0;
    pointer-events: none; transition: opacity 0.2s; z-index: 100;
}
.fp-skill-item:hover::after { opacity: 1; bottom: 110%; }
.fp-skill-header { display: flex; justify-content: space-between; font-size: 0.9em; font-weight: 600; margin-bottom: 5px; }
.fp-skill-bar { width: 100%; height: 10px; background: #e0e0e0; border-radius: 5px; overflow: hidden; }
.fp-skill-progress { height: 100%; background: var(--fp-accent); border-radius: 5px; }

/* --- PROJETOS --- */
.fp-project-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 25px;
}
.fp-project-card {
    background: #fff; border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: transform 0.2s;
}
.fp-project-card:hover { transform: translateY(-5px); box-shadow: var(--fp-shadow); }
.fp-project-img { width: 100%; height: 150px; object-fit: cover; background: #ddd; }
.fp-project-content { padding: 15px; }
.fp-project-content h4 { margin: 0 0 10px 0; color: var(--fp-accent); }

/* --- LOCK & FOOTER --- */
.fp-lock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.fp-lock-form { max-width: 300px; margin: 20px auto 0; }
.fp-lock-form input { width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 4px; }
.fp-btn-outline {
    background: transparent; border: 1px solid var(--fp-text); padding: 8px 15px; cursor: pointer; border-radius: 4px; transition: all 0.2s;
}
.fp-btn-outline:hover { background: var(--fp-text); color: #fff; }
.fp-btn-outline.block { width: 100%; }

.sponsorship { text-align: center; background: #fdfdfd; }
.fp-sponsors-list { margin-top: 20px; display: flex; justify-content: center; gap: 20px; }
.fp-sponsors-list img { width: 48px; height: 48px; transition: transform 0.2s; }
.fp-sponsors-list img:hover { transform: scale(1.1); }
.fp-footer-nav { text-align: center; margin-top: 40px; font-size: 0.8em; color: #999; }
.fp-footer-nav a { color: #999; text-decoration: none; }
.fp-list-check { list-style: none; padding: 0; }
.fp-list-check li { margin-bottom: 10px; }
.fp-list-check li::before { content: '✔️'; margin-right: 10px; }

/* --- BELIEFS GRID (Área Restrita) --- */
.fp-beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.fp-belief-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.fp-belief-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #27ae60; /* Verde ao passar o mouse */
}

.fp-belief-card h4 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* Ajuste para o botão de rebloquear ficar alinhado */
.fp-lock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(39, 174, 96, 0.3);
    padding-bottom: 15px;
    margin-bottom: 20px;
}