﻿.welcome-wrapper {
    background-color: var(--bg-deep);
    min-height: 100vh;
    width: 100%;
    padding-top: 100px; /* Evita sobreposição com a navbar flutuante */
    padding-bottom: 40px;
    transition: background-color 0.3s ease;
}

/* Ícone de Herói com Animação Néon Semelhante à Maquete */
.welcome-hero-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    border-radius: 24px;
    color: #22c55e;
    font-size: 36px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #22c55e;
    border-radius: 24px;
    animation: ringPulse 2s infinite ease-out;
    opacity: 0;
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Tipografia */
.welcome-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.accent-text {
    color: #22c55e;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.15);
}

.welcome-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Cartões de Ação Dinâmicos (Glassmorphism Adaptativo) */
.welcome-action-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

    .welcome-action-card:hover {
        transform: translateY(-6px);
        border-color: #22c55e !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

body[data-vago-theme="day"] .welcome-action-card:hover {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* Ícones Circulares Internos dos Cartões */
.action-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.map-icon-bg {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.panels-icon-bg {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.action-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.action-card-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Ajustes Responsivos */
@media (max-width: 576px) {
    .welcome-title {
        font-size: 2.1rem;
    }

    .welcome-subtitle {
        font-size: 0.95rem;
    }

    .welcome-wrapper {
        padding-top: 120px;
    }
}
