@charset "utf-8";
/* CSS Document */

/* ===========================
           ESTILOS BASE (Sincronizados)
           =========================== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Quicksand', sans-serif;
            background-color: #EED638; /* Amarillo Hatties */
            color: #2e2e2e;
            min-height: 100vh;
        }

        /* TOP BAR */
        .topbar {
            background-color: #2e2e2e;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 28px;
            position: sticky;
            top: 0; z-index: 100;
        }
        .topbar-logo { color: #EED638; font-weight: 700; font-size: 1.4rem; }
        .logout-btn {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 6px 16px;
            font-weight: 700;
        }

        /* LAYOUT */
        .layout { display: flex; min-height: calc(100vh - 54px); }

        /* SIDEBAR */
        .sidebar {
            width: 180px;
            background-color: #2e2e2e;
            display: flex; flex-direction: column;
            padding: 24px 0; gap: 4px;
            flex-shrink: 0;
        }
        .nav-item {
            color: rgba(255, 255, 255, 0.6);
            padding: 12px 20px;
            text-decoration: none;
            font-weight: 700; font-size: 0.9rem;
            border-left: 3px solid transparent;
        }
        .nav-item.activo {
            color: #EED638;
            border-left-color: #EED638;
            background-color: rgba(238, 214, 56, 0.08);
        }

        /* CONTENIDO PRINCIPAL */
        .contenido { 
            flex: 1; 
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            align-items: center; /* Centramos el contenido de ayuda */
            text-align: center;
        }

        .help-container {
            max-width: 600px;
            width: 100%;
        }

        .help-titulo {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 40px;
            color: #2e2e2e;
        }

        /* BLOQUES DE AYUDA */
        .help-section {
            background-color: #2e2e2e;
            color: white;
            padding: 40px;
            border-radius: 24px;
            margin-bottom: 30px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .help-sub {
            font-size: 1.4rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .contact-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }

        .contact-item {
            color: #EED638;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 700;
            transition: opacity 0.2s;
        }

        .contact-item:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        /* BOTÓN FORMULARIO */
        .form-btn {
            display: inline-block;
            background-color: #EED638;
            color: #2e2e2e;
            padding: 15px 30px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 20px;
            transition: transform 0.2s, background-color 0.2s;
        }

        .form-btn:hover {
            transform: scale(1.05);
            background-color: #f7e04f;
        }

        .icon-large {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }

        @media (max-width: 700px) {
            .sidebar { width: 80px; }
            .nav-item span { display: none; }
            .help-titulo { font-size: 2rem; }
        }