/* Estilos personalizados para reellusovault.com - Todos os comentários em português */

/* Variáveis CSS personalizadas */
:root {
    --turquoise: #40E0D0;
    --pink: #db2777;
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --dark-bg: #1a1a40;
    --darker-bg: #0f172a;
}

/* Estilos para cards de vidro */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

/* Botões neon */
.neon-button {
    background: linear-gradient(45deg, var(--pink), #ec4899);
    box-shadow: 0 0 10px var(--pink), 0 0 20px var(--pink);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.neon-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--pink), 0 0 30px var(--pink);
}

.neon-button:active {
    transform: scale(0.95);
}

/* Efeito de brilho para botões */
.neon-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: left 0.5s;
}

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

/* Animações de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-left {
    animation: slideInFromLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInFromRight 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Estilos para slider de avaliações */
.review-slider {
    position: relative;
    overflow: hidden;
}

.review-slide {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.review-slide.active {
    display: block;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

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

.slider-dot.active {
    background: var(--pink);
    transform: scale(1.2);
}

/* Estilos para FAQ */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--turquoise);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    padding: 0 20px 20px 20px;
}

/* Estilos para formulário */
.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 10px rgba(64, 224, 208, 0.3);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Estilos para checkbox personalizado */
.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--turquoise);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--turquoise);
    font-weight: bold;
}

/* Estilos para cards de casino */
.casino-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.casino-card:hover::before {
    transform: translateX(100%);
}

/* Estilos para badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.badge-primary {
    background: var(--pink);
    color: white;
}

.badge-secondary {
    background: var(--turquoise);
    color: var(--darker-bg);
}

.badge-success {
    background: #10b981;
    color: white;
}

/* Estilos para loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--turquoise);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Estilos para tooltips */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .glass-card {
        margin: 10px;
    }
    
    .neon-button {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 14px;
    }
    
    .form-input {
        padding: 10px 14px;
    }
}

/* Estilos para scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ec4899;
}

/* Estilos para seleção de texto */
::selection {
    background: var(--pink);
    color: white;
}

::-moz-selection {
    background: var(--pink);
    color: white;
} 

/* Mobile dropdown menu styles */
#mobile-dropdown-menu {
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#mobile-dropdown-menu nav a {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 2px 8px;
}

#mobile-dropdown-menu nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

#mobile-dropdown-menu nav a:hover::before {
    left: 100%;
}

#mobile-dropdown-menu nav a:hover {
    transform: translateX(5px);
}

/* Animação de entrada do dropdown */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes dropdownFadeOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
}

/* Melhorias para mobile */
@media (max-width: 640px) {
    #mobile-dropdown-menu {
        width: calc(100vw - 32px);
        max-width: 320px;
        right: 16px;
    }
}

/* Estilo para ícones no menu */
#mobile-dropdown-menu svg {
    flex-shrink: 0;
}

/* Separador visual */
#mobile-dropdown-menu .border-t {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Security Section Styles */
.security-card {
    position: relative;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.1) 0%, rgba(30, 58, 138, 0.1) 50%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.security-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.security-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.3);
}

.security-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
    animation: pulse 2s infinite;
}

.security-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #06b6d4;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.security-description {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.security-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.security-card:hover .security-glow {
    opacity: 1;
}

/* Trust Banners Modern Styles */
.trust-banner-modern {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.trust-banner-modern:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 12px 24px rgba(6, 182, 212, 0.2);
}

.trust-banner-content {
    position: relative;
    overflow: hidden;
}

.trust-banner-image {
    width: 100%;
    height: 80px;
    object-fit: contain;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.trust-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.9), rgba(59, 130, 246, 0.9));
    padding: 8px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.trust-banner-modern:hover .trust-banner-overlay {
    transform: translateY(0);
}

.trust-banner-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    display: block;
}

.trust-banner-modern:hover .trust-banner-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Security Section Background Animation */
@keyframes securityPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.security-icon-wrapper::before {
    animation: securityPulse 3s ease-in-out infinite;
}

/* Responsive adjustments for security section */
@media (max-width: 768px) {
    .security-card {
        padding: 1.5rem;
    }
    
    .security-icon {
        width: 60px;
        height: 60px;
    }
    
    .security-title {
        font-size: 1.25rem;
    }
    
    .trust-banner-image {
        height: 60px;
        padding: 8px;
    }
} 