/* 
* SpyGram 3.0 - Estilos Principais
* Desenvolvido por Wolf - 01 sempre - sem chance.
* Data: 11/06/2025
*/

/* Importação da fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Variáveis globais */
:root {
    /* Cores principais */
    --primary-color: #833ab4;
    --secondary-color: #fd1d1d;
    --tertiary-color: #fcb045;
    --dark-bg: #000000;
    --light-text: #ffffff;
    --input-bg: #1a1a1a;
    --button-gradient: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
    
    /* Fontes */
    --main-font: 'Poppins', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Bordas */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
}

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

body {
    font-family: var(--main-font);
    background-color: var(--dark-bg);
    color: var(--light-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

/* Container principal */
.spygram-container {
    /*margin-top: -15vh;*/
    width: 100%;
    max-width: 400px;
    /*min-height: 99vh;*/
    /*height: 100vh;*/
    /*max-height: 100vh;*/
    padding: var(--spacing-md);
    display: flex;
    text-align: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: center;
    align-items: stretch;
    overflow: auto;
}

.glass-effect {
    background: #ffffff0d;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
}

/* Logo */
.spygram-logo {
    width: 100px;
    height: 100px;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.spygram-logo img {
    width: 100%;
    height: auto;
}

/* Título e subtítulo */
.spygram-title {
    font-size: 1.2rem;
    font-weight: 500;
}

p {
    margin-bottom: 0 !important;
}

a {
    color: var(--light-text);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
}

/* Formulário */
.spygram-form {
    display: flex;
    flex-direction: column;
    margin-top: var(--spacing-lg);
}

/* Input de usuário */
.spygram-input {
    background-color: var(--input-bg);
    border: none;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    color: var(--light-text);
    font-family: var(--main-font);
    font-size: 1rem;
}

.spygram-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Opções de checkbox */
.spygram-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: left;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.spygram-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.spygram-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Botão de acesso */
.spygram-button {
    background: var(--button-gradient);
    border: none;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    color: var(--light-text);
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.spygram-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.spygram-button i {
    font-size: 1.2rem;
}

.spygram-privacy {
    font-size: 0.8rem;
    text-align: center;
    color: var(--light-text);
    /*position: fixed;*/
    /*bottom: 10px;*/
    /*left: 0; */
    /*right: 0;*/
    width: 100%;
    padding: 0 var(--spacing-md);
    z-index: 100;
}

/* Transições e animações */
.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.fade-in {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

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

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Tela de processamento */
.progress-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: var(--spacing-lg) 0;
}

.progress-bar {
    height: 10px;
    background: var(--button-gradient);
    border-radius: var(--border-radius-sm);
    transition: width 0.3s ease;
    position: relative;
}

.progress-bar-bg {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
}

.progress-percentage {
    color: var(--light-text);
    font-weight: 600;
}

.log-container {
    background-color: var(--input-bg);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    margin-top: var(--spacing-lg);
    text-align: left;
    max-height: 200px;
    overflow-y: auto;
    font-family: monospace;
    font-size: 0.9rem;
}

.log-item {
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: flex-start;
}

.log-item::before {
    content: '•';
    color: #4CAF50;
    margin-right: var(--spacing-sm);
    font-weight: bold;
}

.log-item.error::before {
    color: #F44336;
}

.log-item.warning::before {
    color: #FFC107;
}

/* Font Size */
.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.vsl-video-container {
    background: var(--button-gradient);
    border-radius: var(--border-radius-md);
}

/* Componente de perfil com radar */
.profile-radar-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-radar-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image-container {
    position: relative;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 15px 5px rgb(142 142 142 / 22%);
    background: #7e4040;
    padding: 2px;
}

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

.profile-status {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--danger-color);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
    font-weight: bold;
}

/* Animação de radar/sonar */
.radar-animation {
    position: absolute;
    width: 150%;
    height: 150%;
    border-radius: 50%;
}

.radar-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgb(254 57 57 / 40%);
    animation: radar-pulse 3s infinite;
}

.circle-1 {
    animation-delay: 0s;
}

.circle-2 {
    animation-delay: 1s;
}

.circle-3 {
    animation-delay: 2s;
}

.radar-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,0,0,0.8) 0%, rgba(255,0,0,0) 100%);
    transform-origin: left center;
    animation: radar-sweep 3s infinite linear;
}

@keyframes radar-pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes radar-sweep {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsividade */
@media (max-width: 747px) {
    .spygram-container {
        padding: var(--spacing-lg);
    }
    .desk {
        display: none !important;
    }
}

@media (min-width: 748px) {
    .mob {
        display: none !important;
    }
}


