:root {
    --primary: #0046ad; /* Azul Moovitya */
    --accent: #ff8c00;  /* Naranja Moovitya */
    --bg-dark: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --success: #1cc88a;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Animated Glow */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 70, 173, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.main-container {
    max-width: 900px;
    margin: 5px auto;
    padding: 10px 20px;
}

.header {
    text-align: center;
    margin-bottom: 15px;
}

.logo-container img {
    max-width: 140px;
    filter: drop-shadow(0 0 20px rgba(0, 70, 173, 0.4));
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    background-image: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-top: 15px;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 5px;
}

.info-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

/* Copy Button */
.btn-copy {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 70, 173, 0.2);
    border: none;
    color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-copy:hover {
    background: var(--primary);
    color: white;
}

/* Unified Copy Button */
.btn-copy-all {
    width: 100%;
    padding: 12px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px dashed var(--accent);
    color: var(--accent);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-copy-all:hover {
    background: var(--accent);
    color: white;
    border-style: solid;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 8px;
    padding-left: 5px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
}

input, select {
    width: 100%;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 14px 15px 14px 45px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 70, 173, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--primary) 0%, #002d70 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 70, 173, 0.3);
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 70, 173, 0.4);
}

.btn-submit:active {
    transform: translateY(1px);
}

/* Success/Error Messages */
.alert {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.4s ease;
}

.alert-success {
    background: rgba(28, 200, 138, 0.15);
    border: 1px solid var(--success);
    color: #a8f0d5;
}

.alert-error {
    background: rgba(231, 74, 59, 0.15);
    border: 1px solid #e74a3b;
    color: #fca5a1;
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 600px) {
    .main-container {
        margin: 20px auto;
    }
    .page-title {
        font-size: 1.8rem;
    }
}
