
/* 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-topbar {
    display: flex;
    justify-content: flex-end;
    padding: 16px 24px 0;
}
.fp-topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}
.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; }

.fp-auth-box {
    margin-top: 18px;
}

.fp-auth-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(44, 62, 80, 0.14);
    border-radius: 999px;
    background: #fff;
    box-shadow: var(--fp-shadow);
    color: var(--fp-accent);
    font-size: 0.9rem;
}

.fp-auth-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.fp-auth-logout {
    color: var(--fp-highlight);
    font-weight: 700;
    text-decoration: none;
}

.fp-auth-logout:hover {
    text-decoration: underline;
}

.fp-auth-login {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 18px;
    line-height: 1.15;
}

.fp-auth-login span {
    font-size: 0.72rem;
    font-weight: 400;
    opacity: 0.88;
}

.fp-contact-btn {
    padding: 10px 18px;
}

.fp-auth-unavailable,
.fp-auth-notice {
    display: inline-block;
    max-width: 100%;
    color: #666;
    font-size: 0.9rem;
}

.fp-auth-notice {
    display: block;
    margin-top: 10px;
    color: var(--fp-highlight);
    font-weight: 600;
}

/* --- 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-orbit-card {
    overflow: visible;
    z-index: 5;
}

.fp-project-subtitle {
    max-width: 720px;
    margin: 8px auto 0;
    color: #5d6872;
    text-align: center;
    font-size: 1.05rem;
}

.fp-project-orbit {
    position: relative;
    min-height: 620px;
    margin-top: 25px;
    border-radius: 50%;
    isolation: isolate;
}

.fp-project-orbit::before {
    content: '';
    position: absolute;
    inset: 7% 12%;
    border: 1px dashed rgba(44, 62, 80, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.fp-project-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 6px solid var(--fp-accent);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    overflow: hidden;
    background: #fff;
}

.fp-project-orbit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-project-bubble {
    position: absolute;
    top: var(--orbit-y);
    left: var(--orbit-x);
    z-index: 3;
    width: var(--bubble-size);
    height: var(--bubble-size);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px;
    border: 2px solid rgba(44, 62, 80, 0.22);
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    color: var(--fp-accent);
    text-align: center;
    text-decoration: none;
    transform: translate(-50%, -50%);
    cursor: pointer;
    animation: fp-bubble-drift var(--float-duration) ease-in-out infinite;
    animation-delay: var(--float-delay);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.fp-project-bubble.no-link {
    cursor: default;
}

.fp-project-bubble.locked {
    filter: grayscale(0.35);
    opacity: 0.78;
}

.fp-project-lock {
    font-size: 1.7rem;
    line-height: 1;
}

.fp-project-bubble:hover,
.fp-project-bubble:focus-visible {
    z-index: 20;
    background: #fff;
    border-color: var(--fp-highlight);
    box-shadow: 0 18px 36px rgba(0,0,0,0.2);
    outline: none;
}

.fp-project-bubble-img {
    width: 42%;
    height: 42%;
    object-fit: contain;
    border-radius: 50%;
}

.fp-project-bubble-title {
    max-width: 100%;
    color: var(--fp-accent);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.fp-project-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    z-index: 30;
    width: min(280px, 78vw);
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(44, 62, 80, 0.96);
    color: #fff;
    text-align: left;
    box-shadow: 0 14px 32px rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.fp-project-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(44, 62, 80, 0.96);
}

.fp-project-tooltip strong,
.fp-project-tooltip span {
    display: block;
}

.fp-project-tooltip strong {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.fp-project-tooltip span {
    font-size: 0.82rem;
    line-height: 1.45;
}

.fp-project-bubble:hover .fp-project-tooltip,
.fp-project-bubble:focus-visible .fp-project-tooltip {
    opacity: 1;
    transform: translate(-50%, 0);
}

.fp-project-login-footer {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(44, 62, 80, 0.12);
}

.fp-section-note {
    margin: 0 0 8px;
    color: #65717c;
    font-size: 0.95rem;
}

.fp-summary-card > h3 {
    margin-top: 0;
}

.fp-toggle-panel {
    margin-top: 14px;
    border: 1px solid rgba(44, 62, 80, 0.14);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.fp-toggle-panel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    color: var(--fp-accent);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.fp-toggle-panel summary::-webkit-details-marker {
    display: none;
}

.fp-toggle-panel summary::after {
    content: '+';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #eef1f3;
    color: var(--fp-accent);
    flex: 0 0 auto;
}

.fp-toggle-panel[open] summary::after {
    content: '-';
    background: var(--fp-accent);
    color: #fff;
}

.fp-toggle-content {
    padding: 18px;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.fp-toggle-content.fp-quem-sou-bg {
    padding: 24px;
}

.fp-toggle-panel-compact {
    margin: 0;
    border: none;
    background: transparent;
}

.fp-toggle-panel-compact summary {
    padding: 0 0 10px;
    border-bottom: 2px solid #f0f0f0;
}

.fp-toggle-panel-compact .fp-toggle-content {
    padding: 14px 0 0;
    border-top: none;
}

.fp-cv-action {
    text-align: center;
    margin-top: 30px;
}

@keyframes fp-bubble-drift {
    0%, 100% {
        transform: translate(-50%, -50%) translate3d(0, 0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) translate3d(12px, -14px, 0) rotate(2deg);
    }
    50% {
        transform: translate(-50%, -50%) translate3d(-10px, -6px, 0) rotate(-1deg);
    }
    75% {
        transform: translate(-50%, -50%) translate3d(8px, 12px, 0) rotate(1deg);
    }
}

@media (max-width: 768px) {
    .fp-topbar { justify-content: center; padding: 14px 12px 0; }
    .fp-topbar-actions,
    .fp-player-card,
    .fp-phase-nav-card,
    .fp-game-header {
        align-items: stretch;
        flex-direction: column;
    }
    .fp-password-grid,
    .fp-phase-final {
        grid-template-columns: 1fr;
    }

    .fp-project-orbit {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        min-height: 0;
        margin-top: 20px;
        padding-top: 170px;
        border-radius: 0;
    }

    .fp-project-orbit::before {
        display: none;
    }

    .fp-project-orbit-center {
        top: 0;
        width: 150px;
        height: 150px;
        transform: translateX(-50%);
    }

    .fp-project-bubble {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        min-height: 118px;
        transform: none;
        border-radius: 22px;
        animation: none;
    }

    .fp-project-bubble:hover,
    .fp-project-bubble:focus-visible {
        transform: none;
    }

    .fp-project-tooltip {
        left: 50%;
        bottom: calc(100% + 10px);
        width: min(260px, 84vw);
    }
}

@media (max-width: 430px) {
    .fp-project-orbit {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fp-project-bubble {
        animation: none;
    }
}

/* --- 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) --- */
/* --- GAME --- */
.fp-player-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.fp-player-kicker {
    display: block;
    color: var(--fp-highlight);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}
