/* 
  ==============================================================
  CITYCELL BRAND IDENTITY (PREMIUM 2026)
  ==============================================================
  Centralizes brand assets and core identity components.
*/

.brand-logo-main {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

/* Specific Identity Badge */
.identity-badge-pro {
    background: #0f172a;
    color: var(--warning);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 
  ==============================================================
  ELITE FORM CONTROLS (Global)
  ==============================================================
*/

.elite-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.elite-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #475569;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
}

.elite-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.2rem;
    pointer-events: none;
    transition: color 0.2s;
    z-index: 2;
}

.elite-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 700;
    outline: none;
    transition: all 0.2s ease-in-out;
    position: relative;
    z-index: 1;
}

.elite-input:focus {
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* We can handle icon focus color with :focus-within on parent */
.elite-form-group>div:focus-within .elite-input-icon {
    color: #3b82f6;
}

/* Error states */
.elite-input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

/* 
  ==============================================================
  IFRAME FULL
  ==============================================================
*/
.iframe-full {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ========================================= */
/* SETTINGS HEADER & BUTTONS                 */
/* ========================================= */

.flex-align-center-gap-15 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.currency-toggle-wrapper {

    display: inline-flex;
    background: #e2e8f0;
    padding: 6px;
    border-radius: 20px;
}

.currency-toggle-btn {
    border: none;
    background: transparent;
    padding: 8px 18px;
    border-radius: 14px;
    font-weight: 850;
    color: #64748b;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.currency-toggle-btn.active {
    background: white;
    color: #0f172a;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-success {
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

/* ========================================= */
/* MANUAL DE USUARIO                         */
/* ========================================= */
.help-center-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    min-height: 500px;
}

.help-sidebar {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-right: 1px solid #e2e8f0;
    padding-right: 20px;
}

.help-nav-item {
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    padding: 14px 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.help-nav-item:hover {
    background: #f1f5f9;
    color: #334155;
}

.help-nav-item.active {
    background: #eff6ff;
    color: #2563eb;
    box-shadow: inset 3px 0 0 #2563eb;
}

.help-content-display {
    padding-left: 10px;
}

.manual-chapter {
    display: none;
    animation: fadeIn 0.3s ease;
}

.manual-chapter.active {
    display: block;
}

.manual-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: -0.5px;
}

.manual-intro {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
}

.manual-topic {
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.manual-topic h3 {
    font-size: 1.25rem;
    font-weight: 850;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 15px;
}

.manual-list {
    padding-left: 20px;
    color: #334155;
    line-height: 1.6;
}

.manual-list li {
    margin-bottom: 15px;
}

.manual-alert-magical {
    background: #e0e7ff;
    color: #3730a3;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.manual-alert-important {
    background: #fef2f2;
    color: #991b1b;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.manual-skeleton-placeholder {
    margin-top: 20px;
    background: #e2e8f0;
    height: 120px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 700;
    gap: 10px;
    border: 2px dashed #cbd5e1;
}

/* ========================================= */
/* ACERCA DE                                 */
/* ========================================= */
.about-section-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}

.about-logo {
    height: 90px;
    width: auto;
    margin-bottom: 25px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.about-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 5px;
}

.about-version-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 40px;
    background: #f1f5f9;
    padding: 6px 16px;
    border-radius: 20px;
}

.about-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.about-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-credits-box {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.about-developed-by {
    font-size: 0.8rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.about-author {
    font-size: 1.2rem;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 15px;
}

.about-copyright {
    font-size: 0.85rem;
    color: #64748b;
}

.about-features-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.about-feature-item {
    flex: 1;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

.about-feature-item:hover {
    transform: translateY(-5px);
}

.about-feature-icon {
    font-size: 2rem;
    color: #6366f1;
}

.about-feature-text {
    font-size: 0.9rem;
    font-weight: 800;
    color: #334155;
    margin: 0;
}

/* ========================================= */
/* IMAGE LIGHTBOX PREMIUM                    */
/* ========================================= */
.lightbox-close-elite {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0f172a;
    color: white;
    border: 3px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-close-elite:hover {
    transform: scale(1.1) rotate(90deg);
    background: #ef4444;
}

.lightbox-watermark {
    position: absolute;
    bottom: 25px;
    right: 25px;
    pointer-events: none;
    opacity: 1;
    z-index: 10;
    width: 140px;
    transition: all 0.5s ease;
}

.lightbox-watermark img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}