:root {
    /* Paleta de Cores: Lobo Moderno */
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-tertiary: #737373;
    
    /* Laranja (Energia, Foco, Lobo) e Azul (Complementar) */
    --amber-500: #FF7F00;
    --amber-600: #E67300;
    --amber-400: #FF9933;
    
    --blue-500: #218AC2;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(33, 138, 194, 0.3); /* Blue soft border */
    
    --glass-bg: rgba(26, 26, 26, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

/* Background suave animado */
.ambient-background {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(33, 138, 194, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 440px;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Header */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.profile-image-container {
    position: relative;
}

.profile-img {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--amber-600);
    box-shadow: 0 0 20px rgba(217, 119, 6, 0.2);
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.02);
}

.status-indicator {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    background-color: var(--blue-500); /* Blue Status Indicator */
    border-radius: 50%;
    border: 4px solid var(--bg-primary);
}

.profile-title h1 {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.verified-badge {
    color: var(--blue-500);
    width: 20px;
    height: 20px;
}

.subtitle {
    font-size: 14px;
    color: var(--amber-400);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 320px;
}

/* Glass Card Global Styles */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

/* Vulnerability Card */
.vulnerability-card {
    padding: 20px;
}

.glow-effect {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--blue-500);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
}

.card-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.icon-amber {
    color: var(--amber-500);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-blue {
    color: var(--blue-500);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--amber-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.quote {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

/* Links Section */
.section-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    padding-left: 8px;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-link:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.action-link .icon-wrapper {
    background: var(--bg-tertiary);
    padding: 10px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.action-link:hover .icon-wrapper {
    background: rgba(33, 138, 194, 0.1); /* light blue bg */
}

.icon-white {
    color: var(--text-primary);
    width: 20px;
    height: 20px;
    transition: color 0.3s ease;
}

.action-link:hover .icon-white {
    color: var(--blue-500);
}

.link-text {
    flex: 1;
}

.link-text h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.link-text p {
    font-size: 13px;
    color: var(--text-secondary);
}

.icon-arrow {
    color: var(--text-tertiary);
    width: 20px;
    height: 20px;
    transition: color 0.3s ease;
}

.action-link:hover .icon-arrow {
    color: var(--blue-500);
}

/* Testimonials Section */
.testimonials-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonials-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.testimonials-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonial-card {
    min-width: 260px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-snap-align: start;
}

.quote-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
}

.author-info h4 {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

.author-info p {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* Final CTA Section */
.final-cta-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.final-cta-card {
    background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-secondary));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.final-cta-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    line-height: 1.1;
}

.cta-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cta-features {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.feature-item i {
    width: 16px;
    height: 16px;
}

.btn-primary {
    width: 100%;
    padding: 16px;
    background: var(--amber-600);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--amber-500);
    transform: scale(0.98);
}

.btn-primary i {
    width: 18px;
    height: 18px;
}

.btn-secondary {
    width: 100%;
    padding: 16px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--blue-500);
    color: #fff;
    border-color: var(--blue-500);
}

.dm-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 13px;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.dm-link:hover {
    color: var(--text-primary);
}

.dm-link i {
    width: 16px;
    height: 16px;
}

/* Footer Ajustado */
footer {
    text-align: center;
    padding: 24px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    display: none;
}

.modal-overlay.visible {
    opacity: 1;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    padding: 24px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-content.visible {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--text-primary);
}

.modal-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-btn {
    text-decoration: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

/* Animations */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-up {
    opacity: 0;
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }
