/* Raphael Guerra - Main Styles */

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a192f; /* A dark, professional navy blue */
    color: #e6f1ff;
}

.gradient-text {
    background: -webkit-linear-gradient(45deg, #66ff99, #00cc66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-effect {
    background: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 204, 102, 0.2);
}

.glow-effect {
    box-shadow: 0 0 15px rgba(0, 204, 102, 0.4), 0 0 5px rgba(102, 255, 153, 0.6);
}

.gradient-border {
    border-radius: 0.75rem;
    padding: 2px;
    background: linear-gradient(45deg, rgba(0, 204, 102, 0.3), rgba(102, 255, 153, 0.3));
    transition: all 0.3s ease;
}

.gradient-border > div {
    background-color: #0a192f;
    border-radius: 0.6rem;
    padding: 2rem;
}

.gradient-border:hover {
    background: linear-gradient(45deg, rgba(0, 204, 102, 0.6), rgba(102, 255, 153, 0.6));
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    min-width: 8rem;
    background: rgba(10, 25, 47, 0.95);
    border: 1px solid rgba(0, 204, 102, 0.3);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    color: #e6f1ff;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.language-option:hover {
    background: rgba(0, 204, 102, 0.1);
    color: #66ff99;
}

.language-option.active {
    background: rgba(0, 204, 102, 0.2);
    color: #66ff99;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: auto;
    }
    
    .language-dropdown {
        right: 0;
        min-width: 7rem;
    }
} 