.fp-phase-nav-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
}
.fp-phase-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.fp-phase-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 2px solid rgba(44, 62, 80, 0.22);
    border-radius: 50%;
    background: #fff;
    color: var(--fp-accent);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}
.fp-phase-dot:hover,
.fp-phase-dot:focus-visible,
.fp-phase-dot.is-current {
    border-color: var(--fp-highlight);
    transform: translateY(-2px);
    outline: none;
}
.fp-phase-dot.is-complete {
    background: #f1fff5;
    border-color: rgba(39,174,96,0.55);
}
.fp-phase-dot.is-locked {
    color: #8b949c;
    background: #f2f4f5;
    cursor: not-allowed;
}
.fp-phase-ellipsis {
    color: var(--fp-accent);
    font-weight: 800;
    letter-spacing: 0;
}
.fp-game-card { overflow: visible; }
.fp-game-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}
.fp-game-counters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.fp-game-counters[hidden] {
    display: none;
}
.fp-game-counters span {
    display: inline-flex;
    min-width: 70px;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f0f2f4;
    color: var(--fp-accent);
    font-size: 0.88rem;
    font-weight: 700;
}
.fp-game-stage {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e2e5e8;
    background: #111;
}
.fp-game-scene { display: block; width: 100%; height: auto; }
.fp-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}
.fp-hotspot:hover,
.fp-hotspot.found {
    border-color: rgba(192,57,43,0.9);
    background: rgba(192,57,43,0.22);
}
.fp-debug-hotspots .fp-hotspot {
    width: 16px !important;
    height: 16px !important;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #f1c40f;
    box-shadow: 0 0 0 3px rgba(241,196,15,0.32), 0 2px 8px rgba(0,0,0,0.35);
}
.fp-debug-hotspots .fp-hotspot:hover,
.fp-debug-hotspots .fp-hotspot.found {
    background: #2ecc71;
    border-color: #fff;
}
.fp-debug-hotspots .fp-hotspot.is-hotspot-open {
    background: #27ae60;
    box-shadow: 0 0 0 3px rgba(39,174,96,0.28), 0 2px 8px rgba(0,0,0,0.35);
}
.fp-debug-hotspots .fp-hotspot.is-hotspot-locked,
.fp-debug-hotspots .fp-hotspot-type-history.is-history-locked {
    background: #f1c40f;
    box-shadow: 0 0 0 3px rgba(241,196,15,0.32), 0 2px 8px rgba(0,0,0,0.35);
    cursor: default;
}
.fp-debug-hotspots .fp-hotspot.is-hotspot-locked:hover,
.fp-debug-hotspots .fp-hotspot-type-history.is-history-locked:hover {
    background: #f1c40f;
    border-color: #fff;
}
.fp-debug-hotspots .fp-hotspot.found {
    box-shadow: 0 0 0 3px rgba(46,204,113,0.36), 0 2px 8px rgba(0,0,0,0.35);
}
.fp-hotspot-modal[hidden] {
    display: none;
}
.fp-hotspot-modal {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 16px;
    z-index: 20;
    display: flex;
    width: min(720px, calc(100% - 32px));
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    background: transparent;
    transform: translateX(-50%);
    pointer-events: none;
}
.fp-hotspot-modal-box {
    position: relative;
    width: 100%;
    padding: 16px 46px 16px 18px;
    border-radius: 8px;
    background: rgba(255,255,255,0.94);
    color: var(--fp-accent);
    box-shadow: 0 12px 34px rgba(0,0,0,0.28);
    pointer-events: auto;
}
.fp-hotspot-modal-box p {
    margin: 8px 0 0;
    max-height: 132px;
    overflow-y: auto;
}
.fp-hotspot-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #eef1f3;
    color: var(--fp-accent);
    cursor: pointer;
    font-weight: 800;
}
.fp-password-shell {
    margin-top: 16px;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid rgba(44, 62, 80, 0.12);
    background: #f7f9fa;
    text-align: center;
}
.fp-password-shell[hidden] {
    display: none;
}
.fp-password-panel {
    padding: 18px;
    border-radius: 8px;
    background: rgba(44, 62, 80, 0.95);
    color: #fff;
}
.fp-password-intro {
    max-width: 760px;
    margin: 0 auto 16px;
    color: #edf0f2;
}
.fp-password-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.fp-password-grid label,
.fp-letter-track { display: block; }
.fp-password-grid input {
    width: 100%;
    box-sizing: border-box;
    margin-top: 6px;
    padding: 10px;
    border: 1px solid #d7dce0;
    border-radius: 6px;
}
.fp-letter-track { min-height: 30px; margin-top: 8px; }
.fp-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 24px;
    margin: 0 2px 3px 0;
    border-radius: 4px;
    background: rgba(255,255,255,0.2);
    color: transparent;
    font-weight: 700;
}
.fp-letter.correct { background: var(--fp-success); color: #fff; }
.fp-letter.masked { background: #edf0f2; color: #66727c; }
.fp-password-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.fp-phase-final {
    display: grid;
    grid-template-columns: 1fr minmax(180px, 260px);
    gap: 20px;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    background: #f1fff5;
    border: 1px solid rgba(39,174,96,0.35);
}
.fp-phase-final[hidden] {
    display: none;
}
.fp-phase-carousel {
    position: relative;
    min-height: 330px;
}
.fp-phase-slide {
    display: none;
}
.fp-phase-slide.active {
    display: block;
}
.fp-phase-slide img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--fp-shadow);
}
.fp-phase-slide h5 {
    margin: 12px 0 4px;
    color: var(--fp-accent);
}
.fp-phase-slide p {
    margin: 0;
    font-size: 0.9rem;
}
.fp-phase-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}
.fp-phase-carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(44,62,80,0.24);
}
.fp-phase-carousel-dots span.active {
    background: var(--fp-highlight);
}

.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.locked {
    color: #777;
    background: #f6f6f6;
    border-style: dashed;
}

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