:root {
    /* Cores principais baseadas na referência Kiwify */
    --dark-bg: #090D0B;
    --card-bg: #111111;
    --text-color: #ffffff;
    --primary-color: #67F6BA;
    --secondary-color: #07F793;
    --accent-color: #02B168;
    --terminal-bg: #0d0d0d;
    --terminal-text: #67F6BA;
    --error-color: #ff3333;
    --success-color: #33ff33;
    --warning-color: #ffcc00;
    --info-color: #33ccff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

#profilePicture{
    width: 150px;
    border-radius: 100%;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(103, 246, 186, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(103, 246, 186, 0.6));
}

.logo h1 {
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 400;
}

/* Hero Section */
.hero {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, rgba(103, 246, 186, 0.1) 0%, rgba(7, 247, 147, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.congratulation {
    margin-bottom: 20px;
}

.congratulation h2 {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.highlight {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 15px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(103, 246, 186, 0.5);
}

.description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.phone-preview {
    position: relative;
    margin: 40px auto;
    max-width: 300px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(103, 246, 186, 0.2);
}

.phone-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 20px rgba(103, 246, 186, 0.3));
    transition: transform 0.3s ease;
}

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

.input-section {
    margin: 40px 0;
    background: rgba(17, 17, 17, 0.6);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(103, 246, 186, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.input-section p {
    margin-bottom: 15px;
    font-weight: 500;
}

.input-container {
    position: relative;
    margin: 20px 0;
}

.phone-input {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(103, 246, 186, 0.3);
    border-radius: 12px;
    background-color: rgba(9, 13, 11, 0.8);
    color: var(--text-color);
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    outline: none;
}

.phone-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(103, 246, 186, 0.2);
}

.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(7, 247, 147, 0.3);
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.action-button:hover::before {
    left: 100%;
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(103, 246, 186, 0.3);
}

/* Estilo para botão desabilitado */
.action-button.disabled {
    background: linear-gradient(90deg, #555 0%, #777 100%);
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.action-button.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.action-button.disabled::before {
    display: none;
}

.login-required-message {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #ff6b6b;
    text-align: center;
    display: none;
}

.login-required-message.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

.login-required-message a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.login-required-message a:hover {
    text-decoration: underline;
}

.free-monitoring-message {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-align: center;
    display: none;
    font-weight: 500;
}

.free-monitoring-message.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

.free-monitoring-message i {
    margin-right: 5px;
}

.free-monitoring-message span {
    font-weight: 700;
    text-transform: uppercase;
}

.info-button {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    margin-left: 5px;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.info-button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.info-button i {
    margin-right: 0;
}

.security-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.security-info i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Features Section */
.features {
    background-color: rgba(17, 17, 17, 0.6);
    padding: 30px;
    border-radius: 16px;
    margin: 40px 0;
    border: 1px solid rgba(103, 246, 186, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.features h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.features h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: rgba(9, 13, 11, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(103, 246, 186, 0.05);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(103, 246, 186, 0.2);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(103, 246, 186, 0.5));
}

.feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.important {
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 25px;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(103, 246, 186, 0.3);
}

/* Info Section */
.info {
    text-align: center;
    margin: 40px 0;
    background: rgba(17, 17, 17, 0.4);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(103, 246, 186, 0.1);
}

.anonymous {
    color: var(--error-color);
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(255, 48, 48, 0.1);
    border-radius: 20px;
}

.how-works {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-text {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 25px auto;
    padding: 12px 20px;
    background-color: rgba(2, 177, 104, 0.1);
    border: 1px solid rgba(103, 246, 186, 0.3);
    border-radius: 12px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(103, 246, 186, 0.1);
}

.security-badge i {
    color: var(--primary-color);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(103, 246, 186, 0.5));
}

.security-badge p {
    font-size: 0.85rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
}

.warning {
    color: var(--warning-color);
    font-size: 0.9rem;
    margin: 20px 0;
    font-weight: 500;
}

.stats {
    margin: 25px 0;
    background: rgba(9, 13, 11, 0.6);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(103, 246, 186, 0.1);
}

.counter {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(103, 246, 186, 0.5);
}

.update-info {
    background-color: rgba(9, 13, 11, 0.6);
    border-radius: 12px;
    padding: 12px;
    margin-top: 25px;
    border: 1px solid rgba(103, 246, 186, 0.1);
}

.update-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Loading Overlay */
.hidden {
    display: none;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    z-index: 1000;
    overflow-y: auto;
}

.loading-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Terminal Styles */
.terminal {
    margin: 25px auto;
    max-width: 100%;
    background-color: var(--terminal-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(103, 246, 186, 0.15);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    border: 1px solid rgba(103, 246, 186, 0.2);
}

.terminal-header {
    background-color: rgba(9, 13, 11, 0.9);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(103, 246, 186, 0.1);
}

.terminal-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.terminal-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #555;
    position: relative;
}

.terminal-control:first-child {
    background-color: #ff5f56;
}

.terminal-control:nth-child(2) {
    background-color: #ffbd2e;
}

.terminal-control:last-child {
    background-color: #27c93f;
}

.terminal-control::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.terminal-control:hover::before {
    opacity: 1;
}

.terminal-body {
    padding: 20px;
    min-height: 280px;
    max-height: 320px;
    overflow-y: auto;
    color: var(--terminal-text);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    position: relative;
    background-image: 
        linear-gradient(rgba(103, 246, 186, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(103, 246, 186, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: -1px -1px;
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: rgba(9, 13, 11, 0.8);
}

.terminal-body::-webkit-scrollbar-thumb {
    background: rgba(103, 246, 186, 0.3);
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(103, 246, 186, 0.5);
}

#terminal-content {
    white-space: pre-wrap;
}

.terminal-line {
    margin-bottom: 8px;
    animation: fadeIn 0.15s ease-in-out;
    position: relative;
    padding-left: 15px;
}

.terminal-line::before {
    content: '>';
    position: absolute;
    left: 0;
    color: rgba(103, 246, 186, 0.7);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 18px;
    background-color: var(--terminal-text);
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.error-text {
    color: var(--error-color);
}

.success-text {
    color: var(--success-color);
}

.warning-text {
    color: var(--warning-color);
}

.info-text {
    color: var(--info-color);
}

.phone-display {
    margin: 25px 0;
    background: rgba(9, 13, 11, 0.6);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(103, 246, 186, 0.2);
}

.phone-number {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(103, 246, 186, 0.4);
}

.progress-container {
    margin: 35px 0;
}

.progress-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 0%, transparent 0);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: none;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: var(--dark-bg);
    z-index: 1;
}

.progress-circle::after {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: transparent;
    border: none;
    z-index: 0;
}

.progress-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.progress-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.progress-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(103, 246, 186, 0.4);
}

.progress-bar {
    height: 10px;
    background-color: rgba(9, 13, 11, 0.6);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(103, 246, 186, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    width: 0%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(103, 246, 186, 0.4);
    transition: width 0.3s ease-out;
}

.wait-text {
    margin: 25px 0 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(103, 246, 186, 0.4);
    letter-spacing: 1px;
}

.spy-info {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1rem;
}

.results-preview {
    margin: 25px 0;
}

.result-box {
    background-color: rgba(9, 13, 11, 0.8);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    border: 1px solid rgba(103, 246, 186, 0.1);
    transition: all 0.3s ease;
}

.result-box:hover {
    border-color: rgba(103, 246, 186, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.result-box h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.result-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(103, 246, 186, 0.1);
    margin-top: 40px;
}

footer p {
    margin-bottom: 8px;
}

/* Animations and Effects */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(103, 246, 186, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(103, 246, 186, 0); }
    100% { box-shadow: 0 0 0 0 rgba(103, 246, 186, 0); }
}

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

/* Custom Cursor */
body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2367F6BA" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3l7 7m0 0V4m0 6h-6"></path></svg>') 0 0, auto;
}

a, button, .action-button, .feature, .result-box {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2367F6BA" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 5l7 7m0 0l-7 7m7-7H4"></path></svg>') 0 0, pointer;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .highlight {
        font-size: 1.5rem;
    }
    
    .terminal-body {
        min-height: 220px;
    }
}

/* Glowing Elements */
.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle at center, rgba(103, 246, 186, 0.2) 0%, rgba(7, 247, 147, 0) 70%);
    z-index: -1;
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::after {
    opacity: 1;
}

/* Estilos para as páginas de autenticação (Login e Cadastro) */
.auth-section {
    padding: 20px 0;
    margin-bottom: 40px;
}

.auth-container {
    background: rgba(17, 17, 17, 0.6);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(103, 246, 186, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.auth-title {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i:not(.toggle-password) {
    position: absolute;
    left: 15px;
    color: rgba(103, 246, 186, 0.6);
    font-size: 1rem;
    z-index: 1;
}

.input-with-icon input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid rgba(103, 246, 186, 0.3);
    border-radius: 12px;
    background-color: rgba(9, 13, 11, 0.8);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    padding-right: 45px;
}

.input-with-icon input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(103, 246, 186, 0.2);
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(103, 246, 186, 0.3);
    border-radius: 6px;
    background-color: rgba(9, 13, 11, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.form-check input[type="checkbox"]:checked::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    font-size: 12px;
}

.form-check input[type="checkbox"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(103, 246, 186, 0.2);
}

.form-check label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-primary {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-primary:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.forgot-link {
    font-size: 0.85rem;
}

.auth-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.login-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
}

.login-separator::before,
.login-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.login-separator span {
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn i {
    font-size: 1.1rem;
}

.social-btn.google {
    background-color: #ffffff;
    color: #333333;
}

.social-btn.facebook {
    background-color: #3b5998;
    color: #ffffff;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .auth-container {
        padding: 20px;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
    
    .auth-subtitle {
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .input-with-icon input {
        padding: 12px 12px 12px 40px;
        font-size: 0.9rem;
    }
    
    .input-with-icon i {
        left: 12px;
    }
    
    .toggle-password {
        right: 12px;
    }
    
    .form-check label {
        font-size: 0.8rem;
    }
    
    .forgot-link {
        font-size: 0.8rem;
    }
    
    .social-btn {
        padding: 12px;
        font-size: 0.85rem;
    }
}

/* Estilos para os links de autenticação no cabeçalho */
.auth-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.auth-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(103, 246, 186, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-link i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.auth-link:hover {
    background-color: rgba(17, 17, 17, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(103, 246, 186, 0.4);
}

.auth-link.primary {
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: #000;
    border: none;
}

.auth-link.primary i {
    color: #000;
}

.auth-link.primary:hover {
    opacity: 0.9;
}

@media (max-width: 480px) {
    .auth-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .auth-link {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 7px 12px;
    }
}

/* Estilos para notificações */
.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 350px;
    background-color: rgba(9, 13, 11, 0.9);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(103, 246, 186, 0.2);
    animation: slideIn 0.3s ease-out forwards;
}

.custom-notification.notification-hide {
    animation: slideOut 0.3s ease-in forwards;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notification-content i {
    font-size: 18px;
    margin-top: 2px;
}

.notification-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.custom-notification.success {
    border-color: var(--success-color);
}

.custom-notification.success i {
    color: var(--success-color);
}

.custom-notification.error {
    border-color: var(--error-color);
}

.custom-notification.error i {
    color: var(--error-color);
}

.custom-notification.warning {
    border-color: var(--warning-color);
}

.custom-notification.warning i {
    color: var(--warning-color);
}

.custom-notification.info {
    border-color: var(--info-color);
}

.custom-notification.info i {
    color: var(--info-color);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Estilos para a área do usuário logado */
.hidden {
    display: none !important;
}

.user-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.user-greeting {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(103, 246, 186, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.user-greeting i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

#logout-btn {
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 480px) {
    .user-area {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .user-greeting {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
    }
    
    #logout-btn {
        width: 100%;
    }
}

.whatsapp-screenshots {
    max-width: 400px;
    width: 100%;
    margin: 30px auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.whatsapp-screenshot-frame {
    position: relative;
    width: 100%;
    padding-bottom: 0;
    height: auto;
    min-height: 650px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
}

.phone-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(103, 246, 186, 0.4);
}

.screenshot-container {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 15px;
    overflow: hidden;
}

.screenshot-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;
    border-radius: 15px;
    background-color: #ffffff;
}

.screenshot-img.active {
    display: block;
    opacity: 1;
}

.screenshot-fallback {
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-color: #075e54; /* Cor do WhatsApp */
    color: white;
    text-align: center;
    border-radius: 15px;
}

.screenshot-fallback.active {
    display: flex;
    opacity: 1;
}

.fallback-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.fallback-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.fallback-content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.fallback-content small {
    font-size: 0.8rem;
    opacity: 0.7;
}

.screenshot-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 20;
    gap: 10px;
}

.screenshot-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.screenshot-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Estilos do novo carrossel */
.carousel-container {
    position: absolute;
    top: 1%;
    left: 2%;
    width: 96%;
    height: 96%;
    min-height: 700px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #ffffff;
    overflow: hidden;
    padding-top: 10px;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
    background-color: #ffffff;
    margin-top: -15px;
}

.carousel-controls {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 20;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-controls:hover {
    opacity: 1;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--primary-color);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 20;
    padding: 0 10px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-nav:hover {
    opacity: 1;
}

.carousel-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(9, 13, 11, 0.6);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.carousel-button:hover {
    background: rgba(9, 13, 11, 0.8);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(9, 13, 11, 0.3);
    padding: 5px 10px;
    border-radius: 15px;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 20;
    border: 1px solid rgba(103, 246, 186, 0.3);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-indicators:hover {
    opacity: 1;
}

/* Estilos para o fallback do carrossel */
.carousel-fallback {
    width: 100%;
    height: 100%;
    background-color: #075e54;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.carousel-fallback-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.carousel-fallback-content i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.carousel-fallback-content p {
    font-size: 1.2rem;
    font-weight: 500;
}

.carousel-fallback-content small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Estilos para o modal de pagamento */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.payment-modal.active {
    opacity: 1;
    visibility: visible;
}

.payment-modal-content {
    background-color: var(--dark-bg);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 30px rgba(103, 246, 186, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

.payment-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.payment-modal-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.payment-modal-subtitle {
    color: var(--text-color);
    font-size: 1rem;
    opacity: 0.8;
}

.payment-modal-price {
    text-align: center;
    margin: 30px 0;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(103, 246, 186, 0.4);
}

.price-period {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 5px;
}

.payment-benefits {
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.benefit-text {
    color: var(--text-color);
    font-size: 0.95rem;
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-btn.primary {
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(7, 247, 147, 0.3);
}

.payment-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(7, 247, 147, 0.4);
}

.payment-btn.secondary {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.payment-btn.secondary:hover {
    background: rgba(103, 246, 186, 0.1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

@media (max-width: 480px) {
    .payment-modal-content {
        padding: 20px;
    }
    
    .payment-modal-title {
        font-size: 1.5rem;
    }
    
    .price-tag {
        font-size: 2rem;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
}
