:root {
    --primary: #0B69FF;
    --primary-dark: #0056cc;
    --secondary: #00B8D9;
    --dark: #1E293B;
    --success: #22C55E;
    --danger: #EF4444;
    --warning: #F59E0B;
    --bg: #F8FAFC;
    --text: #334155;
    --muted: #64748b;
    --border: #E2E8F0;
}

* { box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.honne-header {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
}

.brand-divider {
    width: 2px;
    height: 24px;
    background: var(--border);
    margin: 0 12px;
}

.brand-text {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
}

.info-banner {
    background: white;
    border-left: 4px solid var(--primary);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.reclamo-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.form-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type { border-bottom: none; }

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.req { color: var(--danger); }

.form-control, .form-select {
    border: 1.5px solid var(--border);
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 105, 255, 0.15);
}

.tutor-fields {
    background: #FEF3C7;
    border: 1px solid #FCD34D;
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.declaration-section {
    background: #F1F5F9;
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.btn-honne {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(11, 105, 255, 0.3);
}

.btn-honne:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 105, 255, 0.4);
    color: white;
}

.btn-honne:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.success-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-top: 5px solid var(--success);
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.codigo-box {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border: 2px dashed var(--primary);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem auto;
    max-width: 400px;
}

.codigo-label {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 2px;
    font-weight: 600;
}

.codigo-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.honne-footer {
    background: var(--dark);
    color: #cbd5e1;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-brand {
    color: white;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover { color: white; }

@media (max-width: 768px) {
    .hero { padding: 2.5rem 0 3rem; }
    .hero-title { font-size: 2rem; }
    .reclamo-form { padding: 1.25rem; }
    .brand-divider { display: none; }
    .brand-text { display: none; }
}