/* Tema Especial - Dia Internacional da Mulher */
/* Estilo inspirado nos doodles do Google - Corporativo e Celebrativo */

/* Gradiente temático roxo */
.bg-gradient-primary.womens-day {
    background-color: #4b1b61 !important;
    background-image: linear-gradient(180deg, #6a2c91 10%, #2e0f3d 100%) !important;
}

@keyframes womensDayGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container principal com efeito decorativo */
.womens-day .container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(198, 108, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(132, 94, 194, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Card do login com estilo temático */
.womens-day .card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: visible;
}

/* .womens-day .card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b9d, #c66cfd, #845ec2, #4e8397, #00c9a7);
    border-radius: 0.5rem;
    z-index: -1;
} */

/* Logo com efeito hover e clique */
.womens-day .logo-argos {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.womens-day .logo-argos:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.womens-day .logo-argos:active {
    transform: scale(0.95) rotate(-5deg);
}

/* Elementos decorativos flutuantes */
.womens-day .floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.womens-day .floating-element {
    position: absolute;
    font-size: 20px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.womens-day .floating-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.womens-day .floating-element:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.womens-day .floating-element:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.womens-day .floating-element:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 3s; }
.womens-day .floating-element:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; }
.womens-day .floating-element:nth-child(6) { top: 60%; right: 5%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Botão de login temático */
.womens-day .btn-primary {
    background: linear-gradient(45deg, #ff6b9d, #c66cfd);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.womens-day .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.womens-day .btn-primary:hover::before {
    left: 100%;
}

.womens-day .btn-primary:hover {
    background: linear-gradient(45deg, #c66cfd, #845ec2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 108, 253, 0.4);
}

/* Campos de formulário temáticos */
.womens-day .form-control {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.womens-day .form-control:focus {
    border-color: #ff6b9d;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

/* Mensagem temática */
.womens-day .womens-day-message {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #845ec2;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Confetes para o easter egg */
.womens-day .confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #ff6b9d;
    position: absolute;
    animation: confetti-fall 3s linear;
    z-index: 9999;
}

.womens-day .confetti:nth-child(odd) {
    background: #c66cfd;
    width: 8px;
    height: 8px;
}

.womens-day .confetti:nth-child(even) {
    background: #00c9a7;
    width: 6px;
    height: 6px;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Mensagem especial do easter egg */
.womens-day .easter-egg-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ff6b9d, #c66cfd);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.womens-day .easter-egg-message.show {
    opacity: 1;
    pointer-events: auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .womens-day .floating-element {
        font-size: 16px;
    }
    
    .womens-day .logo-argos {
        width: 120px;
        height: 120px;
    }
    
    .womens-day .easter-egg-message {
        font-size: 16px;
        padding: 15px 30px;
        margin: 0 20px;
    }
}
