
@import url('https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.green-glow {
    color: #00FF41;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

.bg-green-custom {
    background-color: #00FF41;
}

/* Container do Comparador de Vídeo */
.video-compare-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 20px;
    background: #111;
    cursor: pointer;
}


.video-before,
.video-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Faz o GIF preencher o espaço sem distorcer */
    user-select: none;
    pointer-events: none;
}

.video-compare-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    /* Evita que o clique no vídeo interfira no slider */
}

.video-compare-container.locked .slider-divider {
    background: #fff;
    /* Muda para branco quando travado, por exemplo */
    box-shadow: 0 0 20px #00FF41;
}

/* Camada "Depois" (Editado) que será cortada */
.video-after {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

/* Linha divisória e Handle */
.slider-divider {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #00FF41;
    cursor: ew-resize;
}

.slider-divider::after {
    content: '⇄';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #00FF41;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}
.hero-container {
    padding-top: 5vh;
    padding-bottom: 5vh;
}
/* Hero Text (Victor Rodrigues Style) */
.hero-title {
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.8;
    opacity: 0.1;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

/* Estilos da Seção Sobre/Habilidades */
.info-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
}

.tag-neon {
    background: #00FF41;
    color: black;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.progress-bg {
    background: #1a1a1a;
    height: 8px;
    border-radius: 4px;
    width: 100%;
    overflow: hidden;
}

.progress-fill {
    background: #00FF41;
    height: 100%;
    box-shadow: 0 0 10px #00FF41;
}

.tool-box {
    background: #111;
    border: 1px dashed #333;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.tool-box:hover {
    border-color: #00FF41;
    background: #00FF4110;
}


/* Estilo do Círculo de Hobby */
.hobby-circle {
    width: 80px;
    height: 80px;
    background-color: #00FF41;
    /* Verde Neon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 0 rgba(0, 255, 65, 0);
}

/* Efeito ao passar o mouse ou no toque */
.group:hover .hobby-circle {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 65, 0.3);
}

/* Texto embaixo do círculo */
.hobby-label {
    margin-top: 15px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    opacity: 0.8;
    transition: 0.3s;
}

.group:hover .hobby-label {
    color: #00FF41;
    opacity: 1;
}

/* Ajuste mobile */
@media (max-width: 768px) {
    .hobby-circle {
        width: 65px;
        height: 65px;
    }

    .hobby-circle svg {
        width: 24px;
        height: 24px;
    }

    .hobby-label {
        font-size: 12px;
    }
}

.text-portfolio {
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.8;
    /* Tamanho fluido: min 4rem, max 12rem */
    font-size: clamp(4.5rem, 15vw, 12rem);
    text-align: center;
    letter-spacing: -0.02em;
}
.est-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: var(--neon);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: rgba(0, 255, 65, 0.1);
    padding: 4px 10px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    margin-top: -10px; /* Gruda um pouco no nome acima */
    z-index: 50;
    position: relative;
}
@media (min-width: 1024px) {
    .est-tag {
        position: absolute;
        right: -60px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        margin-top: 0;
    }
}

/* --- ASSINATURA: ADRIEL LAURENTINO --- */
.signature-wrapper {
    position: relative;
    margin-top: 4rem; /* Espaço para não sufocar o titulo */
    z-index: 20;
    width: fit-content;
}

.signature-text {
    font-family: 'Mrs Saint Delafield', cursive;
    color: #fff;
    /* Tamanho imponente no mobile, gigante no desk */
    font-size: clamp(3.2rem, 10vw, 5vw);
    line-height: 1.1;
    white-space: nowrap; /* Não quebra o nome em duas linhas */
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* Linha da Assinatura */
.signature-line-container {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    pointer-events: none;
}

/* --- SETA DE SCROLL --- */
.scroll-indicator {
    margin-top: auto;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-circle {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

/* Forçar a imagem a preencher o fundo no mobile */
section.relative {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Fallback */
    min-height: -webkit-fill-available; /* Ajuste para iOS */
}

.hero-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    z-index: 20;
}

/* Garante que o container da imagem não suma */
.absolute.inset-0 {
    height: 100%;
    width: 100%;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Cards de Redes Sociais */
.social-link-card {
    background: linear-gradient(145deg, #0f0f0f, #050505);
    border: 1px solid #1a1a1a;
    transition: all 0.4s ease;
}

.social-link-card:hover {
    border-color: #00FF41;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.1);
}

/* Moldura do Print de Resultados */
.results-frame {
    position: relative;
    border-radius: 24px;
    padding: 10px;
    background: linear-gradient(180deg, #1a1a1a, #000);
    border: 1px solid #333;
}

.results-frame::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, transparent, #00FF41, transparent);
    z-index: -1;
    border-radius: 25px;
    opacity: 0.3;
}

.stat-badge {
    background: #00FF41;
    color: black;
    padding: 6px 16px;
    border-radius: 99px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    display: inline-block;
}

/* Corrigindo o problema das cores de fundo */
#portfolio {
    background-color: #09090b !important; /* Forçando Hexadecimal */
}

#about {
    background-color: #000000 !important;
}

#stats {
    background-color: #050505 !important;
}


/* Fontes Fluidas e Controladas */
.title-xl {
    font-size: clamp(2.2rem, 8vw, 4.5rem); /* Não deixa o texto "estourar" no mobile */
    line-height: 1.1;
}

.text-xs-wide {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Footer Background Text Control */
.footer-bg-text {
    font-size: clamp(5rem, 25vw, 12rem);
    line-height: 0.8;
    pointer-events: none;
    user-select: none;
}

/* Ajuste do botão flutuante para não cobrir conteúdo importante */
@media (max-width: 640px) {
    .floating-wpp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}