:root {
    --bg-dark: #000000;
    --neon-green: #39FF14;
    --white: #ffffff;
    --gray-dark: #121212;
    --gray-light: #1e1e1e;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('assets/bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header Styles */
.profile-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.admin-access-link {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.65rem;
    color: #444;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    transition: 0.3s;
}

.admin-access-link:hover {
    color: var(--neon-green);
}

.avatar-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--neon-green);
    margin: 0 auto 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -1px;
    background: linear-gradient(to right, var(--white), var(--neon-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Comparison Card (Systematic Training) */
.comparison-card {
    text-align: left;
    border: 1px solid var(--neon-green);
}

.comparison-header {
    background: var(--neon-green);
    color: var(--bg-dark);
    padding: 12px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.comparison-body {
    padding: 20px;
}

.comp-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-label {
    font-weight: 400;
    color: #999;
}

.comp-value {
    font-weight: 700;
    color: var(--white);
}

.card-footer {
    padding: 15px;
    background: rgba(57, 255, 20, 0.05);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--neon-green);
    text-align: center;
}

.bio {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 12px;
}

.stats {
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-green);
    text-transform: uppercase;
}

.stat-item {
    transition: 0.3s;
}

.stat-item:hover {
    transform: scale(1.1);
}

/* Links Section */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.link-card {
    display: block;
    text-decoration: none;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.link-card.highlight {
    background: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
}

.link-card.highlight .title {
    color: var(--bg-dark);
}

.link-card.highlight .subtitle,
.link-card.highlight .icon {
    color: rgba(0, 0, 0, 0.7);
}

.link-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    font-size: 1.5rem;
}

.text-group {
    display: flex;
    flex-direction: column;
}

.title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.subtitle {
    font-size: 0.8rem;
    color: #999;
}

/* Hover Effects */
.link-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.1);
}

.link-card.highlight:hover {
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.4);
}

/* Social Proof */
.social-proof {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.social-proof h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.proof-card {
    background: var(--glass);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.plus-icon {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 5px;
}

.proof-card p {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
}

/* Content Sections */
.content-section {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.section-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-green);
}

.content-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
}

.content-image-small {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

/* Results Gallery */
.results-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.result-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--neon-green);
    aspect-ratio: 1 / 1;
}

.result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.results-caption {
    font-size: 0.85rem;
    color: #999;
}

/* FAQ / Dúvidas */
.faq-list {
    padding: 10px 20px 20px;
    text-align: left;
}

.faq-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    color: var(--white);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #aaa;
}

footer {
    margin-top: auto;
    padding: 60px 20px 40px;
    font-size: 0.75rem;
    color: #444;
    text-align: center;
    width: 100%;
}

.dev-credit a {
    text-decoration: none;
    color: inherit;
}

.dev-credit strong {
    color: var(--neon-green);
    font-weight: 800;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container>* {
    animation: fadeIn 0.8s ease-out forwards;
}

.profile-header {
    animation-delay: 0.1s;
}

.link-card:nth-child(1) {
    animation-delay: 0.2s;
}

.link-card:nth-child(2) {
    animation-delay: 0.3s;
}

.link-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Premium: Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.splash-content {
    text-align: center;
}

.splash-logo {
    margin-bottom: 20px;
    animation: pulse 2s infinite ease-in-out;
}

.splash-img {
    max-width: 150px;
    height: auto;
}

.splash-loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--glass-border);
    border-top: 3px solid var(--neon-green);
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

.splash-text {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Premium: Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    /* Faz o ícone ficar branco */
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: black;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

/* Scarcity Banner */
.scarcity-banner {
    background: var(--neon-green);
    color: var(--bg-dark);
    text-align: center;
    padding: 8px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
    animation: pulseHeader 2s infinite ease-in-out;
}

@keyframes pulseHeader {

    0%,
    100% {
        background: var(--neon-green);
    }

    50% {
        background: #32e612;
    }
}

/* Video Container */
.video-container {
    position: relative;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    background: #000;
}

.video-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
    z-index: 2;
}

.video-controls-overlay.playing {
    opacity: 0;
    visibility: hidden;
}

.play-icon {
    font-size: 3.5rem;
    color: var(--neon-green);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(57, 255, 20, 0.6));
    transition: transform 0.3s;
}

.video-container:hover .play-icon {
    transform: scale(1.1);
}

/* Elite Testimonials */
.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-card {
    background: var(--gray-dark);
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid var(--neon-green);
    position: relative;
    text-align: left;
}

.testimonial-quote {
    font-style: italic;
    font-size: 0.95rem;
    color: #eee;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.85rem;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-tag {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.small-cta {
    padding: 12px !important;
    text-align: center;
}

/* Login Specific */
.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card {
    padding: 40px !important;
    border: 1px solid var(--neon-green);
    animation: fadeIn 0.8s ease-out;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    max-width: 120px;
    margin-bottom: 20px;
}

.login-header h2 {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--neon-green);
}

.login-header p {
    font-size: 0.8rem;
    color: #666;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--neon-green);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 700;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 12px 15px;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--neon-green);
    background: rgba(255, 255, 255, 0.1);
}

.login-btn {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.login-footer {
    margin-top: 30px;
    text-align: center;
}

.login-footer a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.login-footer a:hover {
    color: var(--white);
